@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface PluralForms

    Plural forms, following CLDR plural categories.

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

    Used for small counts (Slavic languages and others).

    many?: string

    Used for large counts (Slavic languages and others).

    one?: string

    Used for a count of 1.

    other: string

    Required default form.

    two?: string

    Used for a count of 2 (Arabic and others).

    zero?: string

    Used for a count of 0. Falls back to other when absent.