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 4196bd929b..03c9865859 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -125,6 +125,7 @@ const LanguageDescription g_languages[] = {
{"cz", "Czech", CZ_CZE},
{"nl", "Dutch", NL_NLD},
{"nb", "Norwegian Bokm\xE5l", NB_NOR},
+ {"pl", "Polish", PL_POL},
{0, 0, UNK_LANG}
};
diff --git a/common/util.h b/common/util.h
index dca373ad66..762811a4eb 100644
--- a/common/util.h
+++ b/common/util.h
@@ -106,7 +106,8 @@ enum Language {
RU_RUS = 21,
CZ_CZE = 22,
NL_NLD = 23,
- NB_NOR = 24
+ NB_NOR = 24,
+ PL_POL = 25
};
struct LanguageDescription {