mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Added support for the it_IT locale
This commit is contained in:
parent
0b5b0e0572
commit
01406c27c3
|
@ -490,6 +490,7 @@ void GuiMenu::openUIOptions()
|
|||
selectedApplicationLanguage == "en_US");
|
||||
applicationLanguage->add("ENGLISH (UNITED KINGDOM)", "en_GB",
|
||||
selectedApplicationLanguage == "en_GB");
|
||||
applicationLanguage->add("ITALIANO", "it_IT", selectedApplicationLanguage == "it_IT");
|
||||
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
|
||||
|
|
|
@ -30,6 +30,7 @@ namespace Utils
|
|||
// clang-format off
|
||||
const std::vector<std::pair<std::string, std::string>> sSupportedLocales {{{"en"}, {"US"}},
|
||||
{{"en"}, {"GB"}},
|
||||
{{"it"}, {"IT"}},
|
||||
{{"sv"}, {"SE"}},
|
||||
{{"zh"}, {"CN"}}};
|
||||
// clang-format on
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
en_US
|
||||
en_GB
|
||||
it_IT
|
||||
sv_SE
|
||||
zh_CN
|
||||
|
|
2532
locale/po/it_IT.po
Normal file
2532
locale/po/it_IT.po
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue