2024-06-02 12:47:50 +00:00
|
|
|
import type { SupportedLanguagesType } from '@vben-core/typings';
|
2024-05-19 13:20:42 +00:00
|
|
|
|
|
|
|
type ImportLocaleFn = () => Promise<{ default: Record<string, string> }>;
|
|
|
|
|
2024-07-06 16:17:44 +00:00
|
|
|
type LoadMessageFn = (
|
|
|
|
lang: SupportedLanguagesType,
|
|
|
|
) => Promise<Record<string, string>>;
|
|
|
|
|
2024-05-19 13:20:42 +00:00
|
|
|
interface LocaleSetupOptions {
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|
|
|
|
|
2024-07-06 16:17:44 +00:00
|
|
|
export type {
|
|
|
|
ImportLocaleFn,
|
|
|
|
LoadMessageFn,
|
|
|
|
LocaleSetupOptions,
|
|
|
|
SupportedLanguagesType,
|
|
|
|
};
|