feat: Add Korean language support

Add Korean language support to the application. This includes translating the necessary UI elements and adding Korean to the supported language list.
This commit is contained in:
n4ze3m
2024-11-10 19:34:38 +05:30
parent a96193bbf8
commit 5678a0f8b2
3 changed files with 26 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ import { de } from "./lang/de";
import { da } from "./lang/da";
import { no } from "./lang/no";
import { sv } from "./lang/sv";
import { ko } from "./lang/ko";
i18n
@@ -37,7 +38,8 @@ i18n
da: da,
no: no,
de: de,
sv: sv
sv: sv,
ko: ko,
},
fallbackLng: "en",
lng: localStorage.getItem("i18nextLng") || "en",