linkI18nPluralPipe
| npm Package | @angular/common |
|---|---|
| Module | import { I18nPluralPipe } from '@angular/common'; |
| Source | common/src/pipes/i18n_plural_pipe.ts |
| NgModule | CommonModule |
Maps a value to a string that pluralizes the value according to locale rules.
linkHow To Use
expression | i18nPlural:mapping[:locale]
linkDescription
Where:
-
expressionis a number. -
mappingis an object that mimics the ICU format, see http://userguide.icu-project.org/formatparse/messages -
localeis astringdefining the locale to use (uses the currentLOCALE_IDby default)linkExample
@Component({
selector: 'i18n-plural-pipe',
template: `<div>{{ messages.length | i18nPlural: messageMapping }}</div>`
})
export class I18nPluralPipeComponent {
messages: any[] = ['Message 1'];
messageMapping:
{[k: string]: string} = {'=0': 'No messages.', '=1': 'One message.', 'other': '# messages.'};
}