mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
recipe view as model chain and ingredient checkbox
This commit is contained in:
@@ -808,6 +808,7 @@ class IngredientSimpleSerializer(WritableNestedModelSerializer):
|
|||||||
used_in_recipes = serializers.SerializerMethodField('get_used_in_recipes')
|
used_in_recipes = serializers.SerializerMethodField('get_used_in_recipes')
|
||||||
amount = CustomDecimalField()
|
amount = CustomDecimalField()
|
||||||
conversions = serializers.SerializerMethodField('get_conversions')
|
conversions = serializers.SerializerMethodField('get_conversions')
|
||||||
|
checked = serializers.BooleanField(read_only=True, default=False, help_text='Just laziness to have a checked field on the frontend API client')
|
||||||
|
|
||||||
@extend_schema_field(list)
|
@extend_schema_field(list)
|
||||||
def get_used_in_recipes(self, obj):
|
def get_used_in_recipes(self, obj):
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ const target = ref({} as Food)
|
|||||||
|
|
||||||
function mergeModel() {
|
function mergeModel() {
|
||||||
let api = new ApiApi()
|
let api = new ApiApi()
|
||||||
if (target != null) {
|
if (target.value != null) {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
api.apiFoodMergeUpdate({id: props.sourceId!, food: {} as Food, target: target.value.id!}).then(r => {
|
api.apiFoodMergeUpdate({id: props.sourceId!, food: {} as Food, target: target.value.id!}).then(r => {
|
||||||
useMessageStore().addPreparedMessage(PreparedMessage.UPDATE_SUCCESS)
|
useMessageStore().addPreparedMessage(PreparedMessage.UPDATE_SUCCESS)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-table density="compact" v-if="props.ingredients.length > 0">
|
<v-table density="compact" v-if="ingredients.length > 0">
|
||||||
|
|
||||||
<tbody>
|
<tbody>
|
||||||
<ingredients-table-row v-for="i in props.ingredients" :ingredient="i" :key="i.id" :show-notes="props.showNotes"
|
<ingredients-table-row v-for="(ing, i) in ingredients" v-model="ingredients[i]" :key="ing.id" :show-notes="props.showNotes"
|
||||||
:ingredient-factor="ingredientFactor"></ingredients-table-row>
|
:ingredient-factor="ingredientFactor"></ingredients-table-row>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
||||||
@@ -15,11 +15,9 @@ import {Ingredient} from "@/openapi";
|
|||||||
import IngredientsTableRow from "@/components/display/IngredientsTableRow.vue";
|
import IngredientsTableRow from "@/components/display/IngredientsTableRow.vue";
|
||||||
import draggable from 'vuedraggable'
|
import draggable from 'vuedraggable'
|
||||||
|
|
||||||
|
const ingredients = defineModel<Ingredient[]>({required: true})
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
ingredients: {
|
|
||||||
type: Array as PropType<Array<Ingredient>>,
|
|
||||||
default: [],
|
|
||||||
},
|
|
||||||
showNotes: {
|
showNotes: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true
|
default: true
|
||||||
@@ -33,7 +31,7 @@ const props = defineProps({
|
|||||||
const mutable_ingredients = ref([] as Ingredient[])
|
const mutable_ingredients = ref([] as Ingredient[])
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
mutable_ingredients.value = props.ingredients
|
mutable_ingredients.value = ingredients.value
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
<template>
|
<template>
|
||||||
<tr>
|
<tr>
|
||||||
<template v-if="props.ingredient.isHeader">
|
<template v-if="ingredient.isHeader">
|
||||||
<td colspan="4"><b>{{ props.ingredient.note }}</b></td>
|
<td colspan="4"><b>{{ ingredient.note }}</b></td>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<td>{{ props.ingredient.amount * props.ingredientFactor }}</td>
|
<td><v-checkbox-btn v-model="ingredient.checked" color="success"></v-checkbox-btn></td>
|
||||||
<td><span v-if="props.ingredient.unit != null">{{ props.ingredient.unit.name }}</span></td>
|
<td>{{ ingredient.amount * props.ingredientFactor }}</td>
|
||||||
<td><span v-if="props.ingredient.food != null">{{ props.ingredient.food.name }}</span></td>
|
<td><span v-if="ingredient.unit != null">{{ ingredient.unit.name }}</span></td>
|
||||||
|
<td><span v-if="ingredient.food != null">{{ ingredient.food.name }}</span></td>
|
||||||
<td v-if="props.showNotes">
|
<td v-if="props.showNotes">
|
||||||
<v-icon class="far fa-comment float-right" v-if="props.ingredient.note != '' && props.ingredient.note != undefined" @click="showTooltip = !showTooltip">
|
<v-icon class="far fa-comment float-right" v-if="ingredient.note != '' && ingredient.note != undefined" @click="showTooltip = !showTooltip">
|
||||||
<v-tooltip v-model="showTooltip" activator="parent" location="start">{{ props.ingredient.note }}</v-tooltip>
|
<v-tooltip v-model="showTooltip" activator="parent" location="start">{{ ingredient.note }}</v-tooltip>
|
||||||
</v-icon>
|
</v-icon>
|
||||||
</td>
|
</td>
|
||||||
</template>
|
</template>
|
||||||
@@ -21,11 +22,9 @@
|
|||||||
import {PropType, ref} from 'vue'
|
import {PropType, ref} from 'vue'
|
||||||
import {Ingredient} from "@/openapi";
|
import {Ingredient} from "@/openapi";
|
||||||
|
|
||||||
|
const ingredient = defineModel<Ingredient>({required: true})
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
ingredient: {
|
|
||||||
type: {} as PropType<Ingredient>,
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
showNotes: {
|
showNotes: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true
|
default: true
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<template v-if="props.recipe.name == undefined">
|
<template v-if="recipe.name == undefined">
|
||||||
<v-skeleton-loader type="card" class="mt-md-4 rounded-0"></v-skeleton-loader>
|
<v-skeleton-loader type="card" class="mt-md-4 rounded-0"></v-skeleton-loader>
|
||||||
<v-skeleton-loader type="article" class="mt-2"></v-skeleton-loader>
|
<v-skeleton-loader type="article" class="mt-2"></v-skeleton-loader>
|
||||||
<v-skeleton-loader type="article" class="mt-2"></v-skeleton-loader>
|
<v-skeleton-loader type="article" class="mt-2"></v-skeleton-loader>
|
||||||
@@ -8,17 +8,17 @@
|
|||||||
<v-skeleton-loader type="list-item-avatar-three-line"></v-skeleton-loader>
|
<v-skeleton-loader type="list-item-avatar-three-line"></v-skeleton-loader>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="props.recipe.name != undefined">
|
<template v-if="recipe.name != undefined">
|
||||||
|
|
||||||
<v-card class="mt-md-4 rounded-0">
|
<v-card class="mt-md-4 rounded-0">
|
||||||
<recipe-image
|
<recipe-image
|
||||||
max-height="25vh"
|
max-height="25vh"
|
||||||
:recipe="props.recipe"
|
:recipe="recipe"
|
||||||
v-if="recipe.internal"
|
v-if="recipe.internal"
|
||||||
>
|
>
|
||||||
<template #overlay>
|
<template #overlay>
|
||||||
<v-chip class="ms-2" color="primary" variant="flat" size="x-small">by {{ props.recipe.createdBy.displayName }}</v-chip>
|
<v-chip class="ms-2" color="primary" variant="flat" size="x-small">by {{ recipe.createdBy.displayName }}</v-chip>
|
||||||
<keywords-component variant="flat" class="ms-1 mb-2" :keywords="props.recipe.keywords"></keywords-component>
|
<keywords-component variant="flat" class="ms-1 mb-2" :keywords="recipe.keywords"></keywords-component>
|
||||||
</template>
|
</template>
|
||||||
</recipe-image>
|
</recipe-image>
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
<v-card>
|
<v-card>
|
||||||
<v-sheet class="d-flex align-center">
|
<v-sheet class="d-flex align-center">
|
||||||
<span class="ps-2 text-h5 flex-grow-1 pa-1" :class="{'text-truncate': !showFullRecipeName}" @click="showFullRecipeName = !showFullRecipeName">
|
<span class="ps-2 text-h5 flex-grow-1 pa-1" :class="{'text-truncate': !showFullRecipeName}" @click="showFullRecipeName = !showFullRecipeName">
|
||||||
{{ props.recipe.name }}
|
{{ recipe.name }}
|
||||||
</span>
|
</span>
|
||||||
<recipe-context-menu :recipe="recipe"></recipe-context-menu>
|
<recipe-context-menu :recipe="recipe"></recipe-context-menu>
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
@@ -42,18 +42,18 @@
|
|||||||
<v-container>
|
<v-container>
|
||||||
<v-row class="text-center text-body-2">
|
<v-row class="text-center text-body-2">
|
||||||
<v-col class="pt-1 pb-1">
|
<v-col class="pt-1 pb-1">
|
||||||
<i class="fas fa-cogs fa-fw mr-1"></i> {{ props.recipe.workingTime }} min<br/>
|
<i class="fas fa-cogs fa-fw mr-1"></i> {{ recipe.workingTime }} min<br/>
|
||||||
<div class="text-grey">{{ $t('WorkingTime') }}</div>
|
<div class="text-grey">{{ $t('WorkingTime') }}</div>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col class="pt-1 pb-1">
|
<v-col class="pt-1 pb-1">
|
||||||
<div><i class="fas fa-hourglass-half fa-fw mr-1"></i> {{ props.recipe.waitingTime }} min</div>
|
<div><i class="fas fa-hourglass-half fa-fw mr-1"></i> {{ recipe.waitingTime }} min</div>
|
||||||
<div class="text-grey">{{ $t('WaitingTime') }}</div>
|
<div class="text-grey">{{ $t('WaitingTime') }}</div>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col class="pt-1 pb-1">
|
<v-col class="pt-1 pb-1">
|
||||||
|
|
||||||
<div class="cursor-pointer">
|
<div class="cursor-pointer">
|
||||||
<i class="fas fa-sort-numeric-up fa-fw mr-1"></i> {{ servings }} <br/>
|
<i class="fas fa-sort-numeric-up fa-fw mr-1"></i> {{ servings }} <br/>
|
||||||
<div class="text-grey"><span v-if="props.recipe?.servingsText">{{ props.recipe.servingsText }}</span><span v-else>{{ $t('Servings') }}</span></div>
|
<div class="text-grey"><span v-if="recipe.servingsText">{{ recipe.servingsText }}</span><span v-else>{{ $t('Servings') }}</span></div>
|
||||||
<number-scaler-dialog :number="servings" @confirm="(s: number) => {servings = s}" title="Servings">
|
<number-scaler-dialog :number="servings" @confirm="(s: number) => {servings = s}" title="Servings">
|
||||||
</number-scaler-dialog>
|
</number-scaler-dialog>
|
||||||
</div>
|
</div>
|
||||||
@@ -64,12 +64,12 @@
|
|||||||
</v-container>
|
</v-container>
|
||||||
</v-card>
|
</v-card>
|
||||||
|
|
||||||
<v-card class="mt-1" v-if="props.recipe.steps.length > 1">
|
<v-card class="mt-1" v-if="recipe.steps.length > 1">
|
||||||
<steps-overview :steps="props.recipe.steps" :ingredient-factor="ingredientFactor"></steps-overview>
|
<steps-overview :steps="recipe.steps" :ingredient-factor="ingredientFactor"></steps-overview>
|
||||||
</v-card>
|
</v-card>
|
||||||
|
|
||||||
<v-card class="mt-1" v-for="(step, index) in props.recipe.steps" :key="step.id">
|
<v-card class="mt-1" v-for="(step, index) in recipe.steps" :key="step.id">
|
||||||
<step :step="step" :step-number="index+1" :ingredientFactor="ingredientFactor"></step>
|
<step v-model="recipe.steps[index]" :step-number="index+1" :ingredientFactor="ingredientFactor"></step>
|
||||||
</v-card>
|
</v-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -94,23 +94,22 @@ import PdfViewer from "../../../../vue/src/components/PdfViewer.vue";
|
|||||||
import ImageViewer from "../../../../vue/src/components/ImageViewer.vue";
|
import ImageViewer from "../../../../vue/src/components/ImageViewer.vue";
|
||||||
import ExternalRecipeViewer from "@/components/display/ExternalRecipeViewer.vue";
|
import ExternalRecipeViewer from "@/components/display/ExternalRecipeViewer.vue";
|
||||||
|
|
||||||
|
const recipe = defineModel<Recipe>({required: true})
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
recipe: {
|
|
||||||
type: Object as PropType<Recipe>,
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const servings = ref(1)
|
const servings = ref(1)
|
||||||
const showFullRecipeName = ref(false)
|
const showFullRecipeName = ref(false)
|
||||||
|
|
||||||
const ingredientFactor = computed(() => {
|
const ingredientFactor = computed(() => {
|
||||||
return servings.value / ((props.recipe.servings != undefined) ? props.recipe.servings : 1)
|
return servings.value / ((recipe.value.servings != undefined) ? recipe.value.servings : 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
watch(() => props.recipe.servings, () => {
|
watch(() => recipe.value.servings, () => {
|
||||||
if (props.recipe.servings) {
|
if (recipe.value.servings) {
|
||||||
servings.value = props.recipe.servings
|
servings.value = recipe.value.servings
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-col><span v-if="props.step.name">{{ props.step.name }}</span><span v-else>{{ $t('Step') }} {{ props.stepNumber }}</span></v-col>
|
<v-col><span v-if="step.name">{{ step.name }}</span><span v-else>{{ $t('Step') }} {{ props.stepNumber }}</span></v-col>
|
||||||
<v-col class="text-right">
|
<v-col class="text-right">
|
||||||
<v-btn-group density="compact" variant="tonal">
|
<v-btn-group density="compact" variant="tonal">
|
||||||
<v-btn size="small" color="info" v-if="props.step.time != undefined && props.step.time > 0" @click="timerRunning = true"><i
|
<v-btn size="small" color="info" v-if="step.time != undefined && step.time > 0" @click="timerRunning = true"><i
|
||||||
class="fas fa-stopwatch mr-1 fa-fw"></i> {{ props.step.time }}
|
class="fas fa-stopwatch mr-1 fa-fw"></i> {{ step.time }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn size="small" color="success" v-if="hasDetails" @click="stepChecked = !stepChecked"><i class="fas fa-fw"
|
<v-btn size="small" color="success" v-if="hasDetails" @click="stepChecked = !stepChecked"><i class="fas fa-fw"
|
||||||
:class="{'fa-check': !stepChecked, 'fa-times': stepChecked}"></i>
|
:class="{'fa-check': !stepChecked, 'fa-times': stepChecked}"></i>
|
||||||
@@ -16,14 +16,14 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<template v-if="!stepChecked">
|
<template v-if="!stepChecked">
|
||||||
<timer :seconds="props.step.time != undefined ? props.step.time*60 : 0" @stop="timerRunning = false" v-if="timerRunning"></timer>
|
<timer :seconds="step.time != undefined ? step.time*60 : 0" @stop="timerRunning = false" v-if="timerRunning"></timer>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-col cols="12" md="6" v-if="props.step?.ingredients.length > 0">
|
<v-col cols="12" md="6" v-if="step.ingredients.length > 0">
|
||||||
<ingredients-table :ingredients="props.step.ingredients" :ingredient-factor="ingredientFactor"></ingredients-table>
|
<ingredients-table v-model="step.ingredients" :ingredient-factor="ingredientFactor"></ingredients-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" md="6">
|
<v-col cols="12" md="6">
|
||||||
<instructions :instructions_html="props.step.instructionsMarkdown" :ingredient_factor="ingredientFactor"></instructions>
|
<instructions :instructions_html="step.instructionsMarkdown" :ingredient_factor="ingredientFactor"></instructions>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
@@ -41,11 +41,9 @@ import {Step} from "@/openapi";
|
|||||||
import Instructions from "@/components/display/Instructions.vue";
|
import Instructions from "@/components/display/Instructions.vue";
|
||||||
import Timer from "@/components/display/Timer.vue";
|
import Timer from "@/components/display/Timer.vue";
|
||||||
|
|
||||||
|
const step = defineModel<Step>({required: true})
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
step: {
|
|
||||||
type: {} as PropType<Step>,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
stepNumber: {
|
stepNumber: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: false,
|
required: false,
|
||||||
@@ -61,7 +59,7 @@ const timerRunning = ref(false)
|
|||||||
const stepChecked = ref(false)
|
const stepChecked = ref(false)
|
||||||
|
|
||||||
const hasDetails = computed(() => {
|
const hasDetails = computed(() => {
|
||||||
return props.step.ingredients.length > 0 || (props.step.instruction != undefined && props.step.instruction.length > 0) || props.step.stepRecipeData != undefined || props.step.file != undefined
|
return step.value.ingredients.length > 0 || (step.value.instruction != undefined && step.value.instruction.length > 0) || step.value.stepRecipeData != undefined || step.value.file != undefined
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-expansion-panels>
|
<v-expansion-panels>
|
||||||
<v-expansion-panel>
|
<v-expansion-panel>
|
||||||
<v-expansion-panel-title><i class="far fa-list-alt fa-fw me-2"></i> Steps Overview</v-expansion-panel-title>
|
<v-expansion-panel-title><i class="far fa-list-alt fa-fw me-2"></i> {{$t('StepsOverview')}}</v-expansion-panel-title>
|
||||||
<v-expansion-panel-text>
|
<v-expansion-panel-text>
|
||||||
<v-container>
|
<v-container>
|
||||||
<v-row v-for="(s, i) in props.steps">
|
<v-row v-for="(s, i) in props.steps">
|
||||||
<v-col class="pa-1">
|
<v-col class="pa-1">
|
||||||
<b v-if="s.showAsHeader">{{ i + 1 }}. {{ s.name }} </b>
|
<b v-if="s.showAsHeader">{{ i + 1 }}. {{ s.name }} </b>
|
||||||
<ingredients-table :ingredients="s.ingredients" :ingredient-factor="props.ingredientFactor"></ingredients-table>
|
<ingredients-table v-model="s.ingredients" :ingredient-factor="props.ingredientFactor"></ingredients-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<v-progress-linear :model-value="timerProgress" color="primary" height="5"></v-progress-linear>
|
<v-progress-linear :model-value="timerProgress" color="primary" height="5"></v-progress-linear>
|
||||||
<v-alert :color="timerColor" class="rounded-0" variant="tonal">
|
<v-alert :color="timerColor" class="rounded-0" variant="tonal">
|
||||||
<v-alert-title><i class="fas fa-stopwatch mr-1"></i> {{ Duration.fromMillis(durationSeconds * 1000).toFormat('hh:mm:ss') }}</v-alert-title>
|
<v-alert-title><i class="fas fa-stopwatch mr-1"></i> {{ Duration.fromMillis(durationSeconds * 1000).toFormat('hh:mm:ss') }}</v-alert-title>
|
||||||
Finished at {{ DateTime.now().plus({'seconds': durationSeconds}).toLocaleString(DateTime.TIME_SIMPLE) }}
|
{{$t('FinishedAt')}} {{ DateTime.now().plus({'seconds': durationSeconds}).toLocaleString(DateTime.TIME_SIMPLE) }}
|
||||||
<template #close>
|
<template #close>
|
||||||
<v-btn-group divided>
|
<v-btn-group divided>
|
||||||
<v-btn width="40" @click="changeTimer(-60)"><i class="fas fa-minus"></i>1</v-btn>
|
<v-btn width="40" @click="changeTimer(-60)"><i class="fas fa-minus"></i>1</v-btn>
|
||||||
|
|||||||
@@ -107,6 +107,7 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "",
|
"Food": "",
|
||||||
"FoodInherit": "",
|
"FoodInherit": "",
|
||||||
"FoodNotOnHand": "",
|
"FoodNotOnHand": "",
|
||||||
@@ -308,6 +309,7 @@
|
|||||||
"Step_Type": "",
|
"Step_Type": "",
|
||||||
"Step_start_time": "",
|
"Step_start_time": "",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "",
|
"Success": "",
|
||||||
|
|||||||
@@ -104,6 +104,7 @@
|
|||||||
"Fats": "Мазнини",
|
"Fats": "Мазнини",
|
||||||
"File": "Файл",
|
"File": "Файл",
|
||||||
"Files": "Файлове",
|
"Files": "Файлове",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Храна",
|
"Food": "Храна",
|
||||||
"FoodInherit": "Хранителни наследствени полета",
|
"FoodInherit": "Хранителни наследствени полета",
|
||||||
"FoodNotOnHand": "Нямате {храна} под ръка.",
|
"FoodNotOnHand": "Нямате {храна} под ръка.",
|
||||||
@@ -301,6 +302,7 @@
|
|||||||
"Step_Type": "Стъпка Тип",
|
"Step_Type": "Стъпка Тип",
|
||||||
"Step_start_time": "Стъпка Начално време",
|
"Step_start_time": "Стъпка Начално време",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"SubstituteOnHand": "Имате заместител под ръка.",
|
"SubstituteOnHand": "Имате заместител под ръка.",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "Успешно",
|
"Success": "Успешно",
|
||||||
|
|||||||
@@ -145,6 +145,7 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "",
|
"First_name": "",
|
||||||
"Food": "",
|
"Food": "",
|
||||||
"FoodInherit": "",
|
"FoodInherit": "",
|
||||||
@@ -388,6 +389,7 @@
|
|||||||
"Step_Type": "Tipus de pas",
|
"Step_Type": "Tipus de pas",
|
||||||
"Step_start_time": "Hora d'inici",
|
"Step_start_time": "Hora d'inici",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "",
|
"Sticky_Nav": "",
|
||||||
"Sticky_Nav_Help": "",
|
"Sticky_Nav_Help": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
|
|||||||
@@ -145,6 +145,7 @@
|
|||||||
"Fats": "Tuky",
|
"Fats": "Tuky",
|
||||||
"File": "Soubor",
|
"File": "Soubor",
|
||||||
"Files": "Soubory",
|
"Files": "Soubory",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Jméno",
|
"First_name": "Jméno",
|
||||||
"Food": "Potravina",
|
"Food": "Potravina",
|
||||||
"FoodInherit": "Propisovatelná pole potraviny",
|
"FoodInherit": "Propisovatelná pole potraviny",
|
||||||
@@ -384,6 +385,7 @@
|
|||||||
"Step_Type": "Druh kroku",
|
"Step_Type": "Druh kroku",
|
||||||
"Step_start_time": "Nastav počáteční čas",
|
"Step_start_time": "Nastav počáteční čas",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Připnout navigační panel",
|
"Sticky_Nav": "Připnout navigační panel",
|
||||||
"Sticky_Nav_Help": "Vždy zobrazit navigační panel na vrchu stránky.",
|
"Sticky_Nav_Help": "Vždy zobrazit navigační panel na vrchu stránky.",
|
||||||
"SubstituteOnHand": "Máte k dispozici náhradu.",
|
"SubstituteOnHand": "Máte k dispozici náhradu.",
|
||||||
|
|||||||
@@ -133,6 +133,7 @@
|
|||||||
"Fats": "Fedtstoffer",
|
"Fats": "Fedtstoffer",
|
||||||
"File": "Fil",
|
"File": "Fil",
|
||||||
"Files": "Filer",
|
"Files": "Filer",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Fornavn",
|
"First_name": "Fornavn",
|
||||||
"Food": "Mad",
|
"Food": "Mad",
|
||||||
"FoodInherit": "Nedarvelige mad felter",
|
"FoodInherit": "Nedarvelige mad felter",
|
||||||
@@ -362,6 +363,7 @@
|
|||||||
"Step_Type": "Trin type",
|
"Step_Type": "Trin type",
|
||||||
"Step_start_time": "Trin starttid",
|
"Step_start_time": "Trin starttid",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Fastlåst navigation",
|
"Sticky_Nav": "Fastlåst navigation",
|
||||||
"Sticky_Nav_Help": "Vis altid navigationsmenuen øverst på skærmen.",
|
"Sticky_Nav_Help": "Vis altid navigationsmenuen øverst på skærmen.",
|
||||||
"SubstituteOnHand": "Du har erstatninger tilgængeligt.",
|
"SubstituteOnHand": "Du har erstatninger tilgængeligt.",
|
||||||
|
|||||||
@@ -147,6 +147,7 @@
|
|||||||
"Fats": "Fette",
|
"Fats": "Fette",
|
||||||
"File": "Datei",
|
"File": "Datei",
|
||||||
"Files": "Dateien",
|
"Files": "Dateien",
|
||||||
|
"FinishedAt": "Fertig um",
|
||||||
"First_name": "Vorname",
|
"First_name": "Vorname",
|
||||||
"Food": "Lebensmittel",
|
"Food": "Lebensmittel",
|
||||||
"FoodInherit": "Lebensmittel vererbbare Felder",
|
"FoodInherit": "Lebensmittel vererbbare Felder",
|
||||||
@@ -391,6 +392,7 @@
|
|||||||
"Step_Type": "Schritt Typ",
|
"Step_Type": "Schritt Typ",
|
||||||
"Step_start_time": "Schritt Startzeit",
|
"Step_start_time": "Schritt Startzeit",
|
||||||
"Steps": "Schritte",
|
"Steps": "Schritte",
|
||||||
|
"StepsOverview": "Schrittübersicht",
|
||||||
"Sticky_Nav": "Navigationsleiste immer sichtbar (sticky navigation)",
|
"Sticky_Nav": "Navigationsleiste immer sichtbar (sticky navigation)",
|
||||||
"Sticky_Nav_Help": "Navigationsleiste immer im Seitenkopf anzeigen.",
|
"Sticky_Nav_Help": "Navigationsleiste immer im Seitenkopf anzeigen.",
|
||||||
"SubstituteOnHand": "Du hast eine Alternative vorrätig.",
|
"SubstituteOnHand": "Du hast eine Alternative vorrätig.",
|
||||||
|
|||||||
@@ -129,6 +129,7 @@
|
|||||||
"Fats": "Λιπαρά",
|
"Fats": "Λιπαρά",
|
||||||
"File": "Αρχείο",
|
"File": "Αρχείο",
|
||||||
"Files": "Αρχεία",
|
"Files": "Αρχεία",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Όνομα",
|
"First_name": "Όνομα",
|
||||||
"Food": "Φαγητό",
|
"Food": "Φαγητό",
|
||||||
"FoodInherit": "Πεδία φαγητών που κληρονομούνται",
|
"FoodInherit": "Πεδία φαγητών που κληρονομούνται",
|
||||||
@@ -353,6 +354,7 @@
|
|||||||
"Step_Type": "Είδος βήματος",
|
"Step_Type": "Είδος βήματος",
|
||||||
"Step_start_time": "Χρόνος αρχής βήματος",
|
"Step_start_time": "Χρόνος αρχής βήματος",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Κολλητική πλοήγηση",
|
"Sticky_Nav": "Κολλητική πλοήγηση",
|
||||||
"Sticky_Nav_Help": "Μόνιμη εμφάνιση του μενού πλοήγησης στο πάνω μέρος της οθόνης.",
|
"Sticky_Nav_Help": "Μόνιμη εμφάνιση του μενού πλοήγησης στο πάνω μέρος της οθόνης.",
|
||||||
"SubstituteOnHand": "Έχετε διαθέσιμο ένα υποκατάστατο.",
|
"SubstituteOnHand": "Έχετε διαθέσιμο ένα υποκατάστατο.",
|
||||||
|
|||||||
@@ -146,6 +146,7 @@
|
|||||||
"Fats": "Fats",
|
"Fats": "Fats",
|
||||||
"File": "File",
|
"File": "File",
|
||||||
"Files": "Files",
|
"Files": "Files",
|
||||||
|
"FinishedAt": "Finished at",
|
||||||
"First_name": "First Name",
|
"First_name": "First Name",
|
||||||
"Food": "Food",
|
"Food": "Food",
|
||||||
"FoodInherit": "Food Inheritable Fields",
|
"FoodInherit": "Food Inheritable Fields",
|
||||||
@@ -390,6 +391,7 @@
|
|||||||
"Step_Type": "Step Type",
|
"Step_Type": "Step Type",
|
||||||
"Step_start_time": "Step start time",
|
"Step_start_time": "Step start time",
|
||||||
"Steps": "Steps",
|
"Steps": "Steps",
|
||||||
|
"StepsOverview": "Steps Overview",
|
||||||
"Sticky_Nav": "Sticky Navigation",
|
"Sticky_Nav": "Sticky Navigation",
|
||||||
"Sticky_Nav_Help": "Always show the navigation menu at the top of the screen.",
|
"Sticky_Nav_Help": "Always show the navigation menu at the top of the screen.",
|
||||||
"SubstituteOnHand": "You have a substitute on hand.",
|
"SubstituteOnHand": "You have a substitute on hand.",
|
||||||
|
|||||||
@@ -146,6 +146,7 @@
|
|||||||
"Fats": "Grasas",
|
"Fats": "Grasas",
|
||||||
"File": "Archivo",
|
"File": "Archivo",
|
||||||
"Files": "Archivos",
|
"Files": "Archivos",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Nombre",
|
"First_name": "Nombre",
|
||||||
"Food": "Alimento",
|
"Food": "Alimento",
|
||||||
"FoodInherit": "Campos heredables",
|
"FoodInherit": "Campos heredables",
|
||||||
@@ -387,6 +388,7 @@
|
|||||||
"Step_Type": "Tipo Paso",
|
"Step_Type": "Tipo Paso",
|
||||||
"Step_start_time": "Hora de inicio",
|
"Step_start_time": "Hora de inicio",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Navegación Fija",
|
"Sticky_Nav": "Navegación Fija",
|
||||||
"Sticky_Nav_Help": "Mostrar siempre el menú de navegación el la parte superior de la pantalla.",
|
"Sticky_Nav_Help": "Mostrar siempre el menú de navegación el la parte superior de la pantalla.",
|
||||||
"SubstituteOnHand": "Tienen un sustituto disponible.",
|
"SubstituteOnHand": "Tienen un sustituto disponible.",
|
||||||
|
|||||||
@@ -81,6 +81,7 @@
|
|||||||
"Fats": "Rasvat",
|
"Fats": "Rasvat",
|
||||||
"File": "Tiedosto",
|
"File": "Tiedosto",
|
||||||
"Files": "Tiedostot",
|
"Files": "Tiedostot",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Ruoka",
|
"Food": "Ruoka",
|
||||||
"Food_Alias": "Ruoan nimimerkki",
|
"Food_Alias": "Ruoan nimimerkki",
|
||||||
"Friday": "",
|
"Friday": "",
|
||||||
@@ -230,6 +231,7 @@
|
|||||||
"Step_Type": "Vaiheen Tyyppi",
|
"Step_Type": "Vaiheen Tyyppi",
|
||||||
"Step_start_time": "Vaiheen aloitusaika",
|
"Step_start_time": "Vaiheen aloitusaika",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "Onnistui",
|
"Success": "Onnistui",
|
||||||
"Sunday": "",
|
"Sunday": "",
|
||||||
|
|||||||
@@ -145,6 +145,7 @@
|
|||||||
"Fats": "Matières grasses",
|
"Fats": "Matières grasses",
|
||||||
"File": "Fichier",
|
"File": "Fichier",
|
||||||
"Files": "Fichiers",
|
"Files": "Fichiers",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Prénom",
|
"First_name": "Prénom",
|
||||||
"Food": "Aliment",
|
"Food": "Aliment",
|
||||||
"FoodInherit": "Ingrédient hérité",
|
"FoodInherit": "Ingrédient hérité",
|
||||||
@@ -388,6 +389,7 @@
|
|||||||
"Step_Type": "Type d’étape",
|
"Step_Type": "Type d’étape",
|
||||||
"Step_start_time": "Heure de début de l’étape",
|
"Step_start_time": "Heure de début de l’étape",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Barre de navigation collante",
|
"Sticky_Nav": "Barre de navigation collante",
|
||||||
"Sticky_Nav_Help": "Toujours afficher le menu de navigation en haut de l’écran.",
|
"Sticky_Nav_Help": "Toujours afficher le menu de navigation en haut de l’écran.",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
|
|||||||
@@ -146,6 +146,7 @@
|
|||||||
"Fats": "שומנים",
|
"Fats": "שומנים",
|
||||||
"File": "קובץ",
|
"File": "קובץ",
|
||||||
"Files": "קבצים",
|
"Files": "קבצים",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "שם פרטי",
|
"First_name": "שם פרטי",
|
||||||
"Food": "אוכל",
|
"Food": "אוכל",
|
||||||
"FoodInherit": "ערכי מזון",
|
"FoodInherit": "ערכי מזון",
|
||||||
@@ -389,6 +390,7 @@
|
|||||||
"Step_Type": "סוג צעד",
|
"Step_Type": "סוג צעד",
|
||||||
"Step_start_time": "זמן התחלת הצעד",
|
"Step_start_time": "זמן התחלת הצעד",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "ניווט דביק",
|
"Sticky_Nav": "ניווט דביק",
|
||||||
"Sticky_Nav_Help": "תמיד הצג את תפריט הניווט בראש העמוד.",
|
"Sticky_Nav_Help": "תמיד הצג את תפריט הניווט בראש העמוד.",
|
||||||
"SubstituteOnHand": "יש לך תחלופה זמינה.",
|
"SubstituteOnHand": "יש לך תחלופה זמינה.",
|
||||||
|
|||||||
@@ -129,6 +129,7 @@
|
|||||||
"Fats": "Zsírok",
|
"Fats": "Zsírok",
|
||||||
"File": "Fájl",
|
"File": "Fájl",
|
||||||
"Files": "Fájlok",
|
"Files": "Fájlok",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Keresztnév",
|
"First_name": "Keresztnév",
|
||||||
"Food": "Alapanyag",
|
"Food": "Alapanyag",
|
||||||
"FoodInherit": "",
|
"FoodInherit": "",
|
||||||
@@ -356,6 +357,7 @@
|
|||||||
"Step_Type": "Lépés típusa",
|
"Step_Type": "Lépés típusa",
|
||||||
"Step_start_time": "A lépés kezdési ideje",
|
"Step_start_time": "A lépés kezdési ideje",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav_Help": "A navigációs menü mindig a képernyő tetején jelenjen meg.",
|
"Sticky_Nav_Help": "A navigációs menü mindig a képernyő tetején jelenjen meg.",
|
||||||
"SubstituteOnHand": "Van elérhető helyettesítője.",
|
"SubstituteOnHand": "Van elérhető helyettesítője.",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
|
|||||||
@@ -61,6 +61,7 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Սննդամթերք",
|
"Food": "Սննդամթերք",
|
||||||
"Friday": "",
|
"Friday": "",
|
||||||
"GettingStarted": "",
|
"GettingStarted": "",
|
||||||
@@ -168,6 +169,7 @@
|
|||||||
"Step": "",
|
"Step": "",
|
||||||
"Step_start_time": "Քայլի սկսելու ժամանակը",
|
"Step_start_time": "Քայլի սկսելու ժամանակը",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "",
|
"Success": "",
|
||||||
"Sunday": "",
|
"Sunday": "",
|
||||||
|
|||||||
@@ -118,6 +118,7 @@
|
|||||||
"Fats": "Lemak",
|
"Fats": "Lemak",
|
||||||
"File": "Berkas",
|
"File": "Berkas",
|
||||||
"Files": "File",
|
"Files": "File",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "",
|
"First_name": "",
|
||||||
"Food": "",
|
"Food": "",
|
||||||
"FoodInherit": "",
|
"FoodInherit": "",
|
||||||
@@ -330,6 +331,7 @@
|
|||||||
"Step_Type": "Tipe Langkah",
|
"Step_Type": "Tipe Langkah",
|
||||||
"Step_start_time": "Langkah waktu mulai",
|
"Step_start_time": "Langkah waktu mulai",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "",
|
"Sticky_Nav": "",
|
||||||
"Sticky_Nav_Help": "",
|
"Sticky_Nav_Help": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
|
|||||||
@@ -145,6 +145,7 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "",
|
"First_name": "",
|
||||||
"Food": "",
|
"Food": "",
|
||||||
"FoodInherit": "",
|
"FoodInherit": "",
|
||||||
@@ -387,6 +388,7 @@
|
|||||||
"Step_Type": "",
|
"Step_Type": "",
|
||||||
"Step_start_time": "",
|
"Step_start_time": "",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "",
|
"Sticky_Nav": "",
|
||||||
"Sticky_Nav_Help": "",
|
"Sticky_Nav_Help": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
|
|||||||
@@ -123,6 +123,7 @@
|
|||||||
"Fats": "Grassi",
|
"Fats": "Grassi",
|
||||||
"File": "File",
|
"File": "File",
|
||||||
"Files": "File",
|
"Files": "File",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Nome",
|
"First_name": "Nome",
|
||||||
"Food": "Alimento",
|
"Food": "Alimento",
|
||||||
"FoodInherit": "Campi ereditabili dagli Alimenti",
|
"FoodInherit": "Campi ereditabili dagli Alimenti",
|
||||||
@@ -339,6 +340,7 @@
|
|||||||
"Step_Type": "Tipo di Step",
|
"Step_Type": "Tipo di Step",
|
||||||
"Step_start_time": "Ora di inizio dello Step",
|
"Step_start_time": "Ora di inizio dello Step",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Navigazione con menu fissato",
|
"Sticky_Nav": "Navigazione con menu fissato",
|
||||||
"Sticky_Nav_Help": "Mostra sempre il menu di navigazione in alto.",
|
"Sticky_Nav_Help": "Mostra sempre il menu di navigazione in alto.",
|
||||||
"SubstituteOnHand": "Hai un sostituto disponibile.",
|
"SubstituteOnHand": "Hai un sostituto disponibile.",
|
||||||
|
|||||||
@@ -131,6 +131,7 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "",
|
"First_name": "",
|
||||||
"Food": "",
|
"Food": "",
|
||||||
"FoodInherit": "",
|
"FoodInherit": "",
|
||||||
@@ -360,6 +361,7 @@
|
|||||||
"Step_Type": "Žingsnio tipas",
|
"Step_Type": "Žingsnio tipas",
|
||||||
"Step_start_time": "Žingsnio pradžios laikas",
|
"Step_start_time": "Žingsnio pradžios laikas",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "",
|
"Sticky_Nav": "",
|
||||||
"Sticky_Nav_Help": "",
|
"Sticky_Nav_Help": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
|
|||||||
@@ -127,6 +127,7 @@
|
|||||||
"Fats": "Fett",
|
"Fats": "Fett",
|
||||||
"File": "Fil",
|
"File": "Fil",
|
||||||
"Files": "Filer",
|
"Files": "Filer",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Fornavn",
|
"First_name": "Fornavn",
|
||||||
"Food": "Matretter",
|
"Food": "Matretter",
|
||||||
"FoodInherit": "Arvbare felt for matvarer",
|
"FoodInherit": "Arvbare felt for matvarer",
|
||||||
@@ -351,6 +352,7 @@
|
|||||||
"Step_Type": "Trinn type",
|
"Step_Type": "Trinn type",
|
||||||
"Step_start_time": "Trinn starttid",
|
"Step_start_time": "Trinn starttid",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "",
|
"Sticky_Nav": "",
|
||||||
"Sticky_Nav_Help": "",
|
"Sticky_Nav_Help": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
|
|||||||
@@ -131,6 +131,7 @@
|
|||||||
"Fats": "Vetten",
|
"Fats": "Vetten",
|
||||||
"File": "Bestand",
|
"File": "Bestand",
|
||||||
"Files": "Bestanden",
|
"Files": "Bestanden",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Voornaam",
|
"First_name": "Voornaam",
|
||||||
"Food": "Ingrediënt",
|
"Food": "Ingrediënt",
|
||||||
"FoodInherit": "Eten erfbare velden",
|
"FoodInherit": "Eten erfbare velden",
|
||||||
@@ -355,6 +356,7 @@
|
|||||||
"Step_Type": "Stap Type",
|
"Step_Type": "Stap Type",
|
||||||
"Step_start_time": "Starttijd stap",
|
"Step_start_time": "Starttijd stap",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Navigatie altijd zichbaar",
|
"Sticky_Nav": "Navigatie altijd zichbaar",
|
||||||
"Sticky_Nav_Help": "Geef navigatiemenu altijd bovenin weer.",
|
"Sticky_Nav_Help": "Geef navigatiemenu altijd bovenin weer.",
|
||||||
"SubstituteOnHand": "Je hebt een vervanger op voorraad.",
|
"SubstituteOnHand": "Je hebt een vervanger op voorraad.",
|
||||||
|
|||||||
@@ -147,6 +147,7 @@
|
|||||||
"Fats": "Tłuszcze",
|
"Fats": "Tłuszcze",
|
||||||
"File": "Plik",
|
"File": "Plik",
|
||||||
"Files": "Pliki",
|
"Files": "Pliki",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Imię",
|
"First_name": "Imię",
|
||||||
"Food": "Żywność",
|
"Food": "Żywność",
|
||||||
"FoodInherit": "Pola dziedziczone w żywności",
|
"FoodInherit": "Pola dziedziczone w żywności",
|
||||||
@@ -390,6 +391,7 @@
|
|||||||
"Step_Type": "Typ kroku",
|
"Step_Type": "Typ kroku",
|
||||||
"Step_start_time": "Czas rozpoczęcia kroku",
|
"Step_start_time": "Czas rozpoczęcia kroku",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Przyklejona nawigacja",
|
"Sticky_Nav": "Przyklejona nawigacja",
|
||||||
"Sticky_Nav_Help": "Zawsze pokazuj menu nawigacyjne u góry ekranu.",
|
"Sticky_Nav_Help": "Zawsze pokazuj menu nawigacyjne u góry ekranu.",
|
||||||
"SubstituteOnHand": "Masz pod ręką zamienniki.",
|
"SubstituteOnHand": "Masz pod ręką zamienniki.",
|
||||||
|
|||||||
@@ -106,6 +106,7 @@
|
|||||||
"Fats": "Gorduras",
|
"Fats": "Gorduras",
|
||||||
"File": "Ficheiro",
|
"File": "Ficheiro",
|
||||||
"Files": "Ficheiros",
|
"Files": "Ficheiros",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Comida",
|
"Food": "Comida",
|
||||||
"FoodInherit": "Campos herdados por comida",
|
"FoodInherit": "Campos herdados por comida",
|
||||||
"FoodNotOnHand": "Não têm {food} disponível.",
|
"FoodNotOnHand": "Não têm {food} disponível.",
|
||||||
@@ -295,6 +296,7 @@
|
|||||||
"Step_Type": "Tipo do passo",
|
"Step_Type": "Tipo do passo",
|
||||||
"Step_start_time": "Hora de Inicio do passo",
|
"Step_start_time": "Hora de Inicio do passo",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "Sucesso",
|
"Success": "Sucesso",
|
||||||
|
|||||||
@@ -141,6 +141,7 @@
|
|||||||
"Fats": "Gorduras",
|
"Fats": "Gorduras",
|
||||||
"File": "Arquivo",
|
"File": "Arquivo",
|
||||||
"Files": "Arquivos",
|
"Files": "Arquivos",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Primeiro Nome",
|
"First_name": "Primeiro Nome",
|
||||||
"Food": "Comida",
|
"Food": "Comida",
|
||||||
"FoodInherit": "Campos herdados por alimento",
|
"FoodInherit": "Campos herdados por alimento",
|
||||||
@@ -373,6 +374,7 @@
|
|||||||
"Step_Type": "Tipo de etapa",
|
"Step_Type": "Tipo de etapa",
|
||||||
"Step_start_time": "Hora de início",
|
"Step_start_time": "Hora de início",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav_Help": "Permitir mostrar o menu de navegação no topo da tela.",
|
"Sticky_Nav_Help": "Permitir mostrar o menu de navegação no topo da tela.",
|
||||||
"SubstituteOnHand": "Você tem um substituto disponível.",
|
"SubstituteOnHand": "Você tem um substituto disponível.",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
|
|||||||
@@ -125,6 +125,7 @@
|
|||||||
"Fats": "Grăsimi",
|
"Fats": "Grăsimi",
|
||||||
"File": "Fișier",
|
"File": "Fișier",
|
||||||
"Files": "Fișiere",
|
"Files": "Fișiere",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Prenume",
|
"First_name": "Prenume",
|
||||||
"Food": "Mâncare",
|
"Food": "Mâncare",
|
||||||
"FoodInherit": "Câmpuri moștenite de alimente",
|
"FoodInherit": "Câmpuri moștenite de alimente",
|
||||||
@@ -343,6 +344,7 @@
|
|||||||
"Step_Type": "Tip pas",
|
"Step_Type": "Tip pas",
|
||||||
"Step_start_time": "Pasule de începere a orei",
|
"Step_start_time": "Pasule de începere a orei",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Navigare lipicioasă",
|
"Sticky_Nav": "Navigare lipicioasă",
|
||||||
"Sticky_Nav_Help": "Afișați întotdeauna meniul de navigare din partea de sus a ecranului.",
|
"Sticky_Nav_Help": "Afișați întotdeauna meniul de navigare din partea de sus a ecranului.",
|
||||||
"SubstituteOnHand": "Ai un înlocuitor la îndemână.",
|
"SubstituteOnHand": "Ai un înlocuitor la îndemână.",
|
||||||
|
|||||||
@@ -96,6 +96,7 @@
|
|||||||
"Fats": "Жиры",
|
"Fats": "Жиры",
|
||||||
"File": "Файл",
|
"File": "Файл",
|
||||||
"Files": "Файлы",
|
"Files": "Файлы",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Еда",
|
"Food": "Еда",
|
||||||
"FoodInherit": "Наследуемые поля продуктов питания",
|
"FoodInherit": "Наследуемые поля продуктов питания",
|
||||||
"FoodNotOnHand": "{food} отсутствует в наличии.",
|
"FoodNotOnHand": "{food} отсутствует в наличии.",
|
||||||
@@ -280,6 +281,7 @@
|
|||||||
"Step_Type": "Тип шага",
|
"Step_Type": "Тип шага",
|
||||||
"Step_start_time": "Время начала шага",
|
"Step_start_time": "Время начала шага",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "Успешно",
|
"Success": "Успешно",
|
||||||
"Sunday": "",
|
"Sunday": "",
|
||||||
|
|||||||
@@ -96,6 +96,7 @@
|
|||||||
"Fats": "Maščobe",
|
"Fats": "Maščobe",
|
||||||
"File": "Datoteka",
|
"File": "Datoteka",
|
||||||
"Files": "Datoteke",
|
"Files": "Datoteke",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Hrana",
|
"Food": "Hrana",
|
||||||
"FoodInherit": "Podedovana polja hrane",
|
"FoodInherit": "Podedovana polja hrane",
|
||||||
"FoodNotOnHand": "Nimaš {food} v roki.",
|
"FoodNotOnHand": "Nimaš {food} v roki.",
|
||||||
@@ -270,6 +271,7 @@
|
|||||||
"Step_Type": "Tip koraka",
|
"Step_Type": "Tip koraka",
|
||||||
"Step_start_time": "Začetni čas koraka",
|
"Step_start_time": "Začetni čas koraka",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "Uspešno",
|
"Success": "Uspešno",
|
||||||
"SuccessClipboard": "Nakupovalni listek je kopiran v odložišče",
|
"SuccessClipboard": "Nakupovalni listek je kopiran v odložišče",
|
||||||
|
|||||||
@@ -147,6 +147,7 @@
|
|||||||
"Fats": "Fett",
|
"Fats": "Fett",
|
||||||
"File": "Fil",
|
"File": "Fil",
|
||||||
"Files": "Filer",
|
"Files": "Filer",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "Förnamn",
|
"First_name": "Förnamn",
|
||||||
"Food": "Livsmedel",
|
"Food": "Livsmedel",
|
||||||
"FoodInherit": "Ärftliga livsmedels fält",
|
"FoodInherit": "Ärftliga livsmedels fält",
|
||||||
@@ -390,6 +391,7 @@
|
|||||||
"Step_Type": "Stegets typ",
|
"Step_Type": "Stegets typ",
|
||||||
"Step_start_time": "Steg starttid",
|
"Step_start_time": "Steg starttid",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Fastlåst navigering",
|
"Sticky_Nav": "Fastlåst navigering",
|
||||||
"Sticky_Nav_Help": "Visa alltid navigeringsmenyn högst upp på skärmen.",
|
"Sticky_Nav_Help": "Visa alltid navigeringsmenyn högst upp på skärmen.",
|
||||||
"SubstituteOnHand": "Du har ett substitut till hands.",
|
"SubstituteOnHand": "Du har ett substitut till hands.",
|
||||||
|
|||||||
@@ -146,6 +146,7 @@
|
|||||||
"Fats": "Yağlar",
|
"Fats": "Yağlar",
|
||||||
"File": "Dosya",
|
"File": "Dosya",
|
||||||
"Files": "Dosyalar",
|
"Files": "Dosyalar",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "İsim",
|
"First_name": "İsim",
|
||||||
"Food": "Yiyecek",
|
"Food": "Yiyecek",
|
||||||
"FoodInherit": "Yiyeceğin Devralınabileceği Alanlar",
|
"FoodInherit": "Yiyeceğin Devralınabileceği Alanlar",
|
||||||
@@ -389,6 +390,7 @@
|
|||||||
"Step_Type": "Adım Tipi",
|
"Step_Type": "Adım Tipi",
|
||||||
"Step_start_time": "Adım başlangıç zamanı",
|
"Step_start_time": "Adım başlangıç zamanı",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "Yapışkan Gezinme Çubuğu",
|
"Sticky_Nav": "Yapışkan Gezinme Çubuğu",
|
||||||
"Sticky_Nav_Help": "Gezinme menüsünü her zaman ekranın üst kısmında gösterin.",
|
"Sticky_Nav_Help": "Gezinme menüsünü her zaman ekranın üst kısmında gösterin.",
|
||||||
"SubstituteOnHand": "Elinizde bir yedek var.",
|
"SubstituteOnHand": "Elinizde bir yedek var.",
|
||||||
|
|||||||
@@ -113,6 +113,7 @@
|
|||||||
"Fats": "Жири",
|
"Fats": "Жири",
|
||||||
"File": "Файл",
|
"File": "Файл",
|
||||||
"Files": "Файли",
|
"Files": "Файли",
|
||||||
|
"FinishedAt": "",
|
||||||
"Food": "Їжа",
|
"Food": "Їжа",
|
||||||
"FoodInherit": "Пола Успадкованої Їжі",
|
"FoodInherit": "Пола Успадкованої Їжі",
|
||||||
"FoodNotOnHand": "У вас немає {food} на руках.",
|
"FoodNotOnHand": "У вас немає {food} на руках.",
|
||||||
@@ -316,6 +317,7 @@
|
|||||||
"Step_Type": "Тип Кроку",
|
"Step_Type": "Тип Кроку",
|
||||||
"Step_start_time": "Час початку кроку",
|
"Step_start_time": "Час початку кроку",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"SubstituteOnHand": "",
|
"SubstituteOnHand": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "Успішно",
|
"Success": "Успішно",
|
||||||
|
|||||||
@@ -142,6 +142,7 @@
|
|||||||
"Fats": "脂肪",
|
"Fats": "脂肪",
|
||||||
"File": "文件",
|
"File": "文件",
|
||||||
"Files": "文件",
|
"Files": "文件",
|
||||||
|
"FinishedAt": "",
|
||||||
"First_name": "名",
|
"First_name": "名",
|
||||||
"Food": "食物",
|
"Food": "食物",
|
||||||
"FoodInherit": "食物可继承的字段",
|
"FoodInherit": "食物可继承的字段",
|
||||||
@@ -383,6 +384,7 @@
|
|||||||
"Step_Type": "步骤类型",
|
"Step_Type": "步骤类型",
|
||||||
"Step_start_time": "步骤开始时间",
|
"Step_start_time": "步骤开始时间",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Sticky_Nav": "粘性导航",
|
"Sticky_Nav": "粘性导航",
|
||||||
"Sticky_Nav_Help": "始终在屏幕顶部显示导航菜单。",
|
"Sticky_Nav_Help": "始终在屏幕顶部显示导航菜单。",
|
||||||
"SubstituteOnHand": "你手头有一个替代品。",
|
"SubstituteOnHand": "你手头有一个替代品。",
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
|
"FinishedAt": "",
|
||||||
"Friday": "",
|
"Friday": "",
|
||||||
"GettingStarted": "",
|
"GettingStarted": "",
|
||||||
"Hide_as_header": "隱藏為標題",
|
"Hide_as_header": "隱藏為標題",
|
||||||
@@ -138,6 +139,7 @@
|
|||||||
"Step": "",
|
"Step": "",
|
||||||
"Step_start_time": "步驟開始時間",
|
"Step_start_time": "步驟開始時間",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
|
"StepsOverview": "",
|
||||||
"Substitutes": "",
|
"Substitutes": "",
|
||||||
"Success": "",
|
"Success": "",
|
||||||
"Sunday": "",
|
"Sunday": "",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container :class="{'ps-0 pe-0 pt-0': mobile}">
|
<v-container :class="{'ps-0 pe-0 pt-0': mobile}">
|
||||||
<recipe-view :recipe="recipe"></recipe-view>
|
<recipe-view v-model="recipe"></recipe-view>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user