first parts of external recipes in frontend

This commit is contained in:
vabene1111
2025-06-03 20:25:00 +02:00
parent c648ee954c
commit cd707d20a1
35 changed files with 389 additions and 6 deletions

View File

@@ -0,0 +1,53 @@
<template>
<model-editor-base
:loading="loading"
:dialog="dialog"
@save="saveObject"
@delete="deleteObject"
@close="emit('close'); editingObjChanged = false"
:is-update="isUpdate()"
:is-changed="editingObjChanged"
:model-class="modelClass"
:object-name="editingObjName()">
<v-card-text>
<v-form :disabled="loading">
<v-text-field :label="$t('Path')" v-model="editingObj.path"></v-text-field>
<v-checkbox :label="$t('Enabled')" v-model="editingObj.active"></v-checkbox>
<p>{{$t('Updated')}}: {{editingObj.updatedAt}}</p>
</v-form>
</v-card-text>
</model-editor-base>
</template>
<script setup lang="ts">
import {onMounted, PropType} from "vue";
import { Sync} from "@/openapi";
import ModelEditorBase from "@/components/model_editors/ModelEditorBase.vue";
import {useModelEditorFunctions} from "@/composables/useModelEditorFunctions";
const props = defineProps({
item: {type: {} as PropType<Sync>, required: false, default: null},
itemId: {type: [Number, String], required: false, default: undefined},
itemDefaults: {type: {} as PropType<Sync>, required: false, default: {} as Sync},
dialog: {type: Boolean, default: false}
})
const emit = defineEmits(['create', 'save', 'delete', 'close'])
const {setupState, deleteObject, saveObject, isUpdate, editingObjName, loading, editingObj, editingObjChanged, modelClass} = useModelEditorFunctions<Sync>('Sync', emit)
// object specific data (for selects/display)
onMounted(() => {
setupState(props.item, props.itemId, {itemDefaults: props.itemDefaults})
})
</script>
<style scoped>
</style>

View File

@@ -115,6 +115,7 @@
"Email": "", "Email": "",
"Empty": "", "Empty": "",
"Enable_Amount": "", "Enable_Amount": "",
"Enabled": "",
"Energy": "", "Energy": "",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -124,6 +125,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "", "Export_To_ICal": "",
"External": "", "External": "",
"ExternalStorage": "",
"External_Recipe_Image": "", "External_Recipe_Image": "",
"Failure": "", "Failure": "",
"Fats": "", "Fats": "",
@@ -375,6 +377,8 @@
"Step_start_time": "", "Step_start_time": "",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "", "Success": "",
@@ -386,6 +390,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "", "Supermarkets": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "", "Table_of_Contents": "",

View File

@@ -112,6 +112,7 @@
"Email": "", "Email": "",
"Empty": "Празно", "Empty": "Празно",
"Enable_Amount": "Активиране на сумата", "Enable_Amount": "Активиране на сумата",
"Enabled": "",
"Energy": "Енергия", "Energy": "Енергия",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -121,6 +122,7 @@
"Export_Supported": "Поддържа се експорт", "Export_Supported": "Поддържа се експорт",
"Export_To_ICal": "Експортиране на .ics", "Export_To_ICal": "Експортиране на .ics",
"External": "Външен", "External": "Външен",
"ExternalStorage": "",
"External_Recipe_Image": "Външно изображение на рецептата", "External_Recipe_Image": "Външно изображение на рецептата",
"Failure": "Неуспешно", "Failure": "Неуспешно",
"Fats": "Мазнини", "Fats": "Мазнини",
@@ -368,6 +370,8 @@
"Step_start_time": "Стъпка Начално време", "Step_start_time": "Стъпка Начално време",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Имате заместител под ръка.", "SubstituteOnHand": "Имате заместител под ръка.",
"Substitutes": "", "Substitutes": "",
"Success": "Успешно", "Success": "Успешно",
@@ -379,6 +383,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Име на супермаркет", "SupermarketName": "Име на супермаркет",
"Supermarkets": "Супермаркети", "Supermarkets": "Супермаркети",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Съдържание", "Table_of_Contents": "Съдържание",

View File

@@ -148,6 +148,7 @@
"Empty": "", "Empty": "",
"Enable": "", "Enable": "",
"Enable_Amount": "Habiliteu quantitat", "Enable_Amount": "Habiliteu quantitat",
"Enabled": "",
"EndDate": "", "EndDate": "",
"Energy": "", "Energy": "",
"Entries": "", "Entries": "",
@@ -159,6 +160,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "", "Export_To_ICal": "",
"External": "", "External": "",
"ExternalStorage": "",
"External_Recipe_Image": "Imatge externa de la recepta", "External_Recipe_Image": "Imatge externa de la recepta",
"FDC_ID": "", "FDC_ID": "",
"FDC_ID_help": "", "FDC_ID_help": "",
@@ -454,6 +456,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "", "Sticky_Nav": "",
"Sticky_Nav_Help": "", "Sticky_Nav_Help": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "", "Success": "",
@@ -465,6 +469,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "", "Supermarkets": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Taula de continguts", "Table_of_Contents": "Taula de continguts",

View File

@@ -148,6 +148,7 @@
"Empty": "Prázdné", "Empty": "Prázdné",
"Enable": "Aktivovat", "Enable": "Aktivovat",
"Enable_Amount": "Zobrazit množství", "Enable_Amount": "Zobrazit množství",
"Enabled": "",
"EndDate": "Konečné datum", "EndDate": "Konečné datum",
"Energy": "Energie", "Energy": "Energie",
"Entries": "", "Entries": "",
@@ -159,6 +160,7 @@
"Export_Supported": "Export podporován", "Export_Supported": "Export podporován",
"Export_To_ICal": "Export ovat .ics", "Export_To_ICal": "Export ovat .ics",
"External": "Externí", "External": "Externí",
"ExternalStorage": "",
"External_Recipe_Image": "Externí obrázek receptu", "External_Recipe_Image": "Externí obrázek receptu",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "ID v databázi FDC", "FDC_ID_help": "ID v databázi FDC",
@@ -450,6 +452,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Máte k dispozici náhradu.", "SubstituteOnHand": "Máte k dispozici náhradu.",
"Substitutes": "", "Substitutes": "",
"Success": "Úspěch", "Success": "Úspěch",
@@ -461,6 +465,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Název obchodu", "SupermarketName": "Název obchodu",
"Supermarkets": "Obchody", "Supermarkets": "Obchody",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Obsah", "Table_of_Contents": "Obsah",

