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
This is not proper pluralization
It does not work for basically any other language than English, see https://unicode-org.github.io/cldr-staging/charts/37/supplemental/language_plural_rules.html
For example "Czech" language has 4 categories: "few" = 2-4, but your code always assigns 3 to "many"
The text was updated successfully, but these errors were encountered:
Plus it does not localize when the key contains a dot:
"something.people": { "one": "there is one person", ... }
The .pluralize value comes out as "something.people.one"
Sorry, something went wrong.
No branches or pull requests
This is not proper pluralization
It does not work for basically any other language than English, see
https://unicode-org.github.io/cldr-staging/charts/37/supplemental/language_plural_rules.html
For example "Czech" language has 4 categories:
"few" = 2-4, but your code always assigns 3 to "many"
The text was updated successfully, but these errors were encountered: