Identifies a CultureID ('en', 'en-US', 'en-GB', etc) that you are supporting. Supplies a fallback CultureID if the culture requested did not have any support. Used by CultureService. Pass an array of these into the CultureService constructor.

interface CultureIdFallback {
    cultureId: string;
    fallbackCultureId?: null | string;
}

Properties

cultureId: string

The ISO culture name pattern in use: languagecode languagecode-countrycode or regioncode "en", "en-GB", "en-US" If this needs to change, it is OK if you set it and the Adaptor reconfigure, or to create a new instance and use it.

fallbackCultureId?: null | string

Identifies another culture to check if a lookup key cannot be resolved.

Generated using TypeDoc v0.25.12