Merge pull request #1054 from daeho-ro/weblate

feat: Add Korean translations
This commit is contained in:
Owen Schwartz
2025-07-13 11:46:28 -07:00
committed by GitHub
3 changed files with 1141 additions and 1 deletions

1136
messages/ko-KR.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -48,6 +48,10 @@ export default function LocaleSwitcher() {
{ {
value: 'zh-CN', value: 'zh-CN',
label: '简体中文' label: '简体中文'
},
{
value: 'ko-KR',
label: '한국어'
} }
]} ]}
/> />

View File

@@ -1,4 +1,4 @@
export type Locale = (typeof locales)[number]; export type Locale = (typeof locales)[number];
export const locales = ['en-US', 'es-ES', 'fr-FR', 'de-DE', 'nl-NL', 'it-IT', 'pl-PL', 'pt-PT', 'tr-TR', 'zh-CN'] as const; export const locales = ['en-US', 'es-ES', 'fr-FR', 'de-DE', 'nl-NL', 'it-IT', 'pl-PL', 'pt-PT', 'tr-TR', 'zh-CN', 'ko-KR'] as const;
export const defaultLocale: Locale = 'en-US'; export const defaultLocale: Locale = 'en-US';