[Scummvm-git-logs] scummvm master -> d91307e40198bc883b0e03be9420bdab503f1c9e
sev-
sev at scummvm.org
Fri Aug 3 00:43:37 CEST 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
d91307e401 COMMON: Added Ukrainian language
Commit: d91307e40198bc883b0e03be9420bdab503f1c9e
https://github.com/scummvm/scummvm/commit/d91307e40198bc883b0e03be9420bdab503f1c9e
Author: lolbot-iichan (lolbot_iichan at mail.ru)
Date: 2018-08-03T00:43:33+02:00
Commit Message:
COMMON: Added Ukrainian language
Common::UA_UKR is needed for FoxTail game at WinterMute engine
Changed paths:
common/language.cpp
common/language.h
diff --git a/common/language.cpp b/common/language.cpp
index 207de00..2112182 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 b128d91..752914b 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)
};
More information about the Scummvm-git-logs
mailing list