Interface TranslationPluralForms

interface TranslationPluralForms {
    few?: string;
    many?: string;
    one?: string;
    other?: string;
    two?: string;
    zero?: string;
}

Properties

few?: string

Plural form used for a few

many?: string

Plural form used for many

one?: string

Plural form used with 1

other?: string

General plural form

two?: string

Plural form used with 2

zero?: string

Plural form used with 0