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

pull/28237/head
gunchleoc 1 year ago committed by Claire
parent ef149674f0
commit 156d32689b

@ -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

Loading…
Cancel
Save