From c5d8665593210db1093fb288c8acfa31d417df9d Mon Sep 17 00:00:00 2001 From: Sude Date: Fri, 2 Aug 2013 16:03:06 +0300 Subject: [PATCH] Added support for Portuguese and Korean installers --- include/globalconstants.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/globalconstants.h b/include/globalconstants.h index 42b5f97..198a342 100644 --- a/include/globalconstants.h +++ b/include/globalconstants.h @@ -32,6 +32,8 @@ namespace GlobalConstants const unsigned int LANGUAGE_IT = 512; const unsigned int LANGUAGE_JP = 1024; const unsigned int LANGUAGE_TR = 2048; + const unsigned int LANGUAGE_PT = 4096; + const unsigned int LANGUAGE_KO = 8192; struct languageStruct {const unsigned int languageId; const std::string languageCode; const std::string languageString;}; const std::vector LANGUAGES = @@ -47,7 +49,9 @@ namespace GlobalConstants { LANGUAGE_HU, "hu", "Hungarian" }, { LANGUAGE_IT, "it", "Italian" }, { LANGUAGE_JP, "jp", "Japanese" }, - { LANGUAGE_TR, "tr", "Turkish" } + { LANGUAGE_TR, "tr", "Turkish" }, + { LANGUAGE_PT, "pt", "Portuguese"}, + { LANGUAGE_KO, "ko", "Korean" } }; // Platform constants