mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Added support for the fr_FR locale
This commit is contained in:
parent
0582856b84
commit
afea0eace9
|
@ -490,6 +490,7 @@ void GuiMenu::openUIOptions()
|
|||
selectedApplicationLanguage == "en_US");
|
||||
applicationLanguage->add("ENGLISH (UNITED KINGDOM)", "en_GB",
|
||||
selectedApplicationLanguage == "en_GB");
|
||||
applicationLanguage->add("FRANÇAIS", "fr_FR", selectedApplicationLanguage == "fr_FR");
|
||||
applicationLanguage->add("ITALIANO", "it_IT", selectedApplicationLanguage == "it_IT");
|
||||
applicationLanguage->add("PORTUGUÊS (BRASIL)", "pt_BR", selectedApplicationLanguage == "pt_BR");
|
||||
applicationLanguage->add("SVENSKA", "sv_SE", selectedApplicationLanguage == "sv_SE");
|
||||
|
|
|
@ -30,6 +30,7 @@ namespace Utils
|
|||
// clang-format off
|
||||
const std::vector<std::pair<std::string, std::string>> sSupportedLocales {{{"en"}, {"US"}},
|
||||
{{"en"}, {"GB"}},
|
||||
{{"fr"}, {"FR"}},
|
||||
{{"it"}, {"IT"}},
|
||||
{{"ja"}, {"JP"}},
|
||||
{{"pt"}, {"BR"}},
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
en_US
|
||||
en_GB
|
||||
fr_FR
|
||||
it_IT
|
||||
ja_JP
|
||||
pt_BR
|
||||
|
|
2419
locale/po/fr_FR.po
Normal file
2419
locale/po/fr_FR.po
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue