We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Normalization, i.e., case sensitive URL path name generation of Intl.js locale data modules are too simple and unreliable.
For example, ZH-haNS-cn is incorrectly normalized to zh-HANS-CN, which results in file not found error and thus must be changed to zh-Hans-CN.
ZH-haNS-cn
zh-HANS-CN
zh-Hans-CN
For language fallback, an inexistent locale ja-CA directly falls back to en instead of ja.
ja-CA
en
ja
The text was updated successfully, but these errors were encountered:
d00eab0
Version 0.2.2; Fix #1 on Intl.js language fallback
c49259a
No branches or pull requests
Normalization, i.e., case sensitive URL path name generation of Intl.js locale data modules are too simple and unreliable.
For example,
ZH-haNS-cn
is incorrectly normalized tozh-HANS-CN
, which results in file not found error and thus must be changed tozh-Hans-CN
.For language fallback, an inexistent locale
ja-CA
directly falls back toen
instead ofja
.The text was updated successfully, but these errors were encountered: