replugged

    Interface I18n

    interface I18n {
        getAvailableLocales: () => Locale[];
        getLanguages: () => Language[];
        intl: IntlManager<{}> & {
            format: FormatFunction<
                FormatterImplementation<
                    ReactFunctionTypes,
                    ReactIntlMessage,
                    ReactNode,
                >,
            >;
            formatToMarkdownString: FormatFunction<
                FormatterImplementation<MarkdownFunctionTypes, string, string>,
            >;
            formatToParts: FormatFunction<
                FormatterImplementation<
                    AstFunctionTypes,
                    RichTextNode[],
                    RichTextNode[],
                >,
            >;
            formatToPlainString: FormatFunction<
                FormatterImplementation<StringFunctionTypes, string, string>,
            >;
        };
        t: MessagesBindsProxy;
        useSyncMessages: (messageLoader: MessageLoader) => void;
    }
    Index

    Properties

    getAvailableLocales: () => Locale[]
    getLanguages: () => Language[]
    intl: IntlManager<{}> & {
        format: FormatFunction<
            FormatterImplementation<
                ReactFunctionTypes,
                ReactIntlMessage,
                ReactNode,
            >,
        >;
        formatToMarkdownString: FormatFunction<
            FormatterImplementation<MarkdownFunctionTypes, string, string>,
        >;
        formatToParts: FormatFunction<
            FormatterImplementation<
                AstFunctionTypes,
                RichTextNode[],
                RichTextNode[],
            >,
        >;
        formatToPlainString: FormatFunction<
            FormatterImplementation<StringFunctionTypes, string, string>,
        >;
    }
    t: MessagesBindsProxy
    useSyncMessages: (messageLoader: MessageLoader) => void
    MMNEPVFCICPMFPCPTTAAATR