mirror of
https://github.com/beilunyang/moemail.git
synced 2026-06-03 22:50:21 +08:00
19 lines
405 B
TypeScript
19 lines
405 B
TypeScript
export const locales = ['en', 'zh-CN', 'zh-TW', 'ja', 'ko'] as const
|
|
export type Locale = typeof locales[number]
|
|
|
|
export const LOCALE_LABELS: Record<Locale, string> = {
|
|
en: "English",
|
|
"zh-CN": "简体中文",
|
|
"zh-TW": "繁體中文",
|
|
ja: "日本語",
|
|
ko: "한국어",
|
|
}
|
|
|
|
export const defaultLocale: Locale = 'en'
|
|
|
|
export const i18n = {
|
|
locales,
|
|
defaultLocale,
|
|
localePrefix: 'as-needed',
|
|
}
|