Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/i18n/src/constants/language.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export const SUPPORTED_LANGUAGES: ILanguageOption[] = [
{ label: "Русский", value: "ru" },
{ label: "Italian", value: "it" },
{ label: "Čeština", value: "cs" },
{ label: "Slovenčina", value: "sk" },
{ label: "Deutsch", value: "de" },
{ label: "Українська", value: "ua" },
{ label: "Polski", value: "pl" },
{ label: "한국어", value: "ko" },
];

Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/src/locales/cs/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"home": "Domov",
"your_work": "Vaše práce",
"inbox": "Doručená pošta",
"workspace": "workspace",
"workspace": "Pracovní prostor",
"views": "Pohledy",
"analytics": "Analytika",
"work_items": "Pracovní položky",
Expand Down
2,324 changes: 2,324 additions & 0 deletions packages/i18n/src/locales/de/translations.json

Large diffs are not rendered by default.

2,324 changes: 2,324 additions & 0 deletions packages/i18n/src/locales/pl/translations.json

Large diffs are not rendered by default.

2,368 changes: 2,368 additions & 0 deletions packages/i18n/src/locales/sk/translations.json

Large diffs are not rendered by default.

2,324 changes: 2,324 additions & 0 deletions packages/i18n/src/locales/ua/translations.json

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions packages/i18n/src/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,14 @@ export class TranslationStore {
return import("../locales/it/translations.json");
case "cs":
return import("../locales/cs/translations.json");
case "sk":
return import("../locales/sk/translations.json");
case "de":
return import("../locales/de/translations.json");
case "ua":
return import("../locales/ua/translations.json");
case "pl":
return import("../locales/pl/translations.json");
case "ko":
return import("../locales/ko/translations.json");
default:
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/src/types/language.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type TLanguage = "en" | "fr" | "es" | "ja" | "zh-CN" | "ru" | "it" | "cs" | "ko";
export type TLanguage = "en" | "fr" | "es" | "ja" | "zh-CN" | "ru" | "it" | "cs" | "sk" | "de" | "ua" | "pl" | "ko";

export interface ILanguageOption {
label: string;
Expand Down