mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Added support for the nl_NL locale
This commit is contained in:
parent
d52e175896
commit
f9d5b2b12e
|
@ -494,6 +494,7 @@ void GuiMenu::openUIOptions()
|
|||
applicationLanguage->add("ESPAÑOL (ESPAÑA)", "es_ES", selectedApplicationLanguage == "es_ES");
|
||||
applicationLanguage->add("FRANÇAIS", "fr_FR", selectedApplicationLanguage == "fr_FR");
|
||||
applicationLanguage->add("ITALIANO", "it_IT", selectedApplicationLanguage == "it_IT");
|
||||
applicationLanguage->add("NEDERLANDS", "nl_NL", selectedApplicationLanguage == "nl_NL");
|
||||
applicationLanguage->add("PORTUGUÊS (BRASIL)", "pt_BR", selectedApplicationLanguage == "pt_BR");
|
||||
applicationLanguage->add("ROMÂNĂ", "ro_RO", selectedApplicationLanguage == "ro_RO");
|
||||
applicationLanguage->add("РУССКИЙ", "ru_RU", selectedApplicationLanguage == "ru_RU");
|
||||
|
|
|
@ -35,6 +35,7 @@ namespace Utils
|
|||
{{"fr"}, {"FR"}},
|
||||
{{"it"}, {"IT"}},
|
||||
{{"ja"}, {"JP"}},
|
||||
{{"nl"}, {"NL"}},
|
||||
{{"pt"}, {"BR"}},
|
||||
{{"ro"}, {"RO"}},
|
||||
{{"ru"}, {"RU"}},
|
||||
|
@ -186,6 +187,8 @@ namespace Utils
|
|||
sMenuTitleScaleFactor = 0.90f;
|
||||
else if (localePair.first == "fr")
|
||||
sMenuTitleScaleFactor = 0.90f;
|
||||
else if (localePair.first == "nl")
|
||||
sMenuTitleScaleFactor = 0.94f;
|
||||
else if (localePair.first == "pt")
|
||||
sMenuTitleScaleFactor = 0.90f;
|
||||
else if (localePair.first == "sv")
|
||||
|
|
2614
locale/po/nl_NL.po
Normal file
2614
locale/po/nl_NL.po
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue