interface LocaleState {
    isRtl: boolean;
    locale: string;
    messages: Record<string, string>;
    messagesByLocale: Record<string, Record<string, string>>;
}

Properties

isRtl: boolean
locale: string
messages: Record<string, string>
messagesByLocale: Record<string, Record<string, string>>