diff --git a/frontend/src/components/UI/TheRecipeFab.vue b/frontend/src/components/UI/TheRecipeFab.vue
index 05e603df..e9e6cb46 100644
--- a/frontend/src/components/UI/TheRecipeFab.vue
+++ b/frontend/src/components/UI/TheRecipeFab.vue
@@ -44,13 +44,13 @@
target="_blank"
rel="noreferrer nofollow"
>
- Google ld+json Info
+ {{ $t('new-recipe.google-ld-json-info') }}
- GitHub Issues
+ {{ $t('new-recipe.github-issues') }}
- Recipe Markup Specification
+ {{ $t('new-recipe.recipe-markup-specification') }}
@@ -61,7 +61,7 @@
@click="addRecipe = false"
>
{{ $globals.icons.externalLink }}
- View Scraped Data
+ {{ $t('new-recipe.view-scraped-data') }}
@@ -85,7 +85,7 @@
- {{ $t("group.group") }}: {{ user.group }}
+ {{ $t("group.group-with-value", { groupID: user.group }) }}
diff --git a/frontend/src/plugins/vuetify.js b/frontend/src/plugins/vuetify.js
index b43f388f..85c19acd 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 it from "vuetify/es5/locale/it";
import nl from "vuetify/es5/locale/nl";
import pl from "vuetify/es5/locale/pl";
import sv from "vuetify/es5/locale/sv";
@@ -44,6 +45,7 @@ const vuetify = new Vuetify({
"en-US": en,
"es-ES": es,
"fr-FR": fr,
+ "it-IT": it,
"nl-NL": nl,
"pl-PL": pl,
"sv-SE": sv,
diff --git a/frontend/src/store/modules/language.js b/frontend/src/store/modules/language.js
index d1416609..8928bd65 100644
--- a/frontend/src/store/modules/language.js
+++ b/frontend/src/store/modules/language.js
@@ -17,6 +17,10 @@ const state = {
name: "Français (French)",
value: "fr-FR",
},
+ {
+ name: "Italiano (Italian)",
+ value: "it-IT",
+ },
{
name: "Nederlands (Dutch)",
value: "nl-NL",