feat(translation): add Czech translation (#6725)

This commit is contained in:
Ján Regeš 2025-03-10 08:11:55 +01:00 committed by GitHub
parent a953013f70
commit 099c5d50ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2203 additions and 1 deletions

View file

@ -151,6 +151,8 @@ export class TranslationStore {
return import("../locales/ru/translations.json");
case "it":
return import("../locales/it/translations.json");
case "cs":
return import("../locales/cs/translations.json");
default:
throw new Error(`Unsupported language: ${language}`);
}