diff --git a/lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php b/lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php index bd22385045cd1..fe9ff3f79099e 100644 --- a/lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php +++ b/lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php @@ -66,6 +66,9 @@ protected function cleanLocale($locale) if (isset($localeParts['language'])) { $cleanLocaleParts['language'] = $localeParts['language']; } + if (isset($localeParts['region'])) { + $cleanLocaleParts['region'] = $localeParts['region']; + } if (isset($localeParts['script'])) { $cleanLocaleParts['script'] = $localeParts['script']; }