diff options
-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; } } |