You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
Here is the plunker test page for this issue - http://plnkr.co/0iKpGXso6XVuxzaDimvV
Please try entering '0' or other numbers in the text field and watch the result.
I read through the documentation & as far as I can see, the following two rules should be interpreted the same way.
<ng-pluralize count="personCount"
when="{'0': '',
'1': '{{personCount}} person is viewing.',
'other': '{{personCount}} people are viewing.'}">
</ng-pluralize>
<ng-pluralize count="personCount"
when="{'0': ' ',
'1': '{{personCount}} person is viewing.',
'other': '{{personCount}} people are viewing.'}">
</ng-pluralize>
The text was updated successfully, but these errors were encountered:
Here is the plunker test page for this issue - http://plnkr.co/0iKpGXso6XVuxzaDimvV
Please try entering '0' or other numbers in the text field and watch the result.
I read through the documentation & as far as I can see, the following two rules should be interpreted the same way.
The text was updated successfully, but these errors were encountered: