aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp1
-rw-r--r--common/util.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp
index f53ba300d5..115ce31659 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -142,6 +142,7 @@ const LanguageDescription g_languages[] = {
{"se", "Swedish", SE_SWE},
{"hb", "Hebrew", HB_HEB},
{"ru", "Russian", RU_RUS},
+ {"cz", "Czech", CZ_CZE},
{0, 0, UNK_LANG}
};
diff --git a/common/util.h b/common/util.h
index d1a15a3b5a..0d02b9e5f0 100644
--- a/common/util.h
+++ b/common/util.h
@@ -108,7 +108,8 @@ enum Language {
SE_SWE = 9,
EN_GRB = 10,
HB_HEB = 20,
- RU_RUS = 21
+ RU_RUS = 21,
+ CZ_CZE = 22
};
struct LanguageDescription {