@suluk/i18n - v0.1.0
    Preparing search index...

    Interface LocaleDef

    One locale in an app's set.

    interface LocaleDef {
        code: string;
        label?: string;
        dir?: Direction;
        numberingSystem?: string;
    }
    Index

    Properties

    code: string

    BCP-47 tag, e.g. "en", "ar", "es" (or a region: "ar-EG").

    label?: string

    human label in its OWN language (for a picker), e.g. "العربية".

    dir?: Direction

    writing direction (default "ltr"; set "rtl" for ar/he/fa/ur).

    numberingSystem?: string

    Intl numbering system, e.g. "arab" for Eastern-Arabic numerals (٠١٢٣). Default "latn".