View File

@@ -138,6 +138,7 @@
"Email": "", "Email": "",
"Empty": "Tom", "Empty": "Tom",
"Enable_Amount": "Aktiver antal", "Enable_Amount": "Aktiver antal",
"Enabled": "",
"EndDate": "Slutdato", "EndDate": "Slutdato",
"Energy": "Energi", "Energy": "Energi",
"Entries": "", "Entries": "",
@@ -148,6 +149,7 @@
"Export_Supported": "Eksport understøttet", "Export_Supported": "Eksport understøttet",
"Export_To_ICal": "Eksporter .ics", "Export_To_ICal": "Eksporter .ics",
"External": "Ekstern", "External": "Ekstern",
"ExternalStorage": "",
"External_Recipe_Image": "Eksternt billede af opskrift", "External_Recipe_Image": "Eksternt billede af opskrift",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "FDC database ID", "FDC_ID_help": "FDC database ID",
@@ -430,6 +432,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Du har erstatninger tilgængeligt.", "SubstituteOnHand": "Du har erstatninger tilgængeligt.",
"Substitutes": "", "Substitutes": "",
"Success": "Succes", "Success": "Succes",
@@ -441,6 +445,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Navn på supermarked", "SupermarketName": "Navn på supermarked",
"Supermarkets": "Supermarkeder", "Supermarkets": "Supermarkeder",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Indholdsfortegnelse", "Table_of_Contents": "Indholdsfortegnelse",

View File

@@ -151,6 +151,7 @@
"Empty": "Leer", "Empty": "Leer",
"Enable": "Aktivieren", "Enable": "Aktivieren",
"Enable_Amount": "Menge aktivieren", "Enable_Amount": "Menge aktivieren",
"Enabled": "Aktiviert",
"EndDate": "Enddatum", "EndDate": "Enddatum",
"Energy": "Energie", "Energy": "Energie",
"Entries": "Einträge", "Entries": "Einträge",
@@ -162,6 +163,7 @@
"Export_Supported": "Exportieren wird unterstützt", "Export_Supported": "Exportieren wird unterstützt",
"Export_To_ICal": "Export als .ics", "Export_To_ICal": "Export als .ics",
"External": "Extern", "External": "Extern",
"ExternalStorage": "Externer Speicher",
"External_Recipe_Image": "Externes Rezeptbild", "External_Recipe_Image": "Externes Rezeptbild",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "FDC Datenbank ID", "FDC_ID_help": "FDC Datenbank ID",
@@ -458,6 +460,8 @@
"StepsOverview": "Schrittübersicht", "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.",
"Storage": "Externer speicher",
"StorageHelp": "Externe Speicherorte an denen Rezepte als Dateien (Foto/PDF) abgelegt und mit Tandor syncronisiert werden können.",
"SubstituteOnHand": "Du hast eine Alternative vorrätig.", "SubstituteOnHand": "Du hast eine Alternative vorrätig.",
"Substitutes": "Alternativen", "Substitutes": "Alternativen",
"Success": "Erfolgreich", "Success": "Erfolgreich",
@@ -469,6 +473,10 @@
"SupermarketHelp": "In Supermärkten können Kategorien zugeordnet werden um die Einkaufsliste automatisch zu sortieren oder zu filtern. ", "SupermarketHelp": "In Supermärkten können Kategorien zugeordnet werden um die Einkaufsliste automatisch zu sortieren oder zu filtern. ",
"SupermarketName": "Name Supermarkt", "SupermarketName": "Name Supermarkt",
"Supermarkets": "Supermärkte", "Supermarkets": "Supermärkte",
"SyncLog": "Syncronisations Log",
"SyncLogHelp": "Protokoll über die syncronisation externer Datenquellen.",
"SyncedPath": "Überwachter Ordner",
"SyncedPathHelp": "Ordner auf externen Speicherorten die Überwacht werden. ",
"System": "System", "System": "System",
"Table": "Tabelle", "Table": "Tabelle",
"Table_of_Contents": "Inhaltsverzeichnis", "Table_of_Contents": "Inhaltsverzeichnis",

View File

@@ -137,6 +137,7 @@
"Email": "", "Email": "",
"Empty": "Κενό", "Empty": "Κενό",
"Enable_Amount": "Ενεργοποίηση ποσότητας", "Enable_Amount": "Ενεργοποίηση ποσότητας",
"Enabled": "",
"Energy": "Ενέργεια", "Energy": "Ενέργεια",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -146,6 +147,7 @@
"Export_Supported": "Υποστηρίζεται εξαγωγή", "Export_Supported": "Υποστηρίζεται εξαγωγή",
"Export_To_ICal": "Εξαγωγή .ics", "Export_To_ICal": "Εξαγωγή .ics",
"External": "Εξωτερική", "External": "Εξωτερική",
"ExternalStorage": "",
"External_Recipe_Image": "Εξωτερική εικόνα συνταγής", "External_Recipe_Image": "Εξωτερική εικόνα συνταγής",
"Failure": "Αποτυχία", "Failure": "Αποτυχία",
"Fats": "Λιπαρά", "Fats": "Λιπαρά",
@@ -421,6 +423,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "Κολλητική πλοήγηση", "Sticky_Nav": "Κολλητική πλοήγηση",
"Sticky_Nav_Help": "Μόνιμη εμφάνιση του μενού πλοήγησης στο πάνω μέρος της οθόνης.", "Sticky_Nav_Help": "Μόνιμη εμφάνιση του μενού πλοήγησης στο πάνω μέρος της οθόνης.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Έχετε διαθέσιμο ένα υποκατάστατο.", "SubstituteOnHand": "Έχετε διαθέσιμο ένα υποκατάστατο.",
"Substitutes": "", "Substitutes": "",
"Success": "Επιτυχία", "Success": "Επιτυχία",
@@ -432,6 +436,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Όνομα supermarket", "SupermarketName": "Όνομα supermarket",
"Supermarkets": "Supermarket", "Supermarkets": "Supermarket",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Πίνακας περιεχομένων", "Table_of_Contents": "Πίνακας περιεχομένων",

View File

