Interface I18nOptions

Options for configuring internationalization

interface I18nOptions {
    defaultNS?: string;
    fallbackLng?: string;
    interpolation?: { escapeValue?: boolean };
    lng?: string;
    ns?: string[];
    resources?: Record<string, Record<string, Record<string, string>>>;
}
Hierarchy
  • InitOptions
    • I18nOptions

Properties

defaultNS?: string

Default namespace

fallbackLng?: string

Fallback language

interpolation?: { escapeValue?: boolean }

Interpolation options

lng?: string

Default language

ns?: string[]

Namespaces

resources?: Record<string, Record<string, Record<string, string>>>

Resources for translations