+ {{ $t("empty_list") }}
@@ -338,9 +348,11 @@
:preserve-search="true"
:internal-search="false"
:limit="options_limit"
- placeholder="Select Unit"
- tag-placeholder="Create"
- select-label="Select"
+ :placeholder="$t('select_unit')"
+ :tag-placeholder="$t('Create')"
+ :select-label="$t('Select')"
+ :selected-label="$t('Selected')"
+ :deselect-label="$t('remove_selection')"
:taggable="true"
@tag="addUnitType"
:id="`unit_${step_index}_${index}`"
@@ -350,6 +362,7 @@
:loading="units_loading"
@search-change="searchUnits"
>
+ {{ $t("empty_list") }}
@@ -365,9 +378,11 @@
:preserve-search="true"
:internal-search="false"
:limit="options_limit"
- placeholder="Select Food"
- tag-placeholder="Create"
- select-label="Select"
+ :placeholder="$t('select_food')"
+ :tag-placeholder="$t('Create')"
+ :select-label="$t('Select')"
+ :selected-label="$t('Selected')"
+ :deselect-label="$t('remove_selection')"
:taggable="true"
@tag="addFoodType"
:id="`ingredient_${step_index}_${index}`"
@@ -377,6 +392,7 @@
:loading="foods_loading"
@search-change="searchFoods"
>
+ {{ $t("empty_list") }}
diff --git a/vue/src/locales/de.json b/vue/src/locales/de.json
index 5f27dab5d..12f8cf8c1 100644
--- a/vue/src/locales/de.json
+++ b/vue/src/locales/de.json
@@ -335,5 +335,14 @@
"sort_by": "Sortiere nach",
"Random Recipes": "Zufällige Rezepte",
"recipe_filter": "Rezept-Filter",
- "parameter_count": "Parameter {count}"
+ "parameter_count": "Parameter {count}",
+ "select_keyword": "Stichwort auswählen",
+ "add_keyword": "Stichwort hinzufügen",
+ "select_file": "Datei auswählen",
+ "select_recipe": "Rezept auswählen",
+ "select_unit": "Einheit wählen",
+ "select_food": "Zutat auswählen",
+ "remove_selection": "Abwählen",
+ "empty_list": "Liste ist leer.",
+ "Select": "Auswählen"
}
diff --git a/vue/src/locales/en.json b/vue/src/locales/en.json
index e622f0a9d..41f51305c 100644
--- a/vue/src/locales/en.json
+++ b/vue/src/locales/en.json
@@ -361,5 +361,14 @@
"Internal": "Internal",
"Units": "Units",
"Random Recipes": "Random Recipes",
- "parameter_count": "Parameter {count}"
+ "parameter_count": "Parameter {count}",
+ "select_keyword": "Select Keyword",
+ "add_keyword": "Add Keyword",
+ "select_file": "Select File",
+ "select_recipe": "Select Recipe",
+ "select_unit": "Select Unit",
+ "select_food": "Select Food",
+ "remove_selection": "Deselect",
+ "empty_list": "List is empty.",
+ "Select": "Select"
}