Only strip country code when language not listed in SUPPORTED_LOCALES (#27099)

This commit is contained in:
gunchleoc 2023-09-28 09:13:44 +01:00 committed by GitHub
parent 57f592fed5
commit ce79caca4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -254,6 +254,7 @@ module LanguagesHelper
def valid_locale_or_nil(str)
return if str.blank?
return str if valid_locale?(str)
code, = str.to_s.split(/[_-]/) # Strip out the region from e.g. en_US or ja-JP