feat(i18n): add Czech (cs) language translation to AnythingLLM (#4874)

Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
This commit is contained in:
Vladimir Vlach 2026-01-18 22:48:38 +01:00 committed by GitHub
parent f616fc9185
commit b0672036f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1089 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -36,6 +36,7 @@ import Japanese from "./ja/common.js";
import Lativian from "./lv/common.js";
import Polish from "./pl/common.js";
import Romanian from "./ro/common.js";
import Czech from "./cs/common.js";
export const defaultNS = "common";
export const resources = {
@ -105,4 +106,7 @@ export const resources = {
ro: {
common: Romanian,
},
cs: {
common: Czech,
},
};