Internationalization boot-time configuration.

interface AsukaI18nOptions {
    fallbackLocale?: string;
    locale?: string;
    translations?: Record<string, Record<string, unknown>>;
}

Properties

fallbackLocale?: string

Fallback locale used when a key is missing.

locale?: string

Active locale used at startup.

translations?: Record<string, Record<string, unknown>>

Locale bundles injected at startup.