polish translation

This commit is contained in:
Luc
2014-02-08 15:27:57 +01:00
parent f586ba0348
commit 4b73ea698b
+7
View File
@@ -247,6 +247,8 @@ namespace boss {
Construct(g_lang_french);
else if (nameOrISOCode == "简体中文" || nameOrISOCode == "zho")
Construct(g_lang_chinese);
else if (nameOrISOCode == "Polski" || nameOrISOCode == "pl")
Construct(g_lang_polish);
else
Construct(g_lang_any);
}
@@ -283,6 +285,11 @@ namespace boss {
_isoCode = "zho";
_locale = "zh.UTF-8";
}
else if (_code == g_lang_polish) {
_name = "Polski";
_isoCode = "pl";
_locale = "pl.UTF-8";
}
}
unsigned int Language::Code() const {