COMMON: Added Ukrainian language

Common::UA_UKR is needed for FoxTail game at WinterMute engine
This commit is contained in:
lolbot-iichan 2018-08-03 00:16:05 +03:00 committed by Eugene Sandulenko
parent e9fde87cf2
commit d91307e401
2 changed files with 2 additions and 0 deletions

View File

@ -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 }
};

View File

@ -58,6 +58,7 @@ enum Language {
RU_RUS,
ES_ESP,
SE_SWE,
UA_UKR,
UNK_LANG = -1 // Use default language (i.e. none specified)
};