shopping line item dialog WIP

This commit is contained in:
vabene1111
2024-10-22 18:31:43 +02:00
parent eb4b8555c2
commit 4692526e48
34 changed files with 180 additions and 16 deletions

View File

@@ -0,0 +1,94 @@
<template>
<v-dialog v-model="showDialog" max-width="500px">
<v-card>
<v-closable-card-title :title="props.shoppingListFood.food.name" v-model="showDialog"></v-closable-card-title>
<v-card-text>
<v-label>{{ $t('Choose_Category') }}</v-label>
<ModelSelect model="SupermarketCategory"></ModelSelect>
<v-row>
<v-col>
<v-btn height="80px" color="info" block stacked>
<i class="fa-solid fa-clock-rotate-left fa-2x mb-2"></i>
{{ $t('Postpone') }}
</v-btn>
</v-col>
<v-col>
<v-btn height="80px" color="secondary" block stacked>
<i class="fa-solid fa-eye-slash fa-2x mb-2"></i>
{{ $t('Ignore_Shopping') }}
</v-btn>
</v-col>
</v-row>
<v-row>
<v-col>
<v-btn height="80px" color="primary" block stacked>
<i class="fa-solid fa-pencil fa-2x mb-2"></i>
{{ $t('Edit_Food') }}
</v-btn>
</v-col>
<v-col>
<v-btn height="80px" color="success" block stacked>
<i class="fa-solid fa-plus fa-2x mb-2"></i>
{{ $t('Add') }}
</v-btn>
</v-col>
</v-row>
<v-label class="mt-2">{{ $t('Entries') }}</v-label>
<v-list density="compact">
<v-list-item variant="tonal" class="mt-1" v-for="[i, e] in props.shoppingListFood.entries" :key="e.id">
<v-list-item-title>
<b>
{{ e.amount }}
<span v-if="e.unit">{{ e.unit.name }}</span>
</b>
{{ e.food.name }}
</v-list-item-title>
<v-list-item-subtitle v-if="e.recipeMealplan && e.recipeMealplan.recipeName !== ''">
<v-icon icon="$recipes" size="x-small"></v-icon> {{ e.recipeMealplan.servings }} {{ $t('Servings') }}
<router-link :to="{name: 'view_recipe', params: {id: e.recipeMealplan.id}}" target="_blank"><b>
{{ e.recipeMealplan.recipeName }} </b>
</router-link>
</v-list-item-subtitle>
<v-list-item-subtitle v-if="e.recipeMealplan && e.recipeMealplan.mealplanType !== undefined">
<v-icon icon="$mealplan" size="x-small"></v-icon> {{ e.recipeMealplan.mealplanType }} {{ DateTime.fromJSDate(e.recipeMealplan.mealplanFromDate).toLocaleString(DateTime.DATE_SHORT) }}
</v-list-item-subtitle>
<v-list-item-subtitle>
<v-icon icon="fa-solid fa-user" size="x-small"></v-icon> {{ e.createdBy.displayName }} - {{ DateTime.fromJSDate(e.createdAt).toLocaleString(DateTime.DATETIME_SHORT) }}
</v-list-item-subtitle>
<template #append>
<v-btn size="small" color="edit"> <v-icon icon="$edit"></v-icon></v-btn>
<v-btn size="small" color="delete"> <v-icon icon="$delete"></v-icon></v-btn>
</template>
</v-list-item>
</v-list>
</v-card-text>
</v-card>
</v-dialog>
</template>
<script setup lang="ts">
import {PropType} from "vue";
import {ShoppingListEntry} from "@/openapi";
import ModelSelect from "@/components/inputs/ModelSelect.vue";
import {IShoppingList, IShoppingListFood} from "@/types/Shopping";
import VClosableCardTitle from "@/components/dialogs/VClosableCardTitle.vue";
import {DateTime} from "luxon";
const showDialog = defineModel<Boolean>()
const props = defineProps({
shoppingListFood: {type: {} as PropType<IShoppingListFood>, required: true},
})
</script>
<style scoped>
</style>

View File

