feat: Czech, Slovak localization (#3095)

* feat: add l10n Czech, Slovak language support

* feat: i18n Czech, Slovak translation
This commit is contained in:
Ondřej Šibrava
2024-08-02 03:39:47 +02:00
committed by GitHub
parent df2a5681cc
commit 4b2b875b2d
8 changed files with 2772 additions and 2 deletions

View File

@ -45,6 +45,8 @@ func TestGenerateI18nFrontend(t *testing.T) {
applyToOtherLanguage("frontend", "uk", data)
applyToOtherLanguage("frontend", "kk", data)
applyToOtherLanguage("frontend", "fa", data)
applyToOtherLanguage("frontend", "cs", data)
applyToOtherLanguage("frontend", "sk", data)
}
func TestGenerateI18nBackend(t *testing.T) {
@ -73,4 +75,6 @@ func TestGenerateI18nBackend(t *testing.T) {
applyToOtherLanguage("backend", "uk", data)
applyToOtherLanguage("backend", "kk", data)
applyToOtherLanguage("backend", "fa", data)
applyToOtherLanguage("backend", "cs", data)
applyToOtherLanguage("backend", "sk", data)
}