diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-10-27 14:37:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-27 14:37:44 +0200 |
commit | 8321e48ab0ac0700e1aef8f829140052c1ba4c6d (patch) | |
tree | a03d627a76fb4456d938f591a5ee01f7e6e9b2c2 | |
parent | 470ead74dbc3d6ea7133ab90c0d09ed637e7a5f5 (diff) | |
parent | 1e7f078ce9832a1b53be587d1d4cfbd14b760623 (diff) |
Merge pull request #6943 from damon-myers/fix-mac-locale
Fix locale for macOS-style locales
-rw-r--r-- | core/translation.cpp | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/core/translation.cpp b/core/translation.cpp index 0137db3b42..4d81073fe6 100644 --- a/core/translation.cpp +++ b/core/translation.cpp @@ -844,8 +844,11 @@ void Translation::_set_messages(const DVector<String>& p_messages){ void Translation::set_locale(const String& p_locale) { - if(!is_valid_locale(p_locale)) { - String trimmed_locale = get_trimmed_locale(p_locale); + // replaces '-' with '_' for macOS Sierra-style locales + String univ_locale = p_locale.replace("-", "_"); + + if(!is_valid_locale(univ_locale)) { + String trimmed_locale = get_trimmed_locale(univ_locale); ERR_EXPLAIN("Invalid Locale: "+trimmed_locale); ERR_FAIL_COND(!is_valid_locale(trimmed_locale)); @@ -853,7 +856,7 @@ void Translation::set_locale(const String& p_locale) { locale=trimmed_locale; } else { - locale=p_locale; + locale=univ_locale; } } @@ -919,8 +922,11 @@ Translation::Translation() { void TranslationServer::set_locale(const String& p_locale) { - if(!is_valid_locale(p_locale)) { - String trimmed_locale = get_trimmed_locale(p_locale); + // replaces '-' with '_' for macOS Sierra-style locales + String univ_locale = p_locale.replace("-", "_"); + + if(!is_valid_locale(univ_locale)) { + String trimmed_locale = get_trimmed_locale(univ_locale); ERR_EXPLAIN("Invalid Locale: "+trimmed_locale); ERR_FAIL_COND(!is_valid_locale(trimmed_locale)); @@ -928,7 +934,7 @@ void TranslationServer::set_locale(const String& p_locale) { locale=trimmed_locale; } else { - locale=p_locale; + locale=univ_locale; } } |