@@ -1,7 +1,6 @@
<template> <template>
<v-list-item class="swipe-container" :id="itemContainerId" @touchend="handleSwipe()" <v-list-item class="swipe-container" :id="itemContainerId" @touchend="handleSwipe()" @click="emit('clicked', entries)"
v-if="(useUserPreferenceStore().deviceSettings.shopping_show_checked_entries || !isChecked) && (useUserPreferenceStore().deviceSettings.shopping_show_delayed_entries || !isDelayed)" v-if="(useUserPreferenceStore().deviceSettings.shopping_show_checked_entries || !isChecked) && (useUserPreferenceStore().deviceSettings.shopping_show_delayed_entries || !isDelayed)"
@click="detail_modal_visible = true"
> >
<!-- <div class="swipe-action" :class="{'bg-success': !isChecked , 'bg-warning': isChecked }">--> <!-- <div class="swipe-action" :class="{'bg-success': !isChecked , 'bg-warning': isChecked }">-->
<!-- <i class="swipe-icon fa-fw fas" :class="{'fa-check': !isChecked , 'fa-cart-plus': isChecked }"></i>--> <!-- <i class="swipe-icon fa-fw fas" :class="{'fa-check': !isChecked , 'fa-cart-plus': isChecked }"></i>-->
@@ -16,13 +15,14 @@
<div class="flex-grow-1 p-2"> <div class="flex-grow-1 p-2">
<div class="d-flex"> <div class="d-flex">
<div class="d-flex flex-column pr-2"> <div class="d-flex flex-column pr-2">
<span v-for="[i, a] in amounts" v-bind:key="a"> <span v-for="[i, a] in amounts" v-bind:key="a.key">
<span> <span>
<i class="fas fa-check" v-if="a.checked && !isChecked"></i> <i class="fas fa-check" v-if="a.checked && !isChecked"></i>
<i class="fas fa-hourglass-half" v-if="a.delayed && !a.checked"></i> <b> <i class="fas fa-hourglass-half" v-if="a.delayed && !a.checked"></i> <b>
{{ a.amount }} {{ a.amount }}
{{ a.unit.name }} </b> <span v-if="a.unit">{{ a.unit.name }}</span>
</b>
</span> </span>
<br/> <br/>
</span> </span>
@@ -60,14 +60,12 @@ import {ApiApi, Food, ShoppingListEntry} from '@/openapi'
import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore"; import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore";
import {ShoppingLineAmount} from "@/types/Shopping"; import {ShoppingLineAmount} from "@/types/Shopping";
const emit = defineEmits(['clicked'])
const props = defineProps({ const props = defineProps({
entries: {type: [] as PropType<ShoppingListEntry[]>, required: true}, entries: {type: Array as PropType<Array<ShoppingListEntry>>, required: true},
}) })
const detail_modal_visible = ref(false)
const editing_food = ref({} as Food)
const itemContainerId = computed(() => { const itemContainerId = computed(() => {
let id = 'id_sli_' let id = 'id_sli_'
for (let i in props.entries) { for (let i in props.entries) {
@@ -125,6 +123,7 @@ const amounts = computed((): Map<number, ShoppingLineAmount> => {
unitAmounts.get(unit)!.amount += e.amount unitAmounts.get(unit)!.amount += e.amount
} else { } else {
unitAmounts.set(unit, { unitAmounts.set(unit, {
key: e.food?.id!,
amount: e.amount, amount: e.amount,
unit: e.unit, unit: e.unit,
checked: e.checked, checked: e.checked,

View File

@@ -1,5 +1,5 @@
<template> <template>
<v-tabs v-model="currentTab" density="compact"> <v-tabs v-model="currentTab" >
<v-tab value="shopping"><i class="fas fa-shopping-cart fa-fw"></i> <span class="d-none d-md-block ms-1">{{ $t('Shopping_list') }}</span></v-tab> <v-tab value="shopping"><i class="fas fa-shopping-cart fa-fw"></i> <span class="d-none d-md-block ms-1">{{ $t('Shopping_list') }}</span></v-tab>
<v-tab value="recipes"><i class="fas fa-book fa-fw"></i> <span class="d-none d-md-block ms-1">{{ $t('Recipes') }}</span></v-tab> <v-tab value="recipes"><i class="fas fa-book fa-fw"></i> <span class="d-none d-md-block ms-1">{{ $t('Recipes') }}</span></v-tab>
</v-tabs> </v-tabs>
@@ -30,8 +30,8 @@
<v-list-subheader v-else>{{ category.name }}</v-list-subheader> <v-list-subheader v-else>{{ category.name }}</v-list-subheader>
<v-divider></v-divider> <v-divider></v-divider>
<template v-for="[i, value] in category.foods" :key="i"> <template v-for="[i, value] in category.foods" :key="value.food.id">
<shopping-line-item :entries="Array.from(value.entries.values())"></shopping-line-item> <shopping-line-item :entries="Array.from(value.entries.values())" @clicked="args => {shoppingLineItemDialog = true; shoppingLineItemDialogFood = value;}"></shopping-line-item>
</template> </template>
</template> </template>
@@ -46,18 +46,22 @@
<v-card-title>{{ $t('Recipes') }}</v-card-title> <v-card-title>{{ $t('Recipes') }}</v-card-title>
<v-card-text> <v-card-text>
<v-label >{{$t('Add_to_Shopping')}}</v-label> <v-label>{{ $t('Add_to_Shopping') }}</v-label>
<ModelSelect model="Recipe"></ModelSelect> <ModelSelect model="Recipe"></ModelSelect>
<v-label>{{$t('Recipes')}}</v-label> <v-label>{{ $t('Recipes') }}</v-label>
<v-list> <v-list>
<v-list-item v-for="r in useShoppingStore().getAssociatedRecipes()">
{{r}}
</v-list-item>
</v-list> </v-list>
</v-card-text> </v-card-text>
</v-card> </v-card>
</v-window-item> </v-window-item>
</v-window> </v-window>
<shopping-line-item-dialog v-model="shoppingLineItemDialog" :shopping-list-food="shoppingLineItemDialogFood"></shopping-line-item-dialog>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@@ -69,12 +73,17 @@ import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore";
import ShoppingLineItem from "@/components/display/ShoppingLineItem.vue"; import ShoppingLineItem from "@/components/display/ShoppingLineItem.vue";
import {useUserPreferenceStore} from "@/stores/UserPreferenceStore"; import {useUserPreferenceStore} from "@/stores/UserPreferenceStore";
import ModelSelect from "@/components/inputs/ModelSelect.vue"; import ModelSelect from "@/components/inputs/ModelSelect.vue";
import ShoppingLineItemDialog from "@/components/dialogs/ShoppingLineItemDialog.vue";
import {IShoppingListFood} from "@/types/Shopping";
const currentTab = ref("shopping") const currentTab = ref("shopping")
const ingredientInput = ref('') const ingredientInput = ref('')
const ingredientInputIcon = ref('fa-solid fa-plus') const ingredientInputIcon = ref('fa-solid fa-plus')
const shoppingLineItemDialog = ref(false)
const shoppingLineItemDialogFood = ref({} as IShoppingListFood)
onMounted(() => { onMounted(() => {
useShoppingStore().refreshFromAPI() useShoppingStore().refreshFromAPI()
}) })
@@ -87,7 +96,7 @@ function addIngredient() {
api.apiIngredientFromStringCreate({ingredientString: {text: ingredientInput.value} as IngredientString}).then(r => { api.apiIngredientFromStringCreate({ingredientString: {text: ingredientInput.value} as IngredientString}).then(r => {
useShoppingStore().createObject({ useShoppingStore().createObject({
amount: r.amount, amount: Math.max(r.amount, 1),
unit: (r.unit != null) ? {name: r.unit} as Unit : null, unit: (r.unit != null) ? {name: r.unit} as Unit : null,
food: {name: r.food} as Food, food: {name: r.food} as Food,
} as ShoppingListEntry) } as ShoppingListEntry)

View File

@@ -86,6 +86,7 @@
"Empty": "", "Empty": "",
"Enable_Amount": "", "Enable_Amount": "",
"Energy": "", "Energy": "",
"Entries": "",
"Export": "", "Export": "",
"Export_As_ICal": "", "Export_As_ICal": "",
"Export_Not_Yet_Supported": "", "Export_Not_Yet_Supported": "",
@@ -214,6 +215,7 @@
"Planner": "", "Planner": "",
"Planner_Settings": "", "Planner_Settings": "",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "", "Preparation": "",
"Previous_Day": "", "Previous_Day": "",

View File

@@ -83,6 +83,7 @@
"Empty": "Празно", "Empty": "Празно",
"Enable_Amount": "Активиране на сумата", "Enable_Amount": "Активиране на сумата",
"Energy": "Енергия", "Energy": "Енергия",
"Entries": "",
"Export": "Експортиране", "Export": "Експортиране",
"Export_As_ICal": "Експортирайте текущия период във формат iCal", "Export_As_ICal": "Експортирайте текущия период във формат iCal",
"Export_Not_Yet_Supported": "Експортирането все още не се поддържа", "Export_Not_Yet_Supported": "Експортирането все още не се поддържа",
@@ -207,6 +208,7 @@
"Planner": "Планировчик", "Planner": "Планировчик",
"Planner_Settings": "Настройки на планировчика", "Planner_Settings": "Настройки на планировчика",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Подготовка", "Preparation": "Подготовка",
"Previous_Day": "Предишен ден", "Previous_Day": "Предишен ден",

View File

@@ -120,6 +120,7 @@
"Enable_Amount": "Habiliteu quantitat", "Enable_Amount": "Habiliteu quantitat",
"EndDate": "", "EndDate": "",
"Energy": "", "Energy": "",
"Entries": "",
"Error": "", "Error": "",
"Export": "", "Export": "",
"Export_As_ICal": "", "Export_As_ICal": "",
@@ -277,6 +278,7 @@
"Planner": "", "Planner": "",
"Planner_Settings": "", "Planner_Settings": "",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "", "Preparation": "",
"Previous_Day": "", "Previous_Day": "",

View File

@@ -120,6 +120,7 @@
"Enable_Amount": "Zobrazit množství", "Enable_Amount": "Zobrazit množství",
"EndDate": "Konečné datum", "EndDate": "Konečné datum",
"Energy": "Energie", "Energy": "Energie",
"Entries": "",
"Error": "Chyba", "Error": "Chyba",
"Export": "Export", "Export": "Export",
"Export_As_ICal": "Exportovat současný úsek do formátu iCal", "Export_As_ICal": "Exportovat současný úsek do formátu iCal",
@@ -275,6 +276,7 @@
"Planner": "Plánovač", "Planner": "Plánovač",
"Planner_Settings": "Nastavení plánovače", "Planner_Settings": "Nastavení plánovače",
"Plural": "Množné číslo", "Plural": "Množné číslo",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Příprava", "Preparation": "Příprava",
"Previous_Day": "Předchozí den", "Previous_Day": "Předchozí den",

View File

@@ -110,6 +110,7 @@
"Enable_Amount": "Aktiver antal", "Enable_Amount": "Aktiver antal",
"EndDate": "Slutdato", "EndDate": "Slutdato",
"Energy": "Energi", "Energy": "Energi",
"Entries": "",
"Export": "Eksporter", "Export": "Eksporter",
"Export_As_ICal": "Eksporter nuværende periode til iCal format", "Export_As_ICal": "Eksporter nuværende periode til iCal format",
"Export_Not_Yet_Supported": "Eksport endnu ikke understøttet", "Export_Not_Yet_Supported": "Eksport endnu ikke understøttet",
@@ -260,6 +261,7 @@
"Planner": "Planlægger", "Planner": "Planlægger",
"Planner_Settings": "Planlægger indstillinger", "Planner_Settings": "Planlægger indstillinger",
"Plural": "Flertal", "Plural": "Flertal",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Forberedelse", "Preparation": "Forberedelse",
"Previous_Day": "Forgående dag", "Previous_Day": "Forgående dag",

View File

@@ -122,6 +122,7 @@
"Enable_Amount": "Menge aktivieren", "Enable_Amount": "Menge aktivieren",
"EndDate": "Enddatum", "EndDate": "Enddatum",
"Energy": "Energie", "Energy": "Energie",
"Entries": "Einträge",
"Error": "Fehler", "Error": "Fehler",
"Export": "Exportieren", "Export": "Exportieren",
"Export_As_ICal": "Aktuellen Zeitraum im iCal Format exportieren", "Export_As_ICal": "Aktuellen Zeitraum im iCal Format exportieren",
@@ -279,6 +280,7 @@
"Planner": "Planer", "Planner": "Planer",
"Planner_Settings": "Einstellungen Essensplan", "Planner_Settings": "Einstellungen Essensplan",
"Plural": "Plural", "Plural": "Plural",
"Postpone": "Verschieben",
"Preferences": "Einstellungen", "Preferences": "Einstellungen",
"Preparation": "Zubereitung", "Preparation": "Zubereitung",
"Preview": "Vorschau", "Preview": "Vorschau",

View File

@@ -108,6 +108,7 @@
"Empty": "Κενό", "Empty": "Κενό",
"Enable_Amount": "Ενεργοποίηση ποσότητας", "Enable_Amount": "Ενεργοποίηση ποσότητας",
"Energy": "Ενέργεια", "Energy": "Ενέργεια",
"Entries": "",
"Export": "Εξαγωγή", "Export": "Εξαγωγή",
"Export_As_ICal": "Εξαγωγή της τρέχουσας περιόδου σε μορφή iCal", "Export_As_ICal": "Εξαγωγή της τρέχουσας περιόδου σε μορφή iCal",
"Export_Not_Yet_Supported": "Η εξαγωγή δεν υποστηρίζεται ακόμη", "Export_Not_Yet_Supported": "Η εξαγωγή δεν υποστηρίζεται ακόμη",
@@ -252,6 +253,7 @@
"Planner": "Σχεδιαστής", "Planner": "Σχεδιαστής",
"Planner_Settings": "Επιλογές σχεδιαστή", "Planner_Settings": "Επιλογές σχεδιαστή",
"Plural": "Πληθυντικός", "Plural": "Πληθυντικός",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Προετοιμασία", "Preparation": "Προετοιμασία",
"Previous_Day": "Προηγούμενη μέρα", "Previous_Day": "Προηγούμενη μέρα",

View File

@@ -121,6 +121,7 @@
"Enable_Amount": "Enable Amount", "Enable_Amount": "Enable Amount",
"EndDate": "End Date", "EndDate": "End Date",
"Energy": "Energy", "Energy": "Energy",
"Entries": "Entries",
"Error": "Error", "Error": "Error",
"Export": "Export", "Export": "Export",
"Export_As_ICal": "Export current period to iCal format", "Export_As_ICal": "Export current period to iCal format",
@@ -278,6 +279,7 @@
"Planner": "Planner", "Planner": "Planner",
"Planner_Settings": "Planner settings", "Planner_Settings": "Planner settings",
"Plural": "Plural", "Plural": "Plural",
"Postpone": "Postpone",
"Preferences": "Preferences", "Preferences": "Preferences",
"Preparation": "Preparation", "Preparation": "Preparation",
"Preview": "Preview", "Preview": "Preview",

View File

@@ -121,6 +121,7 @@
"Enable_Amount": "Habilitar cantidad", "Enable_Amount": "Habilitar cantidad",
"EndDate": "Fecha de Fin", "EndDate": "Fecha de Fin",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Error": "Error", "Error": "Error",
"Export": "Exportar", "Export": "Exportar",
"Export_As_ICal": "Exportar el periodo actual en formato iCal", "Export_As_ICal": "Exportar el periodo actual en formato iCal",
@@ -278,6 +279,7 @@
"Planner": "Planificador", "Planner": "Planificador",
"Planner_Settings": "Opciones del planificador", "Planner_Settings": "Opciones del planificador",
"Plural": "Plural", "Plural": "Plural",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Preparación", "Preparation": "Preparación",
"Previous_Day": "Día Anterior", "Previous_Day": "Día Anterior",

View File

@@ -62,6 +62,7 @@
"Empty": "Tyhjä", "Empty": "Tyhjä",
"Enable_Amount": "Ota Määrä käyttöön", "Enable_Amount": "Ota Määrä käyttöön",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Export": "Vie", "Export": "Vie",
"Export_As_ICal": "Vie nykyinen jakso iCal muotoon", "Export_As_ICal": "Vie nykyinen jakso iCal muotoon",
"Export_To_ICal": "Vie .ics", "Export_To_ICal": "Vie .ics",
@@ -149,6 +150,7 @@
"Planner": "Suunnittelija", "Planner": "Suunnittelija",
"Planner_Settings": "Suunnittelijan asetukset", "Planner_Settings": "Suunnittelijan asetukset",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Valmistautuminen", "Preparation": "Valmistautuminen",
"Previous_Day": "Edellinen Päivä", "Previous_Day": "Edellinen Päivä",

View File

@@ -120,6 +120,7 @@
"Enable_Amount": "Activer la quantité", "Enable_Amount": "Activer la quantité",
"EndDate": "Date de fin", "EndDate": "Date de fin",
"Energy": "Énergie", "Energy": "Énergie",
"Entries": "",
"Error": "Erreur", "Error": "Erreur",
"Export": "Exporter", "Export": "Exporter",
"Export_As_ICal": "Exporter la période en cours au format iCal", "Export_As_ICal": "Exporter la période en cours au format iCal",
@@ -277,6 +278,7 @@
"Planner": "Planificateur", "Planner": "Planificateur",
"Planner_Settings": "Paramètres du planificateur", "Planner_Settings": "Paramètres du planificateur",
"Plural": "Pluriel", "Plural": "Pluriel",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Préparation", "Preparation": "Préparation",
"Previous_Day": "Jour précédent", "Previous_Day": "Jour précédent",

View File

@@ -121,6 +121,7 @@
"Enable_Amount": "אפשר כמות", "Enable_Amount": "אפשר כמות",
"EndDate": "תאריך סיום", "EndDate": "תאריך סיום",
"Energy": "אנרגיה", "Energy": "אנרגיה",
"Entries": "",
"Error": "שגיאה", "Error": "שגיאה",
"Export": "ייצוא", "Export": "ייצוא",
"Export_As_ICal": "ייצוא תקופה נוכחית בפורמט iCal", "Export_As_ICal": "ייצוא תקופה נוכחית בפורמט iCal",
@@ -278,6 +279,7 @@
"Planner": "מתכנן", "Planner": "מתכנן",
"Planner_Settings": "הגדרות מתכנן", "Planner_Settings": "הגדרות מתכנן",
"Plural": "רבים", "Plural": "רבים",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "הכנה", "Preparation": "הכנה",
"Previous_Day": "יום קודם", "Previous_Day": "יום קודם",

View File

@@ -108,6 +108,7 @@
"Enable_Amount": "Összeg bekapcsolása", "Enable_Amount": "Összeg bekapcsolása",
"EndDate": "Befejezés dátuma", "EndDate": "Befejezés dátuma",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Export": "Export", "Export": "Export",
"Export_As_ICal": "Jelenlegi időszak exportálása iCal formátumba", "Export_As_ICal": "Jelenlegi időszak exportálása iCal formátumba",
"Export_Not_Yet_Supported": "", "Export_Not_Yet_Supported": "",
@@ -254,6 +255,7 @@
"Planner": "Tervező", "Planner": "Tervező",
"Planner_Settings": "Tervező beállításai", "Planner_Settings": "Tervező beállításai",
"Plural": "Többes szám", "Plural": "Többes szám",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Előkészítés", "Preparation": "Előkészítés",
"Previous_Day": "Előző nap", "Previous_Day": "Előző nap",

View File

@@ -45,6 +45,7 @@
"Email": "", "Email": "",
"Empty": "Դատարկ", "Empty": "Դատարկ",
"Energy": "", "Energy": "",
"Entries": "",
"Export": "", "Export": "",
"External": "", "External": "",
"External_Recipe_Image": "", "External_Recipe_Image": "",
@@ -97,6 +98,7 @@
"Owner": "", "Owner": "",
"Parent": "Ծնող", "Parent": "Ծնող",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "", "Preparation": "",
"Print": "Տպել", "Print": "Տպել",

View File

@@ -97,6 +97,7 @@
"Empty": "", "Empty": "",
"Enable_Amount": "Aktifkan Jumlah", "Enable_Amount": "Aktifkan Jumlah",
"Energy": "Energi", "Energy": "Energi",
"Entries": "",
"Export": "Ekspor", "Export": "Ekspor",
"Export_As_ICal": "", "Export_As_ICal": "",
"Export_Not_Yet_Supported": "", "Export_Not_Yet_Supported": "",
@@ -232,6 +233,7 @@
"Planned": "", "Planned": "",
"Planner": "", "Planner": "",
"Planner_Settings": "", "Planner_Settings": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Persiapan", "Preparation": "Persiapan",
"Previous_Day": "", "Previous_Day": "",

View File

@@ -120,6 +120,7 @@
"Enable_Amount": "", "Enable_Amount": "",
"EndDate": "", "EndDate": "",
"Energy": "", "Energy": "",
"Entries": "",
"Error": "", "Error": "",
"Export": "", "Export": "",
"Export_As_ICal": "", "Export_As_ICal": "",
@@ -277,6 +278,7 @@
"Planner": "", "Planner": "",
"Planner_Settings": "", "Planner_Settings": "",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "", "Preparation": "",
"Previous_Day": "", "Previous_Day": "",

View File

@@ -102,6 +102,7 @@
"Empty": "Vuoto", "Empty": "Vuoto",
"Enable_Amount": "Abilita Quantità", "Enable_Amount": "Abilita Quantità",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Export": "Esporta", "Export": "Esporta",
"Export_As_ICal": "Esporta il periodo attuale in formato .iCal", "Export_As_ICal": "Esporta il periodo attuale in formato .iCal",
"Export_Not_Yet_Supported": "Esportazione non ancora supportata", "Export_Not_Yet_Supported": "Esportazione non ancora supportata",
@@ -240,6 +241,7 @@
"Planner": "Planner", "Planner": "Planner",
"Planner_Settings": "Impostazioni planner", "Planner_Settings": "Impostazioni planner",
"Plural": "Plurale", "Plural": "Plurale",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Preparazione", "Preparation": "Preparazione",
"Previous_Day": "Giorno precedente", "Previous_Day": "Giorno precedente",

View File

@@ -110,6 +110,7 @@
"Enable_Amount": "Įjungti sumą", "Enable_Amount": "Įjungti sumą",
"EndDate": "", "EndDate": "",
"Energy": "", "Energy": "",
"Entries": "",
"Export": "", "Export": "",
"Export_As_ICal": "", "Export_As_ICal": "",
"Export_Not_Yet_Supported": "", "Export_Not_Yet_Supported": "",
@@ -258,6 +259,7 @@
"Planner": "", "Planner": "",
"Planner_Settings": "", "Planner_Settings": "",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "", "Preparation": "",
"Previous_Day": "", "Previous_Day": "",

View File

@@ -106,6 +106,7 @@
"Empty": "Tom", "Empty": "Tom",
"Enable_Amount": "Aktiver mengde", "Enable_Amount": "Aktiver mengde",
"Energy": "Energi", "Energy": "Energi",
"Entries": "",
"Export": "Eksporter", "Export": "Eksporter",
"Export_As_ICal": "Eksporter gjeldende periode som iCal format", "Export_As_ICal": "Eksporter gjeldende periode som iCal format",
"Export_Not_Yet_Supported": "", "Export_Not_Yet_Supported": "",
@@ -250,6 +251,7 @@
"Planner": "Planlegger", "Planner": "Planlegger",
"Planner_Settings": "Planleggingsinstilliger", "Planner_Settings": "Planleggingsinstilliger",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Forberedelse", "Preparation": "Forberedelse",
"Previous_Day": "Forrige dag", "Previous_Day": "Forrige dag",

View File

@@ -110,6 +110,7 @@
"Empty": "Leeg", "Empty": "Leeg",
"Enable_Amount": "Schakel hoeveelheid in", "Enable_Amount": "Schakel hoeveelheid in",
"Energy": "Energie", "Energy": "Energie",
"Entries": "",
"Export": "Exporteren", "Export": "Exporteren",
"Export_As_ICal": "Exporteer huidige periode naar iCal formaat", "Export_As_ICal": "Exporteer huidige periode naar iCal formaat",
"Export_Not_Yet_Supported": "Export nog niet ondersteund", "Export_Not_Yet_Supported": "Export nog niet ondersteund",
@@ -254,6 +255,7 @@
"Planner": "Planner", "Planner": "Planner",
"Planner_Settings": "Planner instellingen", "Planner_Settings": "Planner instellingen",
"Plural": "Meervoud", "Plural": "Meervoud",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Bereiding", "Preparation": "Bereiding",
"Previous_Day": "Vorige dag", "Previous_Day": "Vorige dag",

View File

@@ -122,6 +122,7 @@
"Enable_Amount": "Włącz ilość", "Enable_Amount": "Włącz ilość",
"EndDate": "Data końcowa", "EndDate": "Data końcowa",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Error": "Błąd", "Error": "Błąd",
"Export": "Eksport", "Export": "Eksport",
"Export_As_ICal": "Eksportuj bieżący okres do formatu iCal", "Export_As_ICal": "Eksportuj bieżący okres do formatu iCal",
@@ -279,6 +280,7 @@
"Planner": "Terminarz", "Planner": "Terminarz",
"Planner_Settings": "Ustawienia terminarza", "Planner_Settings": "Ustawienia terminarza",
"Plural": "Liczba mnoga", "Plural": "Liczba mnoga",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Przygotowanie", "Preparation": "Przygotowanie",
"Previous_Day": "Poprzedni dzień", "Previous_Day": "Poprzedni dzień",

View File

@@ -87,6 +87,7 @@
"Empty": "Esvaziar", "Empty": "Esvaziar",
"Enable_Amount": "Ativar quantidade", "Enable_Amount": "Ativar quantidade",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Export": "Exportar", "Export": "Exportar",
"Export_As_ICal": "Exportar período atual para o formato ICal", "Export_As_ICal": "Exportar período atual para o formato ICal",
"Export_To_ICal": "Exportar .ics", "Export_To_ICal": "Exportar .ics",
@@ -202,6 +203,7 @@
"Planner": "Planeador", "Planner": "Planeador",
"Planner_Settings": "Definições do planeador", "Planner_Settings": "Definições do planeador",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Preparação", "Preparation": "Preparação",
"Previous_Day": "Dia anterior", "Previous_Day": "Dia anterior",

View File

@@ -117,6 +117,7 @@
"Enable_Amount": "Habilitar Quantidade", "Enable_Amount": "Habilitar Quantidade",
"EndDate": "Data Fim", "EndDate": "Data Fim",
"Energy": "Energia", "Energy": "Energia",
"Entries": "",
"Export": "Exportar", "Export": "Exportar",
"Export_As_ICal": "Exportar período atual para o formato iCal", "Export_As_ICal": "Exportar período atual para o formato iCal",
"Export_Not_Yet_Supported": "Exportação ainda não suportada", "Export_Not_Yet_Supported": "Exportação ainda não suportada",
@@ -266,6 +267,7 @@
"Planner": "Planejamento", "Planner": "Planejamento",
"Planner_Settings": "Configurações do Planejamento", "Planner_Settings": "Configurações do Planejamento",
"Plural": "Plural", "Plural": "Plural",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Preparação", "Preparation": "Preparação",
"Previous_Day": "Dia Anterior", "Previous_Day": "Dia Anterior",

View File

@@ -104,6 +104,7 @@
"Empty": "Gol", "Empty": "Gol",
"Enable_Amount": "Activare cantitate", "Enable_Amount": "Activare cantitate",
"Energy": "Energie", "Energy": "Energie",
"Entries": "",
"Export": "Exportă", "Export": "Exportă",
"Export_As_ICal": "Exportul perioadei curente în format iCal", "Export_As_ICal": "Exportul perioadei curente în format iCal",
"Export_Not_Yet_Supported": "Exportul încă nu este compatibil", "Export_Not_Yet_Supported": "Exportul încă nu este compatibil",
@@ -244,6 +245,7 @@
"Planner": "Planificator", "Planner": "Planificator",
"Planner_Settings": "Setări planificator", "Planner_Settings": "Setări planificator",
"Plural": "Plural", "Plural": "Plural",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Pregătire", "Preparation": "Pregătire",
"Previous_Day": "Ziua precedentă", "Previous_Day": "Ziua precedentă",

View File

@@ -77,6 +77,7 @@
"Empty": "Пустой", "Empty": "Пустой",
"Enable_Amount": "Активировать Количество", "Enable_Amount": "Активировать Количество",
"Energy": "Энергетическая ценность", "Energy": "Энергетическая ценность",
"Entries": "",
"Export": "Экспорт", "Export": "Экспорт",
"Export_As_ICal": "Экспорт текущего периода в iCal формат", "Export_As_ICal": "Экспорт текущего периода в iCal формат",
"Export_To_ICal": "Экспортировать .ics", "Export_To_ICal": "Экспортировать .ics",
@@ -190,6 +191,7 @@
"Planned": "Запланировано", "Planned": "Запланировано",
"Planner": "Планировщик", "Planner": "Планировщик",
"Planner_Settings": "Настройки Планировщика", "Planner_Settings": "Настройки Планировщика",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Приготовление", "Preparation": "Приготовление",
"Previous_Day": "Предыдущий день", "Previous_Day": "Предыдущий день",

View File

@@ -77,6 +77,7 @@
"Empty": "Prazno", "Empty": "Prazno",
"Enable_Amount": "Omogoči količino", "Enable_Amount": "Omogoči količino",
"Energy": "Energija", "Energy": "Energija",
"Entries": "",
"Export": "Izvoz", "Export": "Izvoz",
"Export_As_ICal": "Izvozi trenutno obdobje v iCal format", "Export_As_ICal": "Izvozi trenutno obdobje v iCal format",
"Export_To_ICal": "Izvoz.ics", "Export_To_ICal": "Izvoz.ics",
@@ -183,6 +184,7 @@
"Planner": "Planer", "Planner": "Planer",
"Planner_Settings": "Nastavitve planerja", "Planner_Settings": "Nastavitve planerja",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Priprava", "Preparation": "Priprava",
"Previous_Day": "Prejšnji Dan", "Previous_Day": "Prejšnji Dan",

View File

@@ -122,6 +122,7 @@
"Enable_Amount": "Aktivera belopp", "Enable_Amount": "Aktivera belopp",
"EndDate": "Slutdatum", "EndDate": "Slutdatum",
"Energy": "Energi", "Energy": "Energi",
"Entries": "",
"Error": "Fel", "Error": "Fel",
"Export": "Exportera", "Export": "Exportera",
"Export_As_ICal": "Exportera nuvarande period till iCal format", "Export_As_ICal": "Exportera nuvarande period till iCal format",
@@ -279,6 +280,7 @@
"Planner": "Planerare", "Planner": "Planerare",
"Planner_Settings": "Planerare inställningar", "Planner_Settings": "Planerare inställningar",
"Plural": "Plural", "Plural": "Plural",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Förberedelse", "Preparation": "Förberedelse",
"Previous_Day": "Föregående dag", "Previous_Day": "Föregående dag",

View File

@@ -121,6 +121,7 @@
"Enable_Amount": "Tutarı Etkinleştir", "Enable_Amount": "Tutarı Etkinleştir",
"EndDate": "Bitiş Tarihi", "EndDate": "Bitiş Tarihi",
"Energy": "Enerji", "Energy": "Enerji",
"Entries": "",
"Error": "Hata", "Error": "Hata",
"Export": "Dışa Aktar", "Export": "Dışa Aktar",
"Export_As_ICal": "Mevcut dönemi iCal formatında dışa aktar", "Export_As_ICal": "Mevcut dönemi iCal formatında dışa aktar",
@@ -278,6 +279,7 @@
"Planner": "Planlayıcı", "Planner": "Planlayıcı",
"Planner_Settings": "Planlayıcı ayarları", "Planner_Settings": "Planlayıcı ayarları",
"Plural": "Çoğul", "Plural": "Çoğul",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Hazırlama", "Preparation": "Hazırlama",
"Previous_Day": "Önceki Gün", "Previous_Day": "Önceki Gün",

View File

@@ -92,6 +92,7 @@
"Empty": "Пусто", "Empty": "Пусто",
"Enable_Amount": "Включити Кількість", "Enable_Amount": "Включити Кількість",
"Energy": "Енергія", "Energy": "Енергія",
"Entries": "",
"Export": "Експорт", "Export": "Експорт",
"Export_As_ICal": "Експортувати теперішній період до формату iCal", "Export_As_ICal": "Експортувати теперішній період до формату iCal",
"Export_Not_Yet_Supported": "", "Export_Not_Yet_Supported": "",
@@ -220,6 +221,7 @@
"Planner": "Планувальний", "Planner": "Планувальний",
"Planner_Settings": "Налаштування планувальника", "Planner_Settings": "Налаштування планувальника",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "Підготовка", "Preparation": "Підготовка",
"Previous_Day": "Попередній День", "Previous_Day": "Попередній День",

View File

@@ -118,6 +118,7 @@
"Enable_Amount": "启用金额", "Enable_Amount": "启用金额",
"EndDate": "结束日期", "EndDate": "结束日期",
"Energy": "能量", "Energy": "能量",
"Entries": "",
"Export": "导出", "Export": "导出",
"Export_As_ICal": "将当前周期导出为 iCal 格式", "Export_As_ICal": "将当前周期导出为 iCal 格式",
"Export_Not_Yet_Supported": "导入尚未支持", "Export_Not_Yet_Supported": "导入尚未支持",
@@ -273,6 +274,7 @@
"Planner": "计划者", "Planner": "计划者",
"Planner_Settings": "计划者设置", "Planner_Settings": "计划者设置",
"Plural": "复数", "Plural": "复数",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "准备", "Preparation": "准备",
"Previous_Day": "前一天", "Previous_Day": "前一天",

View File

@@ -33,6 +33,7 @@
"Edit": "", "Edit": "",
"Email": "", "Email": "",
"Energy": "", "Energy": "",
"Entries": "",
"Export": "", "Export": "",
"External": "", "External": "",
"External_Recipe_Image": "外部食譜圖片", "External_Recipe_Image": "外部食譜圖片",
@@ -72,6 +73,7 @@
"Order": "", "Order": "",
"Owner": "", "Owner": "",
"Plural": "", "Plural": "",
"Postpone": "",
"Preferences": "", "Preferences": "",
"Preparation": "", "Preparation": "",
"Print": "", "Print": "",