mirror of
https://github.com/beilunyang/moemail.git
synced 2026-09-05 23:36:37 +08:00
feat(i18n): add Korean language support
This commit is contained in:
+2
-1
@@ -1,4 +1,4 @@
|
||||
export const locales = ['en', 'zh-CN', 'zh-TW', 'ja'] as const
|
||||
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> = {
|
||||
@@ -6,6 +6,7 @@ export const LOCALE_LABELS: Record<Locale, string> = {
|
||||
"zh-CN": "简体中文",
|
||||
"zh-TW": "繁體中文",
|
||||
ja: "日本語",
|
||||
ko: "한국어",
|
||||
}
|
||||
|
||||
export const defaultLocale: Locale = 'en'
|
||||
|
||||
Reference in New Issue
Block a user