mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Added support for the en_GB locale
This commit is contained in:
parent
7ef8f6cc28
commit
0b5b0e0572
|
@ -486,7 +486,10 @@ void GuiMenu::openUIOptions()
|
|||
Settings::getInstance()->getString("ApplicationLanguage")};
|
||||
applicationLanguage->add(_("AUTOMATIC"), "automatic",
|
||||
selectedApplicationLanguage == "automatic");
|
||||
applicationLanguage->add("ENGLISH (AMERICAN)", "en_US", selectedApplicationLanguage == "en_US");
|
||||
applicationLanguage->add("ENGLISH (UNITED STATES)", "en_US",
|
||||
selectedApplicationLanguage == "en_US");
|
||||
applicationLanguage->add("ENGLISH (UNITED KINGDOM)", "en_GB",
|
||||
selectedApplicationLanguage == "en_GB");
|
||||
applicationLanguage->add("SVENSKA", "sv_SE", selectedApplicationLanguage == "sv_SE");
|
||||
applicationLanguage->add("简体中文", "zh_CN", selectedApplicationLanguage == "zh_CN");
|
||||
// If there are no objects returned, then there must be a manually modified entry in the
|
||||
|
|
|
@ -29,6 +29,7 @@ namespace Utils
|
|||
{
|
||||
// clang-format off
|
||||
const std::vector<std::pair<std::string, std::string>> sSupportedLocales {{{"en"}, {"US"}},
|
||||
{{"en"}, {"GB"}},
|
||||
{{"sv"}, {"SE"}},
|
||||
{{"zh"}, {"CN"}}};
|
||||
// clang-format on
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
en_US
|
||||
en_GB
|
||||
sv_SE
|
||||
zh_CN
|
||||
|
|
2671
locale/po/en_GB.po
Normal file
2671
locale/po/en_GB.po
Normal file
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"POT-Creation-Date: 2024-07-20 13:05+0200\n"
|
||||
"PO-Revision-Date: 2024-07-20 13:05+0200\n"
|
||||
"Last-Translator: Northwestern Software <info@es-de.org>\n"
|
||||
"Language-Team: English <info@es-de.org>\n"
|
||||
"Language-Team: English (United States) <info@es-de.org>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
Loading…
Reference in a new issue