Singleton

Version 0.6

One-fits-all Internationalization Solution

Plural Format

Overview

Transform a plural message string to a string that pluralizes the value according to locale rules and translations. It can be implemented using l10n utils, the only difference is the definition of the source.

Plural Source Text

The source text defines the message output for each plural case of the specified locale. Syntax:

selector { message }
/**
 *  selector: explicitValue | keyword
 *       explicitValue: '=' number // adjacent, no white space in between
 *       keyword: Pluralization categories
 *  message: string
 */

Pluralization categories include (depending on the language):

  • zero
  • one
  • two
  • few
  • many
  • other

There are 6 predefined case keywords in CLDR/ICU. You always have to define a message text for the default plural case “other” which is contained in every rule set. If you do not specify a message text for a particular plural case, the message text of the plural case “other” gets assigned to this plural case.

When formatting, the input number is first matched against the explicitValue clauses. If there is no exact-number match, then a keyword is selected by calling the PluralRules with the input number. If there is no clause with that keyword, then the “other” clauses is returned.

An unquoted pound sign (#) in the selected sub-message itself is replaced by the input number.

Note: The pipe accept a parameters array, the placeholders in message should be index of variable in parameters array.

Example Code

source in bundle

...
'ngx.singleton.files' : '{0, plural, =0 {No files.} one{There is one file on {1}.} other{There are # files on {1}.} }'
import { L10nService } from '@singleton-i18n/angular-client';

@Component({
    selector: 'test',
    templateUrl: './test.component.html'
})
export class TestComponent {
    constructor(private l10nService: L10nService) {}

    ...
    // static refresh mode
    this.thanslatedFiles = this.l10nService.getMessage('ngx.singleton.files', [ this.files.length, 'XDisk' ]);
    
    ...
    // live update mode
    this.subscription = this.l10nService.stream.subscribe((locale: string) => {
        this.thanslatedFiles = this.l10nService.getMessage('ngx.singleton.files', [ this.files.length, 'XDisk' ]);
    });

}
{{'ngx.singleton.files' | vtranslate:files.length:'XDisk'}}
Last updated on 24 Sep 2019
Published on 24 Sep 2019
 Edit on GitHub