From c52a4e10c9c2dfc46669677dda7eb28672d75769 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Wed, 20 May 2026 13:45:42 -0500 Subject: [PATCH] fix: Inconsistent "from an image" vs "from images" translation (#7642) --- frontend/app/components/Layout/DefaultLayout.vue | 2 +- frontend/app/lang/messages/en-US.json | 2 +- frontend/app/pages/g/[groupSlug]/r/create/image.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Layout/DefaultLayout.vue b/frontend/app/components/Layout/DefaultLayout.vue index 6a5ce8bc6..570c22ca4 100644 --- a/frontend/app/components/Layout/DefaultLayout.vue +++ b/frontend/app/components/Layout/DefaultLayout.vue @@ -205,7 +205,7 @@ const createLinks = computed(() => [ insertDivider: false, icon: $globals.icons.fileImage, title: i18n.t("recipe.create-from-images"), - subtitle: i18n.t("recipe.create-recipe-from-an-image"), + subtitle: i18n.t("recipe.create-recipe-from-images"), to: `/g/${groupSlug.value}/r/create/image`, restricted: true, hide: !showImageImport.value, diff --git a/frontend/app/lang/messages/en-US.json b/frontend/app/lang/messages/en-US.json index 82de408c6..039d8b51c 100644 --- a/frontend/app/lang/messages/en-US.json +++ b/frontend/app/lang/messages/en-US.json @@ -628,7 +628,7 @@ "create-recipe-description": "Create a new recipe from scratch.", "create-recipes": "Create Recipes", "import-with-zip": "Import with .zip", - "create-recipe-from-an-image": "Create Recipe from Images", + "create-recipe-from-images": "Create Recipe from Images", "create-recipe-from-an-image-description": "Create a recipe by uploading images of the recipe text. Mealie will attempt to extract the text from the images using AI and create a new recipe from it.", "crop-and-rotate-the-image": "Crop and rotate the image so that only the text is visible, and it's in the correct orientation.", "create-from-images": "Create from Images", diff --git a/frontend/app/pages/g/[groupSlug]/r/create/image.vue b/frontend/app/pages/g/[groupSlug]/r/create/image.vue index e4b31621b..39f4ade6a 100644 --- a/frontend/app/pages/g/[groupSlug]/r/create/image.vue +++ b/frontend/app/pages/g/[groupSlug]/r/create/image.vue @@ -3,7 +3,7 @@
- {{ $t("recipe.create-recipe-from-an-image") }} + {{ $t("recipe.create-recipe-from-images") }}

{{ $t("recipe.create-recipe-from-an-image-description") }}