From cd5b79b3c9b707f63cac764bcec74a608c35bb29 Mon Sep 17 00:00:00 2001 From: Sude Date: Mon, 15 Jun 2015 04:26:51 +0300 Subject: [PATCH] Add support for Brazilian Portuguese --- include/globalconstants.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/globalconstants.h b/include/globalconstants.h index 4f22f09..3fbeaa6 100644 --- a/include/globalconstants.h +++ b/include/globalconstants.h @@ -32,6 +32,7 @@ namespace GlobalConstants const unsigned int LANGUAGE_NO = 1 << 16; const unsigned int LANGUAGE_DA = 1 << 17; 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;}; const std::vector LANGUAGES = @@ -54,7 +55,8 @@ namespace GlobalConstants { LANGUAGE_SV, "sv", "Swedish" }, { LANGUAGE_NO, "no", "Norwegian" }, { LANGUAGE_DA, "da", "Danish" }, - { LANGUAGE_FI, "fi", "Finnish" } + { LANGUAGE_FI, "fi", "Finnish" }, + { LANGUAGE_PT_BR, "pt_br", "Brazilian Portuguese" } }; // Platform constants