2024-07-28 06:29:05 +00:00
|
|
|
export type SupportedLanguagesType = 'en-US' | 'zh-CN';
|
2024-05-19 13:20:42 +00:00
|
|
|
|
2024-07-28 06:29:05 +00:00
|
|
|
export type ImportLocaleFn = () => Promise<{ default: Record<string, string> }>;
|
2024-05-19 13:20:42 +00:00
|
|
|
|
2024-07-28 06:29:05 +00:00
|
|
|
export type LoadMessageFn = (
|
2024-07-06 16:17:44 +00:00
|
|
|
lang: SupportedLanguagesType,
|
|
|
|
) => Promise<Record<string, string>>;
|
|
|
|
|
2024-07-28 06:29:05 +00:00
|
|
|
export interface LocaleSetupOptions {
|
2024-05-19 13:20:42 +00:00
|
|
|
/**
|
|
|
|
* Default language
|
|
|
|
* @default zh-CN
|
|
|
|
*/
|
2024-06-02 12:47:50 +00:00
|
|
|
defaultLocale?: SupportedLanguagesType;
|
2024-06-30 07:42:30 +00:00
|
|
|
/**
|
2024-07-06 16:17:44 +00:00
|
|
|
* Load message function
|
2024-06-30 07:42:30 +00:00
|
|
|
* @param lang
|
|
|
|
* @returns
|
|
|
|
*/
|
2024-07-06 16:17:44 +00:00
|
|
|
loadMessages?: LoadMessageFn;
|
2024-07-06 18:00:51 +00:00
|
|
|
/**
|
|
|
|
* Whether to warn when the key is not found
|
|
|
|
*/
|
|
|
|
missingWarn?: boolean;
|
2024-05-19 13:20:42 +00:00
|
|
|
}
|