Add Korean translation (#439)

Co-authored-by: 송준우 <2484@coreit.co.kr>
This commit was merged in pull request #439.
This commit is contained in:
junu
2025-11-26 05:11:46 +09:00
committed by GitHub
parent b57cc52c94
commit 4da2b985ad
3 changed files with 1821 additions and 1 deletions

View File

@@ -8,12 +8,13 @@ import deTranslation from "../locales/de/translation.json";
import ptbrTranslation from "../locales/pt-BR/translation.json";
import ruTranslation from "../locales/ru/translation.json";
import frTranslation from "../locales/fr/translation.json";
import koTranslation from "../locales/ko/translation.json";
i18n
.use(LanguageDetector)
.use(initReactI18next)
.init({
supportedLngs: ["en", "zh", "de", "ptbr", "ru", "fr"],
supportedLngs: ["en", "zh", "de", "ptbr", "ru", "fr", "ko"],
fallbackLng: "en",
debug: false,
@@ -44,6 +45,9 @@ i18n
fr: {
translation: frTranslation,
},
ko: {
translation: koTranslation,
},
},
interpolation: {

File diff suppressed because it is too large Load Diff

View File

@@ -20,6 +20,7 @@ const languages = [
},
{ code: "ru", name: "Russian", nativeName: "Русский" },
{ code: "fr", name: "French", nativeName: "Français" },
{ code: "ko", name: "Korean", nativeName: "한국어" },
];
export function LanguageSwitcher() {