added hungarian admin translation (#12176)

* added hungarian admin translation

* added missing keys
This commit is contained in:
Gergo Vandor
2025-04-14 14:45:17 +02:00
committed by GitHub
parent 4ea1a2e09f
commit 3a481290ea
3 changed files with 3016 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ import {
vi,
ko,
nl,
hu,
} from "date-fns/locale"
import { Language } from "./types"
@@ -64,6 +65,12 @@ export const languages: Language[] = [
ltr: true,
date_locale: fr,
},
{
code: "hu",
display_name: "Magyar",
ltr: true,
date_locale: hu,
},
{
code: "it",
display_name: "Italiano",

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@ import el from "./el.json"
import en from "./en.json"
import es from "./es.json"
import fr from "./fr.json"
import hu from "./hu.json"
import it from "./it.json"
import ja from "./ja.json"
import pl from "./pl.json"
@@ -43,6 +44,9 @@ export default {
fr: {
translation: fr,
},
hu: {
translation: hu,
},
it: {
translation: it,
},