From 98b0f8779b8cd028ddab272d9ac9215e315ef192 Mon Sep 17 00:00:00 2001 From: bartfailt <49832897+bartfailt@users.noreply.github.com> Date: Fri, 20 Aug 2021 06:14:36 +0200 Subject: [PATCH] Add support for the Hungarian language (hu-HU) (#639) --- frontend/src/plugins/vuetify.js | 2 ++ frontend/src/store/modules/language.js | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/frontend/src/plugins/vuetify.js b/frontend/src/plugins/vuetify.js index 6f54f8ad73ee..cfd7047808e5 100644 --- a/frontend/src/plugins/vuetify.js +++ b/frontend/src/plugins/vuetify.js @@ -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, diff --git a/frontend/src/store/modules/language.js b/frontend/src/store/modules/language.js index c9d4ea6c4815..2dbd99ff05e2 100644 --- a/frontend/src/store/modules/language.js +++ b/frontend/src/store/modules/language.js @@ -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",