This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat($interpolate): MessageFormat extensions #11152
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@ngdoc error | ||
@name $interpolate:badexpr | ||
@fullName Expecting end operator | ||
@description | ||
|
||
The Angular expression is missing the corresponding closing operator. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ngdoc error | ||
@name $interpolate:dupvalue | ||
@fullName Duplicate choice in plural/select | ||
@description | ||
|
||
You have repeated a match selection for your plural or select MessageFormat | ||
extension in your interpolation expression. The different choices have to be unique. | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@ngdoc error | ||
@name $interpolate:logicbug | ||
@fullName Bug in ngMessageFormat module | ||
@description | ||
|
||
You've just hit a bug in the ngMessageFormat module provided by angular-messageFormat.min.js. | ||
Please file a github issue for this and provide the interpolation text that caused you to hit this | ||
bug mentioning the exact version of AngularJS used and we will fix it! | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ngdoc error | ||
@name $interpolate:nochgmustache | ||
@fullName Redefinition of start/endSymbol incompatible with MessageFormat extensions | ||
@description | ||
|
||
You have redefined `$interpolate.startSymbol`/`$interpolate.endSymbol` and also | ||
loaded the `ngMessageFormat` module (provided by angular-messageFormat.min.js) | ||
while creating your injector. | ||
|
||
`ngMessageFormat` currently does not support redefinition of the | ||
startSymbol/endSymbol used by `$interpolate`. If this is affecting you, please | ||
file an issue and mention @chirayuk on it. This is intended to be fixed in a | ||
future commit and the github issue will help gauge urgency. | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@ngdoc error | ||
@name $interpolate:reqarg | ||
@fullName Missing required argument for MessageFormat | ||
@description | ||
|
||
You must specify the MessageFormat function that you're using right after the | ||
comma following the Angular expression. Currently, the supported functions are | ||
"plural" and "select" (for gender selections.) | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ngdoc error | ||
@name $interpolate:reqcomma | ||
@fullName Missing comma following MessageFormat plural/select keyword | ||
@description | ||
|
||
The MessageFormat syntax requires a comma following the "plural" or "select" | ||
extension keyword in the extended interpolation syntax. | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@ngdoc error | ||
@name $interpolate:reqendbrace | ||
@fullName Unterminated message for plural/select value | ||
@description | ||
|
||
The plural or select message for a value or keyword choice has no matching end | ||
brace to mark the end of the message. | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@ngdoc error | ||
@name $interpolate:reqendinterp | ||
@fullName Unterminated interpolation | ||
@description | ||
|
||
The interpolation text does not have an ending `endSymbol` ("}}" by default) and is unterminated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@ngdoc error | ||
@name $interpolate:reqopenbrace | ||
@fullName An opening brace was expected but not found | ||
@description | ||
|
||
The plural or select extension keyword or values (such as "other", "male", | ||
"female", "=0", "one", "many", etc.) MUST be followed by a message enclosed in | ||
braces. | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@ngdoc error | ||
@name $interpolate:reqother | ||
@fullName Required choice "other" for select/plural in MessageFormat | ||
@description | ||
|
||
Your interpolation expression with a MessageFormat extension for either | ||
"plural" or "select" (typically used for gender selection) does not contain a | ||
message for the choice "other". Using either select or plural MessageFormat | ||
extensions require that you provide a message for the selection "other". | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@ngdoc error | ||
@name $interpolate:unknarg | ||
@fullName Unrecognized MessageFormat extension | ||
@description | ||
|
||
The MessageFormat extensions provided by `ngMessageFormat` are currently | ||
limited to "plural" and "select". The extension that you have used is either | ||
unsupported or invalid. | ||
|
||
For more information about the MessageFormat syntax in interpolation | ||
expressions, please refer to MessageFormat extensions section at | ||
{@link guide/i18n#MessageFormat Angular i18n MessageFormat} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@ngdoc error | ||
@name $interpolate:unsafe | ||
@fullName MessageFormat extensions not allowed in secure context | ||
@description | ||
|
||
You have attempted to use a MessageFormat extension in your interpolation expression that is marked as a secure context. For security purposes, this is not supported. | ||
|
||
Read more about secure contexts at {@link ng.$sce Strict Contextual Escaping | ||
(SCE)} and about the MessageFormat extensions at {@link | ||
guide/i18n#MessageFormat Angular i18n MessageFormat}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@ngdoc error | ||
@name $interpolate:untermstr | ||
@fullName Unterminated string literal | ||
@description | ||
|
||
The string literal was not terminated in your Angular expression. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@ngdoc error | ||
@name $interpolate:wantstring | ||
@fullName Expected the beginning of a string | ||
@description | ||
|
||
We expected to see the beginning of a string (either a single quote or a double | ||
quote character) in the expression but it was not found. The expression is | ||
invalid. If this is incorrect, please file an issue on github. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,3 +137,115 @@ The Angular datetime filter uses the time zone settings of the browser. The same | |
application will show different time information depending on the time zone settings of the | ||
computer that the application is running on. Neither JavaScript nor Angular currently supports | ||
displaying the date with a timezone specified by the developer. | ||
|
||
|
||
<a name="MessageFormat"></a> | ||
## MessageFormat extensions | ||
|
||
AngularJS interpolations via `$interpolate` and in templates | ||
support an extended syntax based on a subset of the ICU | ||
MessageFormat that covers plurals and gender selections. | ||
|
||
Please refer to our [design doc](https://docs.google.com/a/google.com/document/d/1pbtW2yvtmFBikfRrJd8VAsabiFkKezmYZ_PbgdjQOVU/edit) | ||
for a lot more details. You may find it helpful to play with our [Plnkr Example](http://plnkr.co/edit/QBVRQ70dvKZDWmHW9RyR?p=preview). | ||
|
||
You can read more about the ICU MessageFormat syntax at | ||
[Formatting Messages | ICU User Guide](http://userguide.icu-project.org/formatparse/messages#TOC-MessageFormat). | ||
|
||
This extended syntax is provided by way of the | ||
`ngMessageFormat` module that your application can depend | ||
upon (shipped separately as `angular-messageFormat.min.js` and | ||
`angular-messageFormat.js`.) A current limitation of the | ||
`ngMessageFormat` module, is that it does not support | ||
redefining the `$interpolate` start and end symbols. Only the | ||
default `{{` and `}}` are allowed. | ||
|
||
This syntax extension, while based on MessageFormat, has | ||
been designed to be backwards compatible with existing | ||
AngularJS interpolation expressions. The key rule is simply | ||
this: **All interpolations are done inside double curlies.** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it is worth, at some point in this guide, calling out the fact that it is the comma character that triggers the expression to be considered as a messageFormat expression. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point! Done. |
||
The top level comma operator after an expression inside the | ||
double curlies causes MessageFormat extensions to be | ||
recognized. Such a top level comma is otherwise illegal in | ||
an Angular expression and is used by MessageFormat to | ||
specify the function (such as plural/select) and it's | ||
related syntax. | ||
|
||
To understand the extension, take a look at the ICU | ||
MessageFormat syntax as specified by the ICU documentation. | ||
Anywhere in that MessageFormat that you have regular message | ||
text and you want to substitute an expression, just put it | ||
in double curlies instead of single curlies that | ||
MessageFormat dictates. This has a huge advantage. **You | ||
are no longer limited to simple identifiers for | ||
substitutions**. Because you are using double curlies, you | ||
can stick in any arbitrary interpolation syntax there, | ||
including nesting more MessageFormat expressions! Some | ||
examples will make this clear. In the following example, I | ||
will only be showing you the AngularJS syntax. | ||
|
||
|
||
### Simple plural example | ||
|
||
``` | ||
{{numMessages, plural, | ||
=0 { You have no new messages } | ||
=1 { You have one new message } | ||
other { You have # new messages } | ||
}} | ||
``` | ||
|
||
While I won't be teaching you MessageFormat here, you will | ||
note that the `#` symbol works as expected. You could have | ||
also written it as: | ||
|
||
``` | ||
{{numMessages, plural, | ||
=0 { You have no new messages } | ||
=1 { You have one new message } | ||
other { You have {{numMessages}} new messages } | ||
}} | ||
``` | ||
|
||
where you explicitly typed in `numMessages` for "other" | ||
instead of using `#`. They are nearly the same except if | ||
you're using "offset". Refer to the ICU MessageFormat | ||
documentation to learn about offset. | ||
|
||
Please note that **other** is a **required** category (for | ||
both the plural syntax and the select syntax that is shown | ||
later.) | ||
|
||
|
||
### Simple select (for gender) example | ||
|
||
``` | ||
{{friendGender, select, | ||
male { Invite him } | ||
female { Invite her } | ||
other { Invite them } | ||
}} | ||
``` | ||
|
||
### More complex example that combines some of these | ||
|
||
This is taken from the [plunker example](http://plnkr.co/edit/QBVRQ70dvKZDWmHW9RyR?p=preview) linked to earlier. | ||
|
||
``` | ||
{{recipients.length, plural, offset:1 | ||
=0 {You ({{sender.name}}) gave no gifts} | ||
=1 { {{ recipients[0].gender, select, | ||
male {You ({{sender.name}}) gave him ({{recipients[0].name}}) a gift.} | ||
female {You ({{sender.name}}) gave her ({{recipients[0].name}}) a gift.} | ||
other {You ({{sender.name}}) gave them ({{recipients[0].name}}) a gift.} | ||
}} | ||
} | ||
one { {{ recipients[0].gender, select, | ||
male {You ({{sender.name}}) gave him ({{recipients[0].name}}) and one other person a gift.} | ||
female {You ({{sender.name}}) gave her ({{recipients[0].name}}) and one other person a gift.} | ||
other {You ({{sender.name}}) gave them ({{recipients[0].name}}) and one other person a gift.} | ||
}} | ||
} | ||
other {You ({{sender.name}}) gave {{recipients.length}} people gifts. } | ||
}} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
So for gender selectors you would need to provide:
male
,female
andother
? Or would you just putmale
andother
?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.
Yup. You provide all the choices that you expect to match and "other" if there is no match. For plurals, for instance, you can omit categories that you think can't occur, but you must still include "other". For gender, you should include all the choices which might require a different message. Since male, female and other have different messages, typically, would include all three. However, for a message like, "You have no posts", you might include just other as the "You" in English is gender neutral but might not be in a different language.