-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
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
fix: add the Hebrew plural formula #3220
Conversation
Based on the CLDR rule, in the gettext form: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3)) @asbiin Most of the mentioned sources show the former rule, not the current one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok great!
See my review ..
Yup, thanks, sorry for the trouble, feel free to merge 😅 |
Done. |
Thank you @yarons! |
This pull request has been automatically locked since there |
Based on the CLDR rule, in the gettext form:
nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))
@asbiin Most of the mentioned sources show the former rule, not the current one.