mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-04 04:23:16 +00:00
feat: add Hungarian translation (#261)
Co-authored-by: Kármán Zsombor <karman.zsombor@infohullam.hu>
This commit is contained in:
@ -36,6 +36,10 @@ const PreferenceSection: React.FC = () => {
|
||||
value: "RU",
|
||||
label: "русский",
|
||||
},
|
||||
{
|
||||
value: "HU",
|
||||
label: "Magyar",
|
||||
},
|
||||
];
|
||||
|
||||
const colorThemeOptions = [
|
||||
|
@ -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",
|
||||
|
Reference in New Issue
Block a user