@@ -149,6 +149,7 @@
"Empty": "Empty", "Empty": "Empty",
"Enable": "Enable", "Enable": "Enable",
"Enable_Amount": "Enable Amount", "Enable_Amount": "Enable Amount",
"Enabled": "Enabled",
"EndDate": "End Date", "EndDate": "End Date",
"Energy": "Energy", "Energy": "Energy",
"Entries": "Entries", "Entries": "Entries",
@@ -160,6 +161,7 @@
"Export_Supported": "Export supported", "Export_Supported": "Export supported",
"Export_To_ICal": "Export .ics", "Export_To_ICal": "Export .ics",
"External": "External", "External": "External",
"ExternalStorage": "External storage",
"External_Recipe_Image": "External Recipe Image", "External_Recipe_Image": "External Recipe Image",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "FDC database ID", "FDC_ID_help": "FDC database ID",
@@ -456,6 +458,8 @@
"StepsOverview": "Steps Overview", "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.",
"Storage": "External Storage",
"StorageHelp": "External storage locations where recipe files (image/pdf) can be stored and synced with Tandoor.",
"SubstituteOnHand": "You have a substitute on hand.", "SubstituteOnHand": "You have a substitute on hand.",
"Substitutes": "Substitutes", "Substitutes": "Substitutes",
"Success": "Success", "Success": "Success",
@@ -467,6 +471,10 @@
"SupermarketHelp": "With supermarkets you can link categories to automatically sort and filter shopping lists. ", "SupermarketHelp": "With supermarkets you can link categories to automatically sort and filter shopping lists. ",
"SupermarketName": "Supermarket Name", "SupermarketName": "Supermarket Name",
"Supermarkets": "Supermarkets", "Supermarkets": "Supermarkets",
"SyncLog": "Syncronization Log",
"SyncLogHelp": "Protocol for external recipe sync.",
"SyncedPath": "Synced folder",
"SyncedPathHelp": "Folders on external storage locations that are monitored. ",
"System": "System", "System": "System",
"Table": "Table", "Table": "Table",
"Table_of_Contents": "Table of Contents", "Table_of_Contents": "Table of Contents",

View File

@@ -149,6 +149,7 @@
"Empty": "Vacio", "Empty": "Vacio",
"Enable": "Activado", "Enable": "Activado",
"Enable_Amount": "Habilitar cantidad", "Enable_Amount": "Habilitar cantidad",
"Enabled": "",
"EndDate": "Fecha de Fin", "EndDate": "Fecha de Fin",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
@@ -160,6 +161,7 @@
"Export_Supported": "Exportación soportada", "Export_Supported": "Exportación soportada",
"Export_To_ICal": "Exportar .ics", "Export_To_ICal": "Exportar .ics",
"External": "Externo", "External": "Externo",
"ExternalStorage": "",
"External_Recipe_Image": "Imagen externa de la receta", "External_Recipe_Image": "Imagen externa de la receta",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "FDC ID de base de datos", "FDC_ID_help": "FDC ID de base de datos",
@@ -454,6 +456,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Tienen un sustituto disponible.", "SubstituteOnHand": "Tienen un sustituto disponible.",
"Substitutes": "", "Substitutes": "",
"Success": "Exito", "Success": "Exito",
@@ -465,6 +469,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Nombre del Supermercado", "SupermarketName": "Nombre del Supermercado",
"Supermarkets": "Supermercados", "Supermarkets": "Supermercados",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Tabla de contenido", "Table_of_Contents": "Tabla de contenido",

View File

@@ -91,6 +91,7 @@
"Email": "", "Email": "",
"Empty": "Tyhjä", "Empty": "Tyhjä",
"Enable_Amount": "Ota Määrä käyttöön", "Enable_Amount": "Ota Määrä käyttöön",
"Enabled": "",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -98,6 +99,7 @@
"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",
"External": "Ulkoinen", "External": "Ulkoinen",
"ExternalStorage": "",
"External_Recipe_Image": "Ulkoinen reseptin kuva", "External_Recipe_Image": "Ulkoinen reseptin kuva",
"Failure": "Epäonnistui", "Failure": "Epäonnistui",
"Fats": "Rasvat", "Fats": "Rasvat",
@@ -297,12 +299,18 @@
"Step_start_time": "Vaiheen aloitusaika", "Step_start_time": "Vaiheen aloitusaika",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"Substitutes": "", "Substitutes": "",
"Success": "Onnistui", "Success": "Onnistui",
"Sunday": "", "Sunday": "",
"Supermarket": "Supermarket", "Supermarket": "Supermarket",
"SupermarketCategoryHelp": "", "SupermarketCategoryHelp": "",
"SupermarketHelp": "", "SupermarketHelp": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Sisällysluettelo", "Table_of_Contents": "Sisällysluettelo",

View File

@@ -148,6 +148,7 @@
"Empty": "Vider", "Empty": "Vider",
"Enable": "Activer", "Enable": "Activer",
"Enable_Amount": "Activer la quantité", "Enable_Amount": "Activer la quantité",
"Enabled": "",
"EndDate": "Date de fin", "EndDate": "Date de fin",
"Energy": "Énergie", "Energy": "Énergie",
"Entries": "", "Entries": "",
@@ -159,6 +160,7 @@
"Export_Supported": "Exportation prise en charge", "Export_Supported": "Exportation prise en charge",
"Export_To_ICal": "Exporter .ics", "Export_To_ICal": "Exporter .ics",
"External": "Externe", "External": "Externe",
"ExternalStorage": "",
"External_Recipe_Image": "Image de recette externe", "External_Recipe_Image": "Image de recette externe",
"FDC_ID": "ID FCD", "FDC_ID": "ID FCD",
"FDC_ID_help": "ID de base de données FDC", "FDC_ID_help": "ID de base de données FDC",
@@ -454,6 +456,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"Substitutes": "", "Substitutes": "",
"Success": "Réussite", "Success": "Réussite",
"SuccessClipboard": "Liste de courses copiée dans le presse-papiers", "SuccessClipboard": "Liste de courses copiée dans le presse-papiers",
@@ -464,6 +468,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Nom du supermarché", "SupermarketName": "Nom du supermarché",
"Supermarkets": "Supermarchés", "Supermarkets": "Supermarchés",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Table des Matières", "Table_of_Contents": "Table des Matières",

View File

