diff options
author | lolbot-iichan | 2018-08-03 00:16:05 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-08-03 00:43:33 +0200 |
commit | d91307e40198bc883b0e03be9420bdab503f1c9e (patch) | |
tree | dfca8f85f14fef43bffddee58e7692574f7e7c2f | |
parent | e9fde87cf225380cbd459c7e28c9f24b28f3cf33 (diff) | |
download | scummvm-rg350-d91307e40198bc883b0e03be9420bdab503f1c9e.tar.gz scummvm-rg350-d91307e40198bc883b0e03be9420bdab503f1c9e.tar.bz2 scummvm-rg350-d91307e40198bc883b0e03be9420bdab503f1c9e.zip |
COMMON: Added Ukrainian language
Common::UA_UKR is needed for FoxTail game at WinterMute engine
-rw-r--r-- | common/language.cpp | 1 | ||||
-rw-r--r-- | common/language.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/language.cpp b/common/language.cpp index 207de000cd..211218241d 100644 --- a/common/language.cpp +++ b/common/language.cpp @@ -53,6 +53,7 @@ const LanguageDescription g_languages[] = { { "ru", "ru_RU", "Russian", RU_RUS }, { "es", "es_ES", "Spanish", ES_ESP }, { "se", "sv_SE", "Swedish", SE_SWE }, + { "uk", "uk_UA", "Ukrainian", UA_UKR }, { nullptr, nullptr, nullptr, UNK_LANG } }; diff --git a/common/language.h b/common/language.h index b128d91200..752914b8ac 100644 --- a/common/language.h +++ b/common/language.h @@ -58,6 +58,7 @@ enum Language { RU_RUS, ES_ESP, SE_SWE, + UA_UKR, UNK_LANG = -1 // Use default language (i.e. none specified) }; |