mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
Translate recipe settings
This commit is contained in:
parent
c0bd812545
commit
42a6e6394d
2 changed files with 18 additions and 9 deletions
|
@ -12,7 +12,7 @@
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title class="py-2">
|
<v-card-title class="py-2">
|
||||||
<div>
|
<div>
|
||||||
Recipe Settings
|
{{$t('recipe.recipe-settings')}}
|
||||||
</div>
|
</div>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-divider class="mx-2"></v-divider>
|
<v-divider class="mx-2"></v-divider>
|
||||||
|
@ -39,14 +39,18 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
value: Object,
|
value: Object,
|
||||||
},
|
},
|
||||||
data: () => ({
|
|
||||||
labels: {
|
computed: {
|
||||||
public: "Public Recipe",
|
labels() {
|
||||||
showNutrition: "Show Nutrition Values",
|
return {
|
||||||
showAssets: "Show Assets",
|
public: this.$t('recipe.public-recipe'),
|
||||||
landscapeView: "Landscape View (Coming Soon)",
|
showNutrition: this.$t('recipe.show-nutrition-values'),
|
||||||
},
|
showAssets: this.$t('recipe.show-assets'),
|
||||||
}),
|
landscapeView: this.$t('recipe.landscape-view-coming-soon'),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
methods: {},
|
methods: {},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -180,6 +180,7 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
"new-asset": "New Asset",
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
|
@ -193,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue