diff --git a/vue/src/apps/ImportView/ImportView.vue b/vue/src/apps/ImportView/ImportView.vue index 28993fae..c76c1f19 100644 --- a/vue/src/apps/ImportView/ImportView.vue +++ b/vue/src/apps/ImportView/ImportView.vue @@ -218,8 +218,7 @@ :href="resolveDjangoUrl('view_recipe',r.id)">{{ r.name }} - Imported - + {{ $t('Imported') }} @@ -230,8 +229,7 @@
{{ u }} - Failed - + {{ $t('Failure') }}
diff --git a/vue/src/apps/IngredientEditorView/IngredientEditorView.vue b/vue/src/apps/IngredientEditorView/IngredientEditorView.vue index 35b1c5ba..3bfdeaa4 100644 --- a/vue/src/apps/IngredientEditorView/IngredientEditorView.vue +++ b/vue/src/apps/IngredientEditorView/IngredientEditorView.vue @@ -1,23 +1,36 @@ @@ -153,7 +195,7 @@ Vue.use(BootstrapVue) export default { name: "IngredientEditorView", mixins: [ApiMixin, ResolveUrlMixin], - components: {BetaWarning, LoadingSpinner, GenericMultiselect, GenericModalForm}, + components: {LoadingSpinner, GenericMultiselect, GenericModalForm}, data() { return { ingredients: [], @@ -202,7 +244,7 @@ export default { if (this.unit !== null) { params.query.unit = this.unit.id } - apiClient.listIngredients(this.current_page, this.page_size,params).then(result => { + apiClient.listIngredients(this.current_page, this.page_size, params).then(result => { this.ingredients = result.data.results this.total_object_count = result.data.count this.loading = false diff --git a/vue/src/locales/en.json b/vue/src/locales/en.json index 98eaf3a9..d2340586 100644 --- a/vue/src/locales/en.json +++ b/vue/src/locales/en.json @@ -368,6 +368,7 @@ "no_pinned_recipes": "You have no pinned recipes!", "Planned": "Planned", "Pinned": "Pinned", + "Imported": "Imported", "Quick actions": "Quick actions", "Ratings": "Ratings", "Internal": "Internal",