Add support for the Hungarian language (hu-HU) (#639)

This commit is contained in:
bartfailt 2021-08-20 06:14:36 +02:00 committed by GitHub
parent 940663a22d
commit 98b0f8779b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import de from "vuetify/es5/locale/de";
import en from "vuetify/es5/locale/en";
import es from "vuetify/es5/locale/es";
import fr from "vuetify/es5/locale/fr";
import hu from "vuetify/es5/locale/hu";
import it from "vuetify/es5/locale/it";
import nl from "vuetify/es5/locale/nl";
import pl from "vuetify/es5/locale/pl";
@ -46,6 +47,7 @@ const vuetify = new Vuetify({
"en-GB": en,
"es-ES": es,
"fr-FR": fr,
"hu-HU": hu,
"it-IT": it,
"nl-NL": nl,
"pl-PL": pl,

View File

@ -21,6 +21,10 @@ const state = {
name: "Français (French)",
value: "fr-FR",
},
{
name: "Magyar (Hungarian)",
value: "hu-HU",
},
{
name: "Italiano (Italian)",
value: "it-IT",