chore: enable KO translations

closes #735
This commit is contained in:
2024-04-12 11:04:54 +01:00
parent 6394e65400
commit 06e8f1fd73
3 changed files with 8 additions and 4 deletions

View File

@ -70,6 +70,9 @@ const getMessages = (locale: string) => {
case "fi-FI":
case "fi":
return (await import("@/translations/fi_FI.json")).default;
case "ko-KR":
case "ko":
return (await import("@/translations/ko_KR.json")).default;
case DefaultLocale:
case "en":
return enMessages;

View File

@ -25,4 +25,5 @@ export const AllLanguageCodes = [
"sw",
"nl",
"fi",
"ko",
];