@@ -149,6 +149,7 @@
"Empty": "ריק", "Empty": "ריק",
"Enable": "הפעל", "Enable": "הפעל",
"Enable_Amount": "אפשר כמות", "Enable_Amount": "אפשר כמות",
"Enabled": "",
"EndDate": "תאריך סיום", "EndDate": "תאריך סיום",
"Energy": "אנרגיה", "Energy": "אנרגיה",
"Entries": "", "Entries": "",
@@ -160,6 +161,7 @@
"Export_Supported": "ייצוא נתמך", "Export_Supported": "ייצוא נתמך",
"Export_To_ICal": "ייצא .ics", "Export_To_ICal": "ייצא .ics",
"External": "חיצוני", "External": "חיצוני",
"ExternalStorage": "",
"External_Recipe_Image": "תמונת מתכון חיצונית", "External_Recipe_Image": "תמונת מתכון חיצונית",
"FDC_ID": "מספר FDC", "FDC_ID": "מספר FDC",
"FDC_ID_help": "מספר FDC", "FDC_ID_help": "מספר FDC",
@@ -455,6 +457,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "ניווט דביק", "Sticky_Nav": "ניווט דביק",
"Sticky_Nav_Help": "תמיד הצג את תפריט הניווט בראש העמוד.", "Sticky_Nav_Help": "תמיד הצג את תפריט הניווט בראש העמוד.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "יש לך תחלופה זמינה.", "SubstituteOnHand": "יש לך תחלופה זמינה.",
"Substitutes": "", "Substitutes": "",
"Success": "הצלחה", "Success": "הצלחה",
@@ -466,6 +470,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "שם סופרמרקט", "SupermarketName": "שם סופרמרקט",
"Supermarkets": "סופרמרקטים", "Supermarkets": "סופרמרקטים",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "תוכן עניינים", "Table_of_Contents": "תוכן עניינים",

View File

@@ -136,6 +136,7 @@
"Email": "", "Email": "",
"Empty": "Üres", "Empty": "Üres",
"Enable_Amount": "Összeg bekapcsolása", "Enable_Amount": "Összeg bekapcsolása",
"Enabled": "",
"EndDate": "Befejezés dátuma", "EndDate": "Befejezés dátuma",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
@@ -146,6 +147,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "", "Export_To_ICal": "",
"External": "Külső", "External": "Külső",
"ExternalStorage": "",
"External_Recipe_Image": "Külső receptkép", "External_Recipe_Image": "Külső receptkép",
"Failure": "Hiba", "Failure": "Hiba",
"Fats": "Zsírok", "Fats": "Zsírok",
@@ -423,6 +425,8 @@
"Steps": "", "Steps": "",
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Van elérhető helyettesítője.", "SubstituteOnHand": "Van elérhető helyettesítője.",
"Substitutes": "", "Substitutes": "",
"Success": "Sikeres", "Success": "Sikeres",
@@ -434,6 +438,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Szupermarket neve", "SupermarketName": "Szupermarket neve",
"Supermarkets": "Szupermarketek", "Supermarkets": "Szupermarketek",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Tartalomjegyzék", "Table_of_Contents": "Tartalomjegyzék",

View File

@@ -74,11 +74,13 @@
"Edit_Recipe": "Խմբագրել բաղադրատոմսը", "Edit_Recipe": "Խմբագրել բաղադրատոմսը",
"Email": "", "Email": "",
"Empty": "Դատարկ", "Empty": "Դատարկ",
"Enabled": "",
"Energy": "", "Energy": "",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
"Export": "", "Export": "",
"External": "", "External": "",
"ExternalStorage": "",
"External_Recipe_Image": "", "External_Recipe_Image": "",
"Fats": "", "Fats": "",
"File": "", "File": "",
@@ -235,12 +237,18 @@
"Step_start_time": "Քայլի սկսելու ժամանակը", "Step_start_time": "Քայլի սկսելու ժամանակը",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"Substitutes": "", "Substitutes": "",
"Success": "", "Success": "",
"Sunday": "", "Sunday": "",
"Supermarket": "", "Supermarket": "",
"SupermarketCategoryHelp": "", "SupermarketCategoryHelp": "",
"SupermarketHelp": "", "SupermarketHelp": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Բովանդակություն", "Table_of_Contents": "Բովանդակություն",

View File

@@ -126,6 +126,7 @@
"Email": "", "Email": "",
"Empty": "", "Empty": "",
"Enable_Amount": "Aktifkan Jumlah", "Enable_Amount": "Aktifkan Jumlah",
"Enabled": "",
"Energy": "Energi", "Energy": "Energi",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -135,6 +136,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "", "Export_To_ICal": "",
"External": "Luar", "External": "Luar",
"ExternalStorage": "",
"External_Recipe_Image": "Gambar Resep Eksternal", "External_Recipe_Image": "Gambar Resep Eksternal",
"Failure": "Kegagalan", "Failure": "Kegagalan",
"Fats": "Lemak", "Fats": "Lemak",
@@ -399,6 +401,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "", "Sticky_Nav": "",
"Sticky_Nav_Help": "", "Sticky_Nav_Help": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "Sukses", "Success": "Sukses",
@@ -410,6 +414,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "", "Supermarkets": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Daftar isi", "Table_of_Contents": "Daftar isi",

View File

@@ -148,6 +148,7 @@
"Empty": "", "Empty": "",
"Enable": "", "Enable": "",
"Enable_Amount": "", "Enable_Amount": "",
"Enabled": "",
"EndDate": "", "EndDate": "",
"Energy": "", "Energy": "",
"Entries": "", "Entries": "",
@@ -159,6 +160,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "", "Export_To_ICal": "",
"External": "", "External": "",
"ExternalStorage": "",
"External_Recipe_Image": "", "External_Recipe_Image": "",
"FDC_ID": "", "FDC_ID": "",
"FDC_ID_help": "", "FDC_ID_help": "",
@@ -453,6 +455,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "", "Sticky_Nav": "",
"Sticky_Nav_Help": "", "Sticky_Nav_Help": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "", "Success": "",
@@ -464,6 +468,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "", "Supermarkets": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "", "Table_of_Contents": "",

View File

@@ -131,6 +131,7 @@
"Email": "", "Email": "",
"Empty": "Vuoto", "Empty": "Vuoto",
"Enable_Amount": "Abilita Quantità", "Enable_Amount": "Abilita Quantità",
"Enabled": "",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -140,6 +141,7 @@
"Export_Supported": "Esportazione supportata", "Export_Supported": "Esportazione supportata",
"Export_To_ICal": "Esporta .ics", "Export_To_ICal": "Esporta .ics",
"External": "Esterna", "External": "Esterna",
"ExternalStorage": "",
"External_Recipe_Image": "Immagine ricetta esterna", "External_Recipe_Image": "Immagine ricetta esterna",
"Failure": "Errore", "Failure": "Errore",
"Fats": "Grassi", "Fats": "Grassi",
@@ -408,6 +410,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Hai un sostituto disponibile.", "SubstituteOnHand": "Hai un sostituto disponibile.",
"Substitutes": "", "Substitutes": "",
"Success": "Riuscito", "Success": "Riuscito",
@@ -419,6 +423,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Nome supermercato", "SupermarketName": "Nome supermercato",
"Supermarkets": "Supermercati", "Supermarkets": "Supermercati",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Indice dei contenuti", "Table_of_Contents": "Indice dei contenuti",

View File

@@ -138,6 +138,7 @@
"Email": "", "Email": "",
"Empty": "", "Empty": "",
"Enable_Amount": "Įjungti sumą", "Enable_Amount": "Įjungti sumą",
"Enabled": "",
"EndDate": "", "EndDate": "",
"Energy": "", "Energy": "",
"Entries": "", "Entries": "",
@@ -148,6 +149,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "", "Export_To_ICal": "",
"External": "", "External": "",
"ExternalStorage": "",
"External_Recipe_Image": "Išorinis recepto vaizdas", "External_Recipe_Image": "Išorinis recepto vaizdas",
"Failure": "", "Failure": "",
"Fats": "", "Fats": "",
@@ -428,6 +430,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "", "Sticky_Nav": "",
"Sticky_Nav_Help": "", "Sticky_Nav_Help": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "", "Success": "",
@@ -439,6 +443,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "", "Supermarkets": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Turinys", "Table_of_Contents": "Turinys",

View File

@@ -135,6 +135,7 @@
"Email": "", "Email": "",
"Empty": "Tom", "Empty": "Tom",
"Enable_Amount": "Aktiver mengde", "Enable_Amount": "Aktiver mengde",
"Enabled": "",
"Energy": "Energi", "Energy": "Energi",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -144,6 +145,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "Eksporter .ics", "Export_To_ICal": "Eksporter .ics",
"External": "Ekstern", "External": "Ekstern",
"ExternalStorage": "",
"External_Recipe_Image": "Bilde av ekstern oppskrift", "External_Recipe_Image": "Bilde av ekstern oppskrift",
"Failure": "Feil", "Failure": "Feil",
"Fats": "Fett", "Fats": "Fett",
@@ -419,6 +421,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "", "Sticky_Nav": "",
"Sticky_Nav_Help": "", "Sticky_Nav_Help": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "Vellykket", "Success": "Vellykket",
@@ -430,6 +434,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Butikk Navn", "SupermarketName": "Butikk Navn",
"Supermarkets": "Butikker", "Supermarkets": "Butikker",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Innholdsfortegnelse", "Table_of_Contents": "Innholdsfortegnelse",

View File

@@ -139,6 +139,7 @@
"Email": "", "Email": "",
"Empty": "Leeg", "Empty": "Leeg",
"Enable_Amount": "Schakel hoeveelheid in", "Enable_Amount": "Schakel hoeveelheid in",
"Enabled": "",
"Energy": "Energie", "Energy": "Energie",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -148,6 +149,7 @@
"Export_Supported": "Export ondersteund", "Export_Supported": "Export ondersteund",
"Export_To_ICal": "Exporteer .ics", "Export_To_ICal": "Exporteer .ics",
"External": "Externe", "External": "Externe",
"ExternalStorage": "",
"External_Recipe_Image": "Externe Afbeelding Recept", "External_Recipe_Image": "Externe Afbeelding Recept",
"Failure": "Storing", "Failure": "Storing",
"Fats": "Vetten", "Fats": "Vetten",
@@ -423,6 +425,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Je hebt een vervanger op voorraad.", "SubstituteOnHand": "Je hebt een vervanger op voorraad.",
"Substitutes": "", "Substitutes": "",
"Success": "Succes", "Success": "Succes",
@@ -434,6 +438,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Naam supermarkt", "SupermarketName": "Naam supermarkt",
"Supermarkets": "Supermarkten", "Supermarkets": "Supermarkten",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Inhoudsopgave", "Table_of_Contents": "Inhoudsopgave",

View File

@@ -150,6 +150,7 @@
"Empty": "Pusty", "Empty": "Pusty",
"Enable": "Włączyć", "Enable": "Włączyć",
"Enable_Amount": "Włącz ilość", "Enable_Amount": "Włącz ilość",
"Enabled": "",
"EndDate": "Data końcowa", "EndDate": "Data końcowa",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
@@ -161,6 +162,7 @@
"Export_Supported": "Eksportowanie wspierane", "Export_Supported": "Eksportowanie wspierane",
"Export_To_ICal": "Eksportuj .ics", "Export_To_ICal": "Eksportuj .ics",
"External": "Zewnętrzny", "External": "Zewnętrzny",
"ExternalStorage": "",
"External_Recipe_Image": "Zewnętrzny obraz dla przepisu", "External_Recipe_Image": "Zewnętrzny obraz dla przepisu",
"FDC_ID": "Identyfikator FDC", "FDC_ID": "Identyfikator FDC",
"FDC_ID_help": "Identyfikator bazy FDC", "FDC_ID_help": "Identyfikator bazy FDC",
@@ -456,6 +458,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Masz pod ręką zamienniki.", "SubstituteOnHand": "Masz pod ręką zamienniki.",
"Substitutes": "", "Substitutes": "",
"Success": "Powodzenie", "Success": "Powodzenie",
@@ -467,6 +471,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Nazwa supermarketu", "SupermarketName": "Nazwa supermarketu",
"Supermarkets": "Supermarkety", "Supermarkets": "Supermarkety",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Spis treści", "Table_of_Contents": "Spis treści",

View File

@@ -116,6 +116,7 @@
"Email": "", "Email": "",
"Empty": "Esvaziar", "Empty": "Esvaziar",
"Enable_Amount": "Ativar quantidade", "Enable_Amount": "Ativar quantidade",
"Enabled": "",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -123,6 +124,7 @@
"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",
"External": "Externo", "External": "Externo",
"ExternalStorage": "",
"External_Recipe_Image": "Imagem da receita externa", "External_Recipe_Image": "Imagem da receita externa",
"Failure": "Falha", "Failure": "Falha",
"Fats": "Gorduras", "Fats": "Gorduras",
@@ -362,6 +364,8 @@
"Step_start_time": "Hora de Inicio do passo", "Step_start_time": "Hora de Inicio do passo",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "Sucesso", "Success": "Sucesso",
@@ -373,6 +377,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "Supermercados", "Supermarkets": "Supermercados",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Tabela de Conteúdos", "Table_of_Contents": "Tabela de Conteúdos",

