mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2025-02-02 05:52:31 +01:00
Added support for Portuguese and Korean installers
This commit is contained in:
parent
f992816465
commit
c5d8665593
@ -32,6 +32,8 @@ namespace GlobalConstants
|
|||||||
const unsigned int LANGUAGE_IT = 512;
|
const unsigned int LANGUAGE_IT = 512;
|
||||||
const unsigned int LANGUAGE_JP = 1024;
|
const unsigned int LANGUAGE_JP = 1024;
|
||||||
const unsigned int LANGUAGE_TR = 2048;
|
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;};
|
struct languageStruct {const unsigned int languageId; const std::string languageCode; const std::string languageString;};
|
||||||
const std::vector<languageStruct> LANGUAGES =
|
const std::vector<languageStruct> LANGUAGES =
|
||||||
@ -47,7 +49,9 @@ namespace GlobalConstants
|
|||||||
{ LANGUAGE_HU, "hu", "Hungarian" },
|
{ LANGUAGE_HU, "hu", "Hungarian" },
|
||||||
{ LANGUAGE_IT, "it", "Italian" },
|
{ LANGUAGE_IT, "it", "Italian" },
|
||||||
{ LANGUAGE_JP, "jp", "Japanese" },
|
{ LANGUAGE_JP, "jp", "Japanese" },
|
||||||
{ LANGUAGE_TR, "tr", "Turkish" }
|
{ LANGUAGE_TR, "tr", "Turkish" },
|
||||||
|
{ LANGUAGE_PT, "pt", "Portuguese"},
|
||||||
|
{ LANGUAGE_KO, "ko", "Korean" }
|
||||||
};
|
};
|
||||||
|
|
||||||
// Platform constants
|
// Platform constants
|
||||||
|
Loading…
x
Reference in New Issue
Block a user