mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-05-26 03:30:26 -04:00
fix: Inconsistent "from an image" vs "from images" translation (#7642)
This commit is contained in:
@@ -205,7 +205,7 @@ const createLinks = computed(() => [
|
|||||||
insertDivider: false,
|
insertDivider: false,
|
||||||
icon: $globals.icons.fileImage,
|
icon: $globals.icons.fileImage,
|
||||||
title: i18n.t("recipe.create-from-images"),
|
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`,
|
to: `/g/${groupSlug.value}/r/create/image`,
|
||||||
restricted: true,
|
restricted: true,
|
||||||
hide: !showImageImport.value,
|
hide: !showImageImport.value,
|
||||||
|
|||||||
@@ -628,7 +628,7 @@
|
|||||||
"create-recipe-description": "Create a new recipe from scratch.",
|
"create-recipe-description": "Create a new recipe from scratch.",
|
||||||
"create-recipes": "Create Recipes",
|
"create-recipes": "Create Recipes",
|
||||||
"import-with-zip": "Import with .zip",
|
"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.",
|
"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.",
|
"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",
|
"create-from-images": "Create from Images",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<v-form ref="domUrlForm" @submit.prevent="createRecipe">
|
<v-form ref="domUrlForm" @submit.prevent="createRecipe">
|
||||||
<div>
|
<div>
|
||||||
<v-card-title class="headline">
|
<v-card-title class="headline">
|
||||||
{{ $t("recipe.create-recipe-from-an-image") }}
|
{{ $t("recipe.create-recipe-from-images") }}
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<p>{{ $t("recipe.create-recipe-from-an-image-description") }}</p>
|
<p>{{ $t("recipe.create-recipe-from-an-image-description") }}</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user