View File

@@ -145,6 +145,7 @@
"Email": "", "Email": "",
"Empty": "Vazio", "Empty": "Vazio",
"Enable_Amount": "Habilitar Quantidade", "Enable_Amount": "Habilitar Quantidade",
"Enabled": "",
"EndDate": "Data Fim", "EndDate": "Data Fim",
"Energy": "Energia", "Energy": "Energia",
"Entries": "", "Entries": "",
@@ -155,6 +156,7 @@
"Export_Supported": "Exportação suportada", "Export_Supported": "Exportação suportada",
"Export_To_ICal": "Exportar .ics", "Export_To_ICal": "Exportar .ics",
"External": "Externo", "External": "Externo",
"ExternalStorage": "",
"External_Recipe_Image": "Imagem externa da receita", "External_Recipe_Image": "Imagem externa da receita",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "ID do banco de dados FDC", "FDC_ID_help": "ID do banco de dados FDC",
@@ -438,6 +440,8 @@
"Steps": "", "Steps": "",
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Você tem um substituto disponível.", "SubstituteOnHand": "Você tem um substituto disponível.",
"Substitutes": "", "Substitutes": "",
"Success": "Sucesso", "Success": "Sucesso",
@@ -449,6 +453,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Nome do Supermercado", "SupermarketName": "Nome do Supermercado",
"Supermarkets": "Supermercados", "Supermarkets": "Supermercados",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Índice", "Table_of_Contents": "Índice",

View File

@@ -133,6 +133,7 @@
"Email": "", "Email": "",
"Empty": "Gol", "Empty": "Gol",
"Enable_Amount": "Activare cantitate", "Enable_Amount": "Activare cantitate",
"Enabled": "",
"Energy": "Energie", "Energy": "Energie",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -142,6 +143,7 @@
"Export_Supported": "Export compatibil", "Export_Supported": "Export compatibil",
"Export_To_ICal": "Exportă .ics", "Export_To_ICal": "Exportă .ics",
"External": "Extern", "External": "Extern",
"ExternalStorage": "",
"External_Recipe_Image": "Imagine rețetă externă", "External_Recipe_Image": "Imagine rețetă externă",
"Failure": "Eșec", "Failure": "Eșec",
"Fats": "Grăsimi", "Fats": "Grăsimi",
@@ -412,6 +414,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Ai un înlocuitor la îndemână.", "SubstituteOnHand": "Ai un înlocuitor la îndemână.",
"Substitutes": "", "Substitutes": "",
"Success": "Succes", "Success": "Succes",
@@ -423,6 +427,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Numele supermarketului", "SupermarketName": "Numele supermarketului",
"Supermarkets": "Supermarket-uri", "Supermarkets": "Supermarket-uri",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Cuprins", "Table_of_Contents": "Cuprins",

View File

@@ -106,6 +106,7 @@
"Email": "", "Email": "",
"Empty": "Пустой", "Empty": "Пустой",
"Enable_Amount": "Активировать Количество", "Enable_Amount": "Активировать Количество",
"Enabled": "",
"Energy": "Энергетическая ценность", "Energy": "Энергетическая ценность",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -113,6 +114,7 @@
"Export_As_ICal": "Экспорт текущего периода в iCal формат", "Export_As_ICal": "Экспорт текущего периода в iCal формат",
"Export_To_ICal": "Экспортировать .ics", "Export_To_ICal": "Экспортировать .ics",
"External": "Внешний", "External": "Внешний",
"ExternalStorage": "",
"External_Recipe_Image": "Изображение рецепта из внешнего источника", "External_Recipe_Image": "Изображение рецепта из внешнего источника",
"Failure": "Ошибка", "Failure": "Ошибка",
"Fats": "Жиры", "Fats": "Жиры",
@@ -347,6 +349,8 @@
"Step_start_time": "Время начала шага", "Step_start_time": "Время начала шага",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"Substitutes": "", "Substitutes": "",
"Success": "Успешно", "Success": "Успешно",
"Sunday": "", "Sunday": "",
@@ -355,6 +359,10 @@
"SupermarketCategoryHelp": "", "SupermarketCategoryHelp": "",
"SupermarketHelp": "", "SupermarketHelp": "",
"Supermarkets": "Супермаркеты", "Supermarkets": "Супермаркеты",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Содержимое", "Table_of_Contents": "Содержимое",

View File

@@ -106,6 +106,7 @@
"Email": "", "Email": "",
"Empty": "Prazno", "Empty": "Prazno",
"Enable_Amount": "Omogoči količino", "Enable_Amount": "Omogoči količino",
"Enabled": "",
"Energy": "Energija", "Energy": "Energija",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -113,6 +114,7 @@
"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",
"External": "Zunanje", "External": "Zunanje",
"ExternalStorage": "",
"External_Recipe_Image": "Zunanja slika recepta", "External_Recipe_Image": "Zunanja slika recepta",
"Failure": "Napaka", "Failure": "Napaka",
"Fats": "Maščobe", "Fats": "Maščobe",
@@ -336,6 +338,8 @@
"Step_start_time": "Začetni čas koraka", "Step_start_time": "Začetni čas koraka",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"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",
@@ -345,6 +349,10 @@
"SupermarketCategoryHelp": "", "SupermarketCategoryHelp": "",
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Ime trgovine", "SupermarketName": "Ime trgovine",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Kazalo vsebine", "Table_of_Contents": "Kazalo vsebine",

View File

@@ -150,6 +150,7 @@
"Empty": "Tom", "Empty": "Tom",
"Enable": "Aktivera", "Enable": "Aktivera",
"Enable_Amount": "Aktivera belopp", "Enable_Amount": "Aktivera belopp",
"Enabled": "",
"EndDate": "Slutdatum", "EndDate": "Slutdatum",
"Energy": "Energi", "Energy": "Energi",
"Entries": "", "Entries": "",
@@ -161,6 +162,7 @@
"Export_Supported": "Export stöds", "Export_Supported": "Export stöds",
"Export_To_ICal": "Exportera .ics", "Export_To_ICal": "Exportera .ics",
"External": "Extern", "External": "Extern",
"ExternalStorage": "",
"External_Recipe_Image": "Extern receptbild", "External_Recipe_Image": "Extern receptbild",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "FDC databas ID", "FDC_ID_help": "FDC databas ID",
@@ -456,6 +458,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Du har ett substitut till hands.", "SubstituteOnHand": "Du har ett substitut till hands.",
"Substitutes": "", "Substitutes": "",
"Success": "Lyckas", "Success": "Lyckas",
@@ -467,6 +471,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Mataffärens namn", "SupermarketName": "Mataffärens namn",
"Supermarkets": "Mataffärer", "Supermarkets": "Mataffärer",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Innehållsförteckning", "Table_of_Contents": "Innehållsförteckning",

