feat: add Hungarian translation (#261)

Co-authored-by: Kármán Zsombor <karman.zsombor@infohullam.hu>
This commit is contained in:
Kármán Zsombor
2024-07-29 02:38:56 +02:00
committed by GitHub
parent 5dd045e080
commit 8f8cd81c14
3 changed files with 92 additions and 0 deletions

View File

@ -36,6 +36,10 @@ const PreferenceSection: React.FC = () => {
value: "RU",
label: "русский",
},
{
value: "HU",
label: "Magyar",
},
];
const colorThemeOptions = [

View File

@ -6,6 +6,7 @@ import ja from "../../locales/ja.json";
import ru from "../../locales/ru.json";
import tr from "../../locales/tr.json";
import zh from "../../locales/zh.json";
import hu from "../../locales/hu.json";
i18n.use(initReactI18next).init({
resources: {
@ -27,6 +28,9 @@ i18n.use(initReactI18next).init({
TR: {
translation: tr,
},
HU: {
translation: hu,
},
},
lng: "EN",
fallbackLng: "EN",