| {{ r.recipe_mealplan.name }} |
- {{ r.recipe_mealplan.recipe_name }} |
+ {{ r.recipe_mealplan.recipe_name }} |
- {{ $t("New Entry") }}
+ {{ $t("New_Entry") }}
@@ -781,7 +781,7 @@ import GenericMultiselect from "@/components/GenericMultiselect"
import LookupInput from "@/components/Modals/LookupInput"
import ShoppingModal from "@/components/Modals/ShoppingModal"
-import {ApiMixin, getUserPreference, StandardToasts, makeToast} from "@/utils/utils"
+import {ApiMixin, getUserPreference, StandardToasts, makeToast, ResolveUrlMixin} from "@/utils/utils"
import {ApiApiFactory} from "@/utils/openapi/api"
Vue.use(BootstrapVue)
@@ -790,7 +790,7 @@ let SETTINGS_COOKIE_NAME = "shopping_settings"
export default {
name: "ShoppingListView",
- mixins: [ApiMixin],
+ mixins: [ApiMixin,ResolveUrlMixin],
components: {
ContextMenu,
ContextMenuItem,
diff --git a/vue/src/locales/en.json b/vue/src/locales/en.json
index c52fbb3f7..845bd9abb 100644
--- a/vue/src/locales/en.json
+++ b/vue/src/locales/en.json
@@ -202,6 +202,7 @@
"Starting_Day": "Starting day of the week",
"Meal_Types": "Meal types",
"Meal_Type": "Meal type",
+ "New_Entry": "New Entry",
"Clone": "Clone",
"Drag_Here_To_Delete": "Drag here to delete",
"Meal_Type_Required": "Meal type is required",
|