1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-07-23 06:41:30 +00:00

feat(i18n): add Korean (#889)

* feat(i18n): add Korean

* feat(i18n): add Korean
This commit is contained in:
JONG HWAN KIM
2024-02-19 07:37:59 +09:00
committed by GitHub
parent 8c5c5f9130
commit b1a105371b
2 changed files with 83 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import es from "./locales/es-ES"
import ar from "./locales/ar-SA"
import uk from "./locales/uk-UA"
import ru from "./locales/ru-RU"
import ko from "./locales/ko-KR"
export const TRANSLATIONS = {
"en-US": en,
@@ -42,6 +43,7 @@ export const TRANSLATIONS = {
"ar-MR": ar,
"uk-UA": uk,
"ru-RU": ru,
"ko-KR": ko,
} as const
export const defaultTranslation = "en-US"