You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bazinga JS looks for ICU message format only with the current locale. For the Fallback locale it does not look into files with ICU suffix.
This problem is in method "get_message"
There is block if (has_message(_locale, _domain + INTL_DOMAIN_SUFFIX, id)) { _additionalReturn.isICU = true; return _messages[_locale][_domain + INTL_DOMAIN_SUFFIX][id]; } if (has_message(_locale, _domain, id)) { return _messages[_locale][_domain][id]; }
which looks of ICU message format and then in files withou the ICU in the current domain, but for fallback it looks only in files without the suffix
if (has_message(localeFallback, _domain, id)) { return _messages[localeFallback][_domain][id]; }
There is no workaround for this issue.
From the looks of the code the same problem will occur when using locale like 'en_US'
The text was updated successfully, but these errors were encountered:
Bazinga JS looks for ICU message format only with the current locale. For the Fallback locale it does not look into files with ICU suffix.
This problem is in method "get_message"
There is block
if (has_message(_locale, _domain + INTL_DOMAIN_SUFFIX, id)) { _additionalReturn.isICU = true; return _messages[_locale][_domain + INTL_DOMAIN_SUFFIX][id]; } if (has_message(_locale, _domain, id)) { return _messages[_locale][_domain][id]; }
which looks of ICU message format and then in files withou the ICU in the current domain, but for fallback it looks only in files without the suffix
if (has_message(localeFallback, _domain, id)) { return _messages[localeFallback][_domain][id]; }
There is no workaround for this issue.
From the looks of the code the same problem will occur when using locale like 'en_US'
The text was updated successfully, but these errors were encountered: