From 820b30b7e231881d0c593a005aaf8a3ecfd0d195 Mon Sep 17 00:00:00 2001 From: Simon Eklundh Date: Thu, 9 Oct 2025 08:27:24 +0200 Subject: [PATCH] feat: adds the hungarian option to i18n.ts (#1112) Co-authored-by: lostb1t --- i18n.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/i18n.ts b/i18n.ts index fed7e6fb..d462efdf 100644 --- a/i18n.ts +++ b/i18n.ts @@ -10,6 +10,7 @@ import eo from "./translations/eo.json"; import es from "./translations/es.json"; import fi from "./translations/fi.json"; import fr from "./translations/fr.json"; +import hu from "./translations/hu.json"; import it from "./translations/it.json"; import ja from "./translations/ja.json"; import nb from "./translations/nb.json"; @@ -41,6 +42,7 @@ export const APP_LANGUAGES = [ { label: "日本語", value: "ja" }, { label: "Klingon", value: "tlh" }, { label: "Türkçe", value: "tr" }, + { label: "Magyar", value: "hu" }, { label: "Nederlands", value: "nl" }, { label: "Polski", value: "pl" }, { label: "Português (Brasil)", value: "pt-BR" }, @@ -68,6 +70,7 @@ i18n.use(initReactI18next).init({ es: { translation: es }, eo: { translation: eo }, fr: { translation: fr }, + hu: { translation: hu }, it: { translation: it }, ja: { translation: ja }, nl: { translation: nl },