View File

@@ -149,6 +149,7 @@
"Empty": "Boş", "Empty": "Boş",
"Enable": "Etkinleştir", "Enable": "Etkinleştir",
"Enable_Amount": "Tutarı Etkinleştir", "Enable_Amount": "Tutarı Etkinleştir",
"Enabled": "",
"EndDate": "Bitiş Tarihi", "EndDate": "Bitiş Tarihi",
"Energy": "Enerji", "Energy": "Enerji",
"Entries": "", "Entries": "",
@@ -160,6 +161,7 @@
"Export_Supported": "Desteklenen Dışa Aktarma", "Export_Supported": "Desteklenen Dışa Aktarma",
"Export_To_ICal": ".ics olarak dışa aktar", "Export_To_ICal": ".ics olarak dışa aktar",
"External": "Harici", "External": "Harici",
"ExternalStorage": "",
"External_Recipe_Image": "Harici Tarif Resim", "External_Recipe_Image": "Harici Tarif Resim",
"FDC_ID": "FDC Kimlik", "FDC_ID": "FDC Kimlik",
"FDC_ID_help": "FDC veritabanı Kimlik", "FDC_ID_help": "FDC veritabanı Kimlik",
@@ -455,6 +457,8 @@
"StepsOverview": "", "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.",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "Elinizde bir yedek var.", "SubstituteOnHand": "Elinizde bir yedek var.",
"Substitutes": "", "Substitutes": "",
"Success": "Başarılı", "Success": "Başarılı",
@@ -466,6 +470,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "Süpermarket Adı", "SupermarketName": "Süpermarket Adı",
"Supermarkets": "Marketler", "Supermarkets": "Marketler",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "İçindekiler Tablosu", "Table_of_Contents": "İçindekiler Tablosu",

View File

@@ -121,6 +121,7 @@
"Email": "", "Email": "",
"Empty": "Пусто", "Empty": "Пусто",
"Enable_Amount": "Включити Кількість", "Enable_Amount": "Включити Кількість",
"Enabled": "",
"Energy": "Енергія", "Energy": "Енергія",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
@@ -130,6 +131,7 @@
"Export_Supported": "", "Export_Supported": "",
"Export_To_ICal": "Експортувати .ics", "Export_To_ICal": "Експортувати .ics",
"External": "Зовнішній", "External": "Зовнішній",
"ExternalStorage": "",
"External_Recipe_Image": "Зображення Зовнішнього Рецепту", "External_Recipe_Image": "Зображення Зовнішнього Рецепту",
"Failure": "Невдало", "Failure": "Невдало",
"Fats": "Жири", "Fats": "Жири",
@@ -383,6 +385,8 @@
"Step_start_time": "Час початку кроку", "Step_start_time": "Час початку кроку",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "", "SubstituteOnHand": "",
"Substitutes": "", "Substitutes": "",
"Success": "Успішно", "Success": "Успішно",
@@ -394,6 +398,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "", "SupermarketName": "",
"Supermarkets": "", "Supermarkets": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "Зміст", "Table_of_Contents": "Зміст",

View File

@@ -146,6 +146,7 @@
"Empty": "空的", "Empty": "空的",
"Enable": "启用", "Enable": "启用",
"Enable_Amount": "启用金额", "Enable_Amount": "启用金额",
"Enabled": "",
"EndDate": "结束日期", "EndDate": "结束日期",
"Energy": "能量", "Energy": "能量",
"Entries": "", "Entries": "",
@@ -156,6 +157,7 @@
"Export_Supported": "导出支持", "Export_Supported": "导出支持",
"Export_To_ICal": "导出 .ics", "Export_To_ICal": "导出 .ics",
"External": "外部", "External": "外部",
"ExternalStorage": "",
"External_Recipe_Image": "外部食谱图像", "External_Recipe_Image": "外部食谱图像",
"FDC_ID": "FDC ID", "FDC_ID": "FDC ID",
"FDC_ID_help": "FDC数据库ID", "FDC_ID_help": "FDC数据库ID",
@@ -449,6 +451,8 @@
"StepsOverview": "", "StepsOverview": "",
"Sticky_Nav": "粘性导航", "Sticky_Nav": "粘性导航",
"Sticky_Nav_Help": "始终在屏幕顶部显示导航菜单。", "Sticky_Nav_Help": "始终在屏幕顶部显示导航菜单。",
"Storage": "",
"StorageHelp": "",
"SubstituteOnHand": "你手头有一个替代品。", "SubstituteOnHand": "你手头有一个替代品。",
"Substitutes": "", "Substitutes": "",
"Success": "成功", "Success": "成功",
@@ -460,6 +464,10 @@
"SupermarketHelp": "", "SupermarketHelp": "",
"SupermarketName": "超市名", "SupermarketName": "超市名",
"Supermarkets": "超市", "Supermarkets": "超市",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "目录", "Table_of_Contents": "目录",

View File

@@ -62,11 +62,13 @@
"DuplicateFoundInfo": "", "DuplicateFoundInfo": "",
"Edit": "", "Edit": "",
"Email": "", "Email": "",
"Enabled": "",
"Energy": "", "Energy": "",
"Entries": "", "Entries": "",
"ErrorUrlListImport": "", "ErrorUrlListImport": "",
"Export": "", "Export": "",
"External": "", "External": "",
"ExternalStorage": "",
"External_Recipe_Image": "外部食譜圖片", "External_Recipe_Image": "外部食譜圖片",
"Failure": "", "Failure": "",
"Fats": "", "Fats": "",
@@ -205,12 +207,18 @@
"Step_start_time": "步驟開始時間", "Step_start_time": "步驟開始時間",
"Steps": "", "Steps": "",
"StepsOverview": "", "StepsOverview": "",
"Storage": "",
"StorageHelp": "",
"Substitutes": "", "Substitutes": "",
"Success": "", "Success": "",
"Sunday": "", "Sunday": "",
"Supermarket": "", "Supermarket": "",
"SupermarketCategoryHelp": "", "SupermarketCategoryHelp": "",
"SupermarketHelp": "", "SupermarketHelp": "",
"SyncLog": "",
"SyncLogHelp": "",
"SyncedPath": "",
"SyncedPathHelp": "",
"System": "", "System": "",
"Table": "", "Table": "",
"Table_of_Contents": "目錄", "Table_of_Contents": "目錄",

View File

@@ -49,13 +49,26 @@
<database-model-col model="Automation"></database-model-col> <database-model-col model="Automation"></database-model-col>
<database-model-col model="UserFile"></database-model-col> <database-model-col model="UserFile"></database-model-col>
<database-model-col model="CustomFilter"></database-model-col> <database-model-col model="CustomFilter"></database-model-col>
<database-link-col :to="{name: 'IngredientEditorPage'}" <database-model-col model="CookLog"></database-model-col>
<database-model-col model="ViewLog"></database-model-col>
<database-link-col :to="{name: 'IngredientEditorPage'}"
prepend-icon="fa-solid fa-table-list" prepend-icon="fa-solid fa-table-list"
:title="$t('Ingredient Editor')" :title="$t('Ingredient Editor')"
:subtitle="$t('IngredientEditorHelp')"> :subtitle="$t('IngredientEditorHelp')">
</database-link-col> </database-link-col>
</v-row>
<v-row>
<v-col>
<h2>{{ $t('External') }}</h2>
</v-col>
</v-row>
<v-row dense>
<database-model-col model="Sync"></database-model-col>
<database-model-col model="SyncLog"></database-model-col>
<database-model-col model="Storage"></database-model-col>
</v-row> </v-row>
</v-container> </v-container>

View File

@@ -12,9 +12,9 @@
<v-row dense> <v-row dense>
<v-col> <v-col>
<v-card :prepend-icon="genericModel.model.icon" :title="$t(genericModel.model.localizationKey)"> <v-card :prepend-icon="genericModel.model.icon" :title="$t(genericModel.model.localizationKey)">
<template #subtitle v-if="TFood.localizationKeyDescription"> <template #subtitle v-if="genericModel.model.localizationKeyDescription">
<div class="text-wrap"> <div class="text-wrap">
{{ $t(TFood.localizationKeyDescription) }} {{ $t(genericModel.model.localizationKeyDescription) }}
</div> </div>
</template> </template>
<template #append> <template #append>

View File

@@ -1,6 +1,6 @@
import { import {
AccessToken, AccessToken,
ApiApi, Automation, type AutomationTypeEnum, CustomFilter, ApiApi, Automation, type AutomationTypeEnum, CookLog, CustomFilter,
Food, Food,
Ingredient, Ingredient,
InviteLink, Keyword, InviteLink, Keyword,
@@ -10,10 +10,10 @@ import {
Recipe, RecipeBook, RecipeBookEntry, ShoppingListEntry, Recipe, RecipeBook, RecipeBookEntry, ShoppingListEntry,
Step, Step,
Supermarket, Supermarket,
SupermarketCategory, SupermarketCategory, Sync, SyncLog,
Unit, Unit,
UnitConversion, User, UserFile, UnitConversion, User, UserFile,
UserSpace UserSpace, ViewLog
} from "@/openapi"; } from "@/openapi";
import {VDataTable} from "vuetify/components"; import {VDataTable} from "vuetify/components";
import {getNestedProperty} from "@/utils/utils"; import {getNestedProperty} from "@/utils/utils";
@@ -135,6 +135,11 @@ export type EditorSupportedModels =
| 'RecipeBook' | 'RecipeBook'
| 'RecipeBookEntry' | 'RecipeBookEntry'
| 'CustomFilter' | 'CustomFilter'
| 'Sync'
| 'SyncLog'
| 'Storage'
| 'CookLog'
| 'ViewLog'
// used to type methods/parameters in conjunction with configuration type // used to type methods/parameters in conjunction with configuration type
export type EditorSupportedTypes = export type EditorSupportedTypes =
@@ -161,6 +166,11 @@ export type EditorSupportedTypes =
| RecipeBook | RecipeBook
| RecipeBookEntry | RecipeBookEntry
| CustomFilter | CustomFilter
| Sync
| SyncLog
| Storage
| CookLog
| ViewLog
export const TFood = { export const TFood = {
name: 'Food', name: 'Food',
@@ -612,6 +622,65 @@ export const TInviteLink = {
} as Model } as Model
registerModel(TInviteLink) registerModel(TInviteLink)
export const TStorage = {
name: 'Storage',
localizationKey: 'Storage',
localizationKeyDescription: 'StorageHelp',
icon: 'fa-solid fa-cloud',
disableListView: false,
toStringKeys: ['name'],
isPaginated: false,
tableHeaders: [
{title: 'Name', key: 'name'},
{title: 'Actions', key: 'action', align: 'end'},
]
} as Model
registerModel(TStorage)
export const TSync = {
name: 'Sync',
localizationKey: 'SyncedPath',
localizationKeyDescription: 'SyncedPathHelp',
icon: 'fa-solid fa-folder-plus',
disableListView: false,
toStringKeys: ['path'],
isPaginated: true,
tableHeaders: [
{title: 'SyncedPath', key: 'path'},
{title: 'ExternalStorage', key: 'storage.name'},
{title: 'Updated', key: 'lastChecked'},
{title: 'Actions', key: 'action', align: 'end'},
]
} as Model
registerModel(TSync)
export const TSyncLog = {
name: 'SyncLog',
localizationKey: 'SyncLog',
localizationKeyDescription: 'SyncLogHelp',
icon: 'fa-solid fa-bars-staggered',
disableListView: false,
toStringKeys: ['sync.path'],
isPaginated: true,
disableCreate: true,
disableDelete: true,
disableUpdate: true,
tableHeaders: [
{title: 'SyncedPath', key: 'sync.path'},
{title: 'Status', key: 'status'},
{title: 'Created', key: 'createdAt'},
{title: 'Actions', key: 'action', align: 'end'},
]
} as Model
registerModel(TSyncLog)
export const TFoodInheritField = { export const TFoodInheritField = {
name: 'FoodInheritField', name: 'FoodInheritField',
localizationKey: 'FoodInherit', localizationKey: 'FoodInherit',