-
Notifications
You must be signed in to change notification settings - Fork 22.5k
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
Intl.NumberFormat. v3 fixes #28023
Intl.NumberFormat. v3 fixes #28023
Conversation
@@ -18,7 +18,7 @@ selectRange(startRange, endRange) | |||
### Return value | |||
|
|||
A string representing the pluralization category of the `number`. | |||
This can be one of `zero`, `one`, `two`, `few`, `many` or `other`, that are relevant for the locale whose localization is specified in [LDML Language Plural Rules](https://unicode-org.github.io/cldr-staging/charts/37/supplemental/language_plural_rules.html#rules). | |||
This can be one of `zero`, `one`, `two`, `few`, `many` or `other`, that are relevant for the locale whose localization is specified in [LDML Language Plural Rules](https://www.unicode.org/cldr/charts/43/supplemental/language_plural_rules.html). |
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.
FYI Link moved.
files/en-us/web/javascript/reference/global_objects/intl/numberformat/resolvedoptions/index.md
Outdated
Show resolved
Hide resolved
…rformat/resolvedoptions/index.md
Preview URLs
Flaws (1)Note! 2 documents with no flaws that don't need to be listed. 🎉 URL:
External URLs (1)URL:
(comment last updated: 2023-07-18 06:20:29) |
Note, there is more to be done here, but I'm away until Friday and most of that work will be in PluralRules - so we might as well get this in if possible. |
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.
Constructor change LGTM; I would trust you with the resolvedOptions
change because I plan to homogenize/deduplicate all the resolvedOptions
pages later anyway ^^
Thanks very much. |
FF116 adds support for Intl.NumberFormat v3 proposal. This has largely been documented already, but this fixes some omissions/does some tidy up. The work might happen across a number of PRs.
Fixes in this one:
Intl.NumberFormat
constructorNumberFormat.resolvedOptions()
userGrouping
already indicated. These have been added.unit
,unitDisplay
Other docs work can be tracked in #27746