-
Notifications
You must be signed in to change notification settings - Fork 603
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
Create Pluralization module #220
Labels
Comments
This is module is needed for:
|
cc @jzaefferer |
rxaviers
added a commit
that referenced
this issue
Apr 17, 2014
rxaviers
added a commit
that referenced
this issue
Apr 29, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Apr 29, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Apr 29, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Apr 30, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
May 21, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
4 tasks
rxaviers
added a commit
that referenced
this issue
May 21, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
May 22, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
May 28, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
May 29, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
to rxaviers/globalize
that referenced
this issue
May 29, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref globalizejs#220
rxaviers
added a commit
that referenced
this issue
May 30, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Jun 20, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Jun 23, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Aug 20, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Aug 20, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Aug 20, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
that referenced
this issue
Aug 28, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref #220
rxaviers
added a commit
to rxaviers/globalize
that referenced
this issue
Sep 1, 2014
Borrow santhoshtr/CLDRPluralRuleParser. Ref globalizejs#220
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PR #241.
Implementation
.plural( value )
.plural( 5 );
Should return the count group String:
zero
|one
|two
|few
|many
|other
;.formatPlural( value, pluralData )
.formatPlural( 5, { one: "{0} second", other: "{0} seconds"} )
Should return the appropriate plural message.
Documentation
Use
The text was updated successfully, but these errors were encountered: