From 92dae9fd8b6cca099f81718f2e49333adb0a4c12 Mon Sep 17 00:00:00 2001 From: Benoit Simard Date: Mon, 29 Jan 2024 11:15:25 +0100 Subject: [PATCH] i18n: enables hungarian and korean langs --- src/locales/LOCALES.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/locales/LOCALES.ts b/src/locales/LOCALES.ts index e29e324..1015d03 100644 --- a/src/locales/LOCALES.ts +++ b/src/locales/LOCALES.ts @@ -1,6 +1,8 @@ import dev from "./dev.json"; import en from "./en.json"; import fr from "./fr.json"; +import hu from "./hu.json"; +import ko from "./ko.json"; export const LOCALES = { dev: { @@ -15,6 +17,14 @@ export const LOCALES = { translation: fr, label: "Français", }, + hu: { + translation: hu, + label: "Magyar", + }, + ko: { + translation: ko, + label: "한국인", + }, }; export const DEFAULT_LOCALE = process.env.NODE_ENV !== "production" ? "dev" : "en";