feat(i18n): add korean language support

This commit is contained in:
Jongho Hong
2024-12-01 16:48:16 +09:00
parent 63998f71ec
commit bcf1ba242e
6 changed files with 62 additions and 6 deletions

View File

@@ -10,6 +10,7 @@ const SUPPORTED_LOCALES = [
"zh-Hant",
"zh-Hans",
"fa",
"ko",
] as const;
type Locale = (typeof SUPPORTED_LOCALES)[number];