mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2025-02-02 05:52:31 +01:00
Add support for Brazilian Portuguese
This commit is contained in:
parent
6d1c05294d
commit
cd5b79b3c9
@ -32,6 +32,7 @@ namespace GlobalConstants
|
|||||||
const unsigned int LANGUAGE_NO = 1 << 16;
|
const unsigned int LANGUAGE_NO = 1 << 16;
|
||||||
const unsigned int LANGUAGE_DA = 1 << 17;
|
const unsigned int LANGUAGE_DA = 1 << 17;
|
||||||
const unsigned int LANGUAGE_FI = 1 << 18;
|
const unsigned int LANGUAGE_FI = 1 << 18;
|
||||||
|
const unsigned int LANGUAGE_PT_BR = 1 << 19;
|
||||||
|
|
||||||
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 =
|
||||||
@ -54,7 +55,8 @@ namespace GlobalConstants
|
|||||||
{ LANGUAGE_SV, "sv", "Swedish" },
|
{ LANGUAGE_SV, "sv", "Swedish" },
|
||||||
{ LANGUAGE_NO, "no", "Norwegian" },
|
{ LANGUAGE_NO, "no", "Norwegian" },
|
||||||
{ LANGUAGE_DA, "da", "Danish" },
|
{ LANGUAGE_DA, "da", "Danish" },
|
||||||
{ LANGUAGE_FI, "fi", "Finnish" }
|
{ LANGUAGE_FI, "fi", "Finnish" },
|
||||||
|
{ LANGUAGE_PT_BR, "pt_br", "Brazilian Portuguese" }
|
||||||
};
|
};
|
||||||
|
|
||||||
// Platform constants
|
// Platform constants
|
||||||
|
Loading…
x
Reference in New Issue
Block a user