space settings base page

This commit is contained in:
vabene1111
2024-08-20 13:50:58 +02:00
parent 4ba769a49e
commit 02ffb727d5
34 changed files with 124 additions and 143 deletions

View File

@@ -1,19 +1,61 @@
<template>
<v-form>
<p class="text-h6">{{ $t('Cosmetic') }}</p>
<p class="text-h6">{{ useUserPreferenceStore().activeSpace.name }}</p>
<v-divider class="mb-3"></v-divider>
<v-row v-if="space.name != undefined">
<v-col cols="12" md="4">
<v-card>
<v-card-title><i class="fa-solid fa-book"></i> {{ $t('Recipes') }}</v-card-title>
<v-card-text>{{ $n(space.recipeCount) }} / {{ space.maxRecipes == 0 ? '∞' : $n(space.maxRecipes) }}</v-card-text>
<v-progress-linear color="success" height="10" :model-value="(space.recipeCount / space.maxRecipes) * 100"></v-progress-linear>
</v-card>
</v-col>
<v-col cols="12" md="4">
<v-card>
<v-btn class="mt-3" color="success" @click="useUserPreferenceStore().updateUserSettings()" prepend-icon="$save">{{$t('Save')}}</v-btn>
<v-card-title><i class="fa-solid fa-users"></i> {{ $t('Users') }}</v-card-title>
<v-card-text>{{ $n(space.userCount) }} / {{ space.maxUsers == 0 ? '∞' : $n(space.maxUsers) }}</v-card-text>
<v-progress-linear color="success" height="10" :model-value="(space.userCount / space.maxUsers) * 100"></v-progress-linear>
</v-card>
</v-col>
<v-col cols="12" md="4">
<v-card>
<v-card-title><i class="fa-solid fa-file"></i> {{ $t('Files') }}</v-card-title>
<v-card-text v-if="space.maxFileStorageMb > -1">{{ $n(Math.round(space.fileSizeMb)) }} / {{ space.maxFileStorageMb == 0 ? '' : $n(space.maxFileStorageMb) }} MB</v-card-text>
<v-card-text v-if="space.maxFileStorageMb == -1">{{ $t('file_upload_disabled') }}</v-card-text>
<v-progress-linear v-if="space.maxFileStorageMb > -1" color="success" height="10" :model-value="(space.fileSizeMb / space.maxFileStorageMb) * 100" ></v-progress-linear>
</v-card>
</v-col>
</v-row>
<v-divider class="mt-3 mb-3"></v-divider>
<v-text-field></v-text-field>
<v-text-field></v-text-field>
<v-text-field></v-text-field>
<v-btn class="mt-3" color="success" @click="" prepend-icon="$save">{{ $t('Save') }}</v-btn>
</v-form>
</template>
<script setup lang="ts">
import {useUserPreferenceStore} from "@/stores/UserPreferenceStore";
import {onMounted, ref} from "vue";
import {ApiApi, Space} from "@/openapi";
import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore";
const space = ref({} as Space)
onMounted(() => {
let api = new ApiApi()
api.apiSpaceCurrentRetrieve().then(r => {
space.value = r
}).catch(err => {
useMessageStore().addError(ErrorMessageType.FETCH_ERROR, err)
})
})
</script>
<style scoped>

View File

@@ -6,9 +6,11 @@
</v-row>
<v-row>
<v-col cols="3" v-for="us in userSpaces">
<v-col cols="6" v-for="s in spaces">
<v-card>
<v-card-title>{{us.space}}</v-card-title>
<v-img height="200px" :src="recipeDefaultImage" :alt="$t('Image')"> </v-img>
<v-card-title>{{ s.name }} <v-chip variant="tonal" density="compact" color="error" v-if="s.id == useUserPreferenceStore().activeSpace.id">{{$t('active')}}</v-chip></v-card-title>
<v-card-subtitle>{{ $t('created_by') }} {{ s.createdBy.displayName }} </v-card-subtitle>
</v-card>
</v-col>
</v-row>
@@ -18,16 +20,18 @@
<script setup lang="ts">
import {onMounted, ref} from "vue";
import {ApiApi, UserSpace} from "@/openapi";
import {ApiApi, Space} from "@/openapi";
import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore";
import recipeDefaultImage from '../../assets/recipe_no_image.svg'
import {useUserPreferenceStore} from "@/stores/UserPreferenceStore";
const userSpaces = ref([] as UserSpace[])
const spaces = ref([] as Space[])
onMounted(() => {
const api = new ApiApi()
api.apiUserSpaceList().then(r => {
userSpaces.value = r.results
api.apiSpaceList().then(r => {
spaces.value = r
}).catch(err => {
useMessageStore().addError(ErrorMessageType.FETCH_ERROR, err)
})

View File

@@ -68,7 +68,6 @@
"Edit_Keyword": "",
"Edit_Meal_Plan_Entry": "",
"Edit_Recipe": "",
"Email": "",
"Empty": "",
"Enable_Amount": "",
"Energy": "",
@@ -90,7 +89,6 @@
"Food_Alias": "",
"Foods": "",
"GroupBy": "",
"Groups": "",
"Hide_Food": "",
"Hide_Keyword": "",
"Hide_Keywords": "",
@@ -212,8 +210,6 @@
"Remove_nutrition_recipe": "",
"Reset": "",
"Reset_Search": "",
"Reusable": "",
"Role": "",
"Root": "",
"Save": "",
"Save_and_View": "",
@@ -283,6 +279,7 @@
"Week_Numbers": "",
"Year": "",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "",
@@ -302,6 +299,7 @@
"create_food_desc": "",
"create_rule": "",
"create_title": "",
"created_by": "",
"created_on": "",
"csv_delim_help": "",
"csv_delim_label": "",

View File

@@ -65,7 +65,6 @@
"Edit_Keyword": "Редактиране на ключова дума",
"Edit_Meal_Plan_Entry": "Редактиране на записа в плана за хранене",
"Edit_Recipe": "Редактиране на рецепта",
"Email": "",
"Empty": "Празно",
"Enable_Amount": "Активиране на сумата",
"Energy": "Енергия",
@@ -87,7 +86,6 @@
"Food_Alias": "Псевдоним на храната",
"Foods": "Храни",
"GroupBy": "Групирай по",
"Groups": "",
"Hide_Food": "Скриване на храна",
"Hide_Keyword": "Скриване на ключови думи",
"Hide_Keywords": "Скриване на ключова дума",
@@ -205,8 +203,6 @@
"Remove_nutrition_recipe": "Изтрийте хранителните стойности от рецептата",
"Reset": "Нулиране",
"Reset_Search": "Нулиране на търсенето",
"Reusable": "",
"Role": "",
"Root": "Корен",
"Save": "Запази",
"Save_and_View": "Запазете и прегледайте",
@@ -274,6 +270,7 @@
"Week_Numbers": "Номера на седмиците",
"Year": "Година",
"YourSpaces": "",
"active": "",
"add_keyword": "Добавяне на ключова дума",
"additional_options": "Допълнителни настройки",
"advanced": "Разширено",
@@ -293,6 +290,7 @@
"create_food_desc": "Създайте храна и я свържете с тази рецепта.",
"create_rule": "и създават автоматизация",
"create_title": "Нов {type}",
"created_by": "",
"created_on": "Създадено на",
"csv_delim_help": "Ограничител за използване за CSV експортиране.",
"csv_delim_label": "CSV разделител",

View File

@@ -100,7 +100,6 @@
"Edit_Keyword": "Editeu paraula clau",
"Edit_Meal_Plan_Entry": "",
"Edit_Recipe": "Editeu recepta",
"Email": "",
"Empty": "",
"Enable": "",
"Enable_Amount": "Habiliteu quantitat",
@@ -130,7 +129,6 @@
"Food_Replace": "",
"Foods": "",
"GroupBy": "",
"Groups": "",
"Hide_Food": "",
"Hide_Keyword": "",
"Hide_Keywords": "Amagueu paraula clau",
@@ -282,8 +280,6 @@
"Remove_nutrition_recipe": "Esborreu nutrició de la recepta",
"Reset": "",
"Reset_Search": "Reinicieu la cerca",
"Reusable": "",
"Role": "",
"Root": "",
"Save": "",
"Save_and_View": "Graveu-ho i mostreu-ho",
@@ -381,6 +377,7 @@
"Welcome": "",
"Year": "",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "",

View File

@@ -100,7 +100,6 @@
"Edit_Keyword": "Upravit štítek",
"Edit_Meal_Plan_Entry": "Upravit položku v jídelníčku",
"Edit_Recipe": "Upravit recept",
"Email": "",
"Empty": "Prázdné",
"Enable": "Aktivovat",
"Enable_Amount": "Zobrazit množství",
@@ -130,7 +129,6 @@
"Food_Replace": "Nahrazení v potravině",
"Foods": "Potraviny",
"GroupBy": "Seskupit podle",
"Groups": "",
"Hide_Food": "Skrýt potravinu",
"Hide_Keyword": "Skrýt štítky",
"Hide_Keywords": "Skrýt štítek",
@@ -280,8 +278,6 @@
"Remove_nutrition_recipe": "Smazat nutriční hodnoty",
"Reset": "Resetovat",
"Reset_Search": "Zrušit filtry vyhledávání",
"Reusable": "",
"Role": "",
"Root": "Kořen",
"Save": "Uložit",
"Save_and_View": "Uložit a zobrazit",
@@ -374,6 +370,7 @@
"Welcome": "Vítejte",
"Year": "Rok",
"YourSpaces": "",
"active": "",
"add_keyword": "Přidat štítek",
"additional_options": "Rozšířené možnosti",
"advanced": "Pokročilé",
@@ -397,6 +394,7 @@
"create_food_desc": "Vytvořit potravinu a propojit ji s tímto receptem.",
"create_rule": "a vytvořit automatizaci",
"create_title": "Nový {type}",
"created_by": "",
"created_on": "Vytvořeno",
"csv_delim_help": "Který znak bude použit pro oddělení záznamů v CSV.",
"csv_delim_label": "Oddělovač záznamů v CSV",

View File

@@ -91,7 +91,6 @@
"Edit_Keyword": "Rediger nøgleord",
"Edit_Meal_Plan_Entry": "Rediger punkt i madplan",
"Edit_Recipe": "Rediger opskrift",
"Email": "",
"Empty": "Tom",
"Enable_Amount": "Aktiver antal",
"EndDate": "Slutdato",
@@ -118,7 +117,6 @@
"Food_Replace": "Erstat ingrediens",
"Foods": "Mad",
"GroupBy": "Grupper efter",
"Groups": "",
"Hide_Food": "Skjul mad",
"Hide_Keyword": "Skjul nøgleord",
"Hide_Keywords": "Skjul nøgleord",
@@ -262,8 +260,6 @@
"Remove_nutrition_recipe": "Fjern næringsindhold fra opskrift",
"Reset": "Nulstil",
"Reset_Search": "Nulstil søgning",
"Reusable": "",
"Role": "",
"Root": "Rod",
"Save": "Gem",
"Save_and_View": "Gem & Vis",
@@ -352,6 +348,7 @@
"Welcome": "Velkommen",
"Year": "År",
"YourSpaces": "",
"active": "",
"add_keyword": "Tilføj nøgleord",
"additional_options": "Yderligere indstillinger",
"advanced": "Avanceret",
@@ -375,6 +372,7 @@
"create_food_desc": "Opret mad og sammenkæd den med denne opskrift.",
"create_rule": "og opret automation",
"create_title": "Ny {type}",
"created_by": "",
"created_on": "Oprettet den",
"csv_delim_help": "Tegn der skal afgrænse elementer i CSV eksporteringer.",
"csv_delim_label": "CSV afgrænsningstegn",

View File

@@ -102,7 +102,6 @@
"Edit_Keyword": "Schlagwort bearbeiten",
"Edit_Meal_Plan_Entry": "Eintrag bearbeiten",
"Edit_Recipe": "Rezept bearbeiten",
"Email": "Email",
"Empty": "Leer",
"Enable": "Aktivieren",
"Enable_Amount": "Menge aktivieren",
@@ -132,7 +131,6 @@
"Food_Replace": "Essen Ersetzen",
"Foods": "Lebensmittel",
"GroupBy": "Gruppieren nach",
"Groups": "Gruppen",
"Hide_Food": "Lebensmittel verbergen",
"Hide_Keyword": "Schlüsselwörter verbergen",
"Hide_Keywords": "Schlagwort verstecken",
@@ -284,8 +282,6 @@
"Remove_nutrition_recipe": "Nährwerte aus Rezept löschen",
"Reset": "Zurücksetzen",
"Reset_Search": "Suche zurücksetzen",
"Reusable": "Wiederverwendbar",
"Role": "Rolle",
"Root": "Wurzel",
"Save": "Speichern",
"Save_and_View": "Speichern & Ansehen",
@@ -384,6 +380,7 @@
"Welcome": "Willkommen",
"Year": "Jahr",
"YourSpaces": "Deine Spaces",
"active": "aktiv",
"add_keyword": "Stichwort hinzufügen",
"additional_options": "Weitere Möglichkeiten",
"advanced": "Erweitert",

View File

@@ -90,7 +90,6 @@
"Edit_Keyword": "Τροποποίηση λέξης-κλειδί",
"Edit_Meal_Plan_Entry": "Τροποποίηση εγγραφής στο πρόγραμμα γευμάτων",
"Edit_Recipe": "Τροποποίηση συνταγής",
"Email": "",
"Empty": "Κενό",
"Enable_Amount": "Ενεργοποίηση ποσότητας",
"Energy": "Ενέργεια",
@@ -113,7 +112,6 @@
"Food_Alias": "Ψευδώνυμο φαγητού",
"Foods": "Φαγητά",
"GroupBy": "Ομαδοποίηση κατά",
"Groups": "",
"Hide_Food": "Απόκρυψη φαγητού",
"Hide_Keyword": "Απόκρυψη λέξεων-κλειδί",
"Hide_Keywords": "Απόκρυψη λέξης-κλειδί",
@@ -254,8 +252,6 @@
"Remove_nutrition_recipe": "Αφαίρεση διατροφικής αξίας από τη συνταγή",
"Reset": "Επαναφορά",
"Reset_Search": "Επαναφορά αναζήτησης",
"Reusable": "",
"Role": "",
"Root": "Ρίζα",
"Save": "Αποθήκευση",
"Save_and_View": "Αποθήκευση και προβολή",
@@ -341,6 +337,7 @@
"Welcome": "Καλώς ήρθατε",
"Year": "Έτος",
"YourSpaces": "",
"active": "",
"add_keyword": "Προσθήκη λέξης-κλειδί",
"additional_options": "Επιπλέον επιλογές",
"advanced": "Για προχωρημένους",
@@ -364,6 +361,7 @@
"create_food_desc": "Δημιουργία φαγητού και δημιουργία συνδέσμου σε αυτή τη συνταγή.",
"create_rule": "και δημιουργία αυτοματισμού",
"create_title": "Νέο {type}",
"created_by": "",
"created_on": "Δημιουργήθηκε στις",
"csv_delim_help": "Χαρακτήρας διαχωρισμού για εξαγωγή σε CSV.",
"csv_delim_label": "Χαρακτήρας διαχωρισμού CSV",

View File

@@ -101,7 +101,6 @@
"Edit_Keyword": "Edit Keyword",
"Edit_Meal_Plan_Entry": "Edit meal plan entry",
"Edit_Recipe": "Edit Recipe",
"Email": "Email",
"Empty": "Empty",
"Enable": "Enable",
"Enable_Amount": "Enable Amount",
@@ -131,7 +130,6 @@
"Food_Replace": "Food Replace",
"Foods": "Foods",
"GroupBy": "Group By",
"Groups": "Groups",
"Hide_Food": "Hide Food",
"Hide_Keyword": "Hide keywords",
"Hide_Keywords": "Hide Keyword",
@@ -283,8 +281,6 @@
"Remove_nutrition_recipe": "Delete nutrition from recipe",
"Reset": "Reset",
"Reset_Search": "Reset Search",
"Reusable": "Reusable",
"Role": "Role",
"Root": "Root",
"Save": "Save",
"Save_and_View": "Save & View",
@@ -382,6 +378,7 @@
"Welcome": "Welcome",
"Year": "Year",
"YourSpaces": "Your Spaces",
"active": "active",
"add_keyword": "Add Keyword",
"additional_options": "Additional Options",
"advanced": "Advanced",

View File

@@ -101,7 +101,6 @@
"Edit_Keyword": "Editar palabra clave",
"Edit_Meal_Plan_Entry": "Eliminar entrada del régimen de comidas",
"Edit_Recipe": "Editar receta",
"Email": "",
"Empty": "Vacio",
"Enable": "Activado",
"Enable_Amount": "Habilitar cantidad",
@@ -131,7 +130,6 @@
"Food_Replace": "Sustituir Alimento",
"Foods": "Comida",
"GroupBy": "Agrupar por",
"Groups": "",
"Hide_Food": "Esconder ingrediente",
"Hide_Keyword": "Esconder Palabras Clave",
"Hide_Keywords": "Esconder palabra clave",
@@ -281,8 +279,6 @@
"Remove_nutrition_recipe": "Borrar nutrición de la canasta",
"Reset": "Restablecer",
"Reset_Search": "Resetear busqueda",
"Reusable": "",
"Role": "",
"Root": "Raíz",
"Save": "Guardar",
"Save_and_View": "Grabar y mostrar",
@@ -380,6 +376,7 @@
"Welcome": "Bienvenido/a",
"Year": "Año",
"YourSpaces": "",
"active": "",
"add_keyword": "Añadir Palabra Clave",
"additional_options": "Opciones Adicionales",
"advanced": "Avanzado",
@@ -403,7 +400,7 @@
"create_food_desc": "Crear ingrediente y enlazarlo con esta receta.",
"create_rule": "y crear automatización",
"create_title": "Nuevo {type}",
"created_by": "Creado por",
"created_by": "",
"created_on": "Creado En",
"csv_delim_help": "Delimitador utilizado en las exportaciones CSV.",
"csv_delim_label": "Delimitador CSV",

View File

@@ -44,7 +44,6 @@
"Edit_Keyword": "Muokkaa avainsanaa",
"Edit_Meal_Plan_Entry": "Muokkaa ateriasuunnitelma merkintää",
"Edit_Recipe": "Muokkaa Reseptiä",
"Email": "",
"Empty": "Tyhjä",
"Enable_Amount": "Ota Määrä käyttöön",
"Energy": "Energia",
@@ -59,7 +58,6 @@
"Files": "Tiedostot",
"Food": "Ruoka",
"Food_Alias": "Ruoan nimimerkki",
"Groups": "",
"Hide_Food": "Piilota ruoka",
"Hide_Keyword": "Piilota avainsana",
"Hide_Keywords": "Piilota Avainsana",
@@ -138,8 +136,6 @@
"Recipes_per_page": "Reseptejä sivulla",
"Remove_nutrition_recipe": "Poista ravintoaine reseptistä",
"Reset_Search": "Nollaa haku",
"Reusable": "",
"Role": "",
"Root": "Root",
"Save": "Tallenna",
"Save_and_View": "Tallenna & Katso",
@@ -190,6 +186,7 @@
"Week_Numbers": "Viikkonumerot",
"Year": "Vuosi",
"YourSpaces": "",
"active": "",
"all_fields_optional": "Kaikki kentät ovat valinnaisia ja voidaan jättää tyhjiksi.",
"and": "ja",
"and_up": "& Ylös",
@@ -197,6 +194,7 @@
"convert_internal": "Muunna sisäiseksi reseptiksi",
"create_rule": "ja luo automaatio",
"create_title": "Uusi {type}",
"created_by": "",
"del_confirmation_tree": "Haluatko varmasti poistaa {source} ja kaikki sen alaosat?",
"delete_confirmation": "Haluatko varmasti poistaa {source}?",
"delete_title": "Poista {type}",

View File

@@ -100,7 +100,6 @@
"Edit_Keyword": "Modifier le mot-clé",
"Edit_Meal_Plan_Entry": "Modifier une entrée de menu",
"Edit_Recipe": "Modifier la recette",
"Email": "",
"Empty": "Vider",
"Enable": "Activer",
"Enable_Amount": "Activer la quantité",
@@ -130,7 +129,6 @@
"Food_Replace": "Remplacer l'aliment",
"Foods": "Aliments",
"GroupBy": "Grouper par",
"Groups": "",
"Hide_Food": "Cacher laliment",
"Hide_Keyword": "masquer les mots clefs",
"Hide_Keywords": "Cacher le mot-clé",
@@ -282,8 +280,6 @@
"Remove_nutrition_recipe": "Supprimer les valeurs nutritionelles de la recette",
"Reset": "Réinitialiser",
"Reset_Search": "Réinitialiser la recherche",
"Reusable": "",
"Role": "",
"Root": "Racine",
"Save": "Sauvegarder",
"Save_and_View": "Sauvegarder et visualiser",
@@ -380,6 +376,7 @@
"Welcome": "Bienvenue",
"Year": "Année",
"YourSpaces": "",
"active": "",
"add_keyword": "Ajouter un Mot Clé",
"additional_options": "Options Supplémentaires",
"advanced": "Avancé",
@@ -404,7 +401,7 @@
"create_rule": "et créer une automatisation",
"create_shopping_new": "Ajouter à la NOUVELLE liste de courses",
"create_title": "Nouveau {type}",
"created_by": "Créé par",
"created_by": "",
"created_on": "Créé le",
"csv_delim_help": "Délimiteur à utiliser pour les exports CSV.",
"csv_delim_label": "Délimiteur CSV",

View File

@@ -101,7 +101,6 @@
"Edit_Keyword": "עדכן מילת מפתח",
"Edit_Meal_Plan_Entry": "ערוך רשימת תכנון אוכל",
"Edit_Recipe": "עדכן מתכון",
"Email": "",
"Empty": "ריק",
"Enable": "הפעל",
"Enable_Amount": "אפשר כמות",
@@ -131,7 +130,6 @@
"Food_Replace": "החלף אוכל",
"Foods": "מאכלים",
"GroupBy": "אסוף לפי",
"Groups": "",
"Hide_Food": "הסתר אוכל",
"Hide_Keyword": "הסתר מילות מפתח",
"Hide_Keywords": "הסתרת מילת מפתח",
@@ -283,8 +281,6 @@
"Remove_nutrition_recipe": "מחר ערכים תזונתיים מהמתכון",
"Reset": "אפס",
"Reset_Search": "אפס חיפוש",
"Reusable": "",
"Role": "",
"Root": "ראשי",
"Save": "שמור",
"Save_and_View": "שמור וצפה",
@@ -382,6 +378,7 @@
"Welcome": "ברוכים הבאים",
"Year": "שנה",
"YourSpaces": "",
"active": "",
"add_keyword": "הוסף מילת מפתח",
"additional_options": "אפשרויות נוספות",
"advanced": "מתקדם",
@@ -405,7 +402,7 @@
"create_food_desc": "צור מאכל וקשרו למתכון.",
"create_rule": "וגם צור אוטומציה",
"create_title": "חדש {type}",
"created_by": "נוצר על ידי",
"created_by": "",
"created_on": "נוצר ב",
"csv_delim_help": "תוחם לשימוש בייצוא לCSV.",
"csv_delim_label": "תוחם CSV",

View File

@@ -89,7 +89,6 @@
"Edit_Keyword": "Kulcsszó szerkesztése",
"Edit_Meal_Plan_Entry": "Menüterv bejegyzés szerkesztése",
"Edit_Recipe": "Recept szerkesztése",
"Email": "",
"Empty": "Üres",
"Enable_Amount": "Összeg bekapcsolása",
"EndDate": "Befejezés dátuma",
@@ -114,7 +113,6 @@
"Food_Replace": "Étel cseréje",
"Foods": "Alapanyagok",
"GroupBy": "Csoportosítva",
"Groups": "",
"Hide_Food": "Alapanyag elrejtése",
"Hide_Keyword": "Kulcsszavak elrejtése",
"Hide_Keywords": "Kulcsszó elrejtése",
@@ -256,8 +254,6 @@
"Remove_nutrition_recipe": "Tápértékadatok törlése a receptből",
"Reset": "Visszaállítás",
"Reset_Search": "Keresés alaphelyzetbe állítása",
"Reusable": "",
"Role": "",
"Root": "Gyökér",
"Save": "Mentés",
"Save_and_View": "Mentés & megtekintés",
@@ -342,6 +338,7 @@
"Welcome": "Üdvözöljük",
"Year": "Év",
"YourSpaces": "",
"active": "",
"add_keyword": "Kulcsszó hozzáadása",
"additional_options": "További lehetőségek",
"advanced": "Haladó",
@@ -365,6 +362,7 @@
"create_food_desc": "",
"create_rule": "és automatizálás létrehozása",
"create_title": "Új {type}",
"created_by": "",
"created_on": "Létrehozva",
"csv_delim_help": "A CSV exportáláshoz használandó határolójel.",
"csv_delim_label": "CSV elválasztó",

View File

@@ -28,7 +28,6 @@
"Edit_Food": "Խմբագրել սննդամթերքը",
"Edit_Keyword": "Խմբագրել բանալի բառը",
"Edit_Recipe": "Խմբագրել բաղադրատոմսը",
"Email": "",
"Empty": "Դատարկ",
"Energy": "",
"Export": "",
@@ -38,7 +37,6 @@
"File": "",
"Files": "",
"Food": "Սննդամթերք",
"Groups": "",
"Hide_Food": "Թաքցնել սննդամթերքը",
"Hide_Keywords": "Թաքցնել բանալի բառը",
"Hide_Recipes": "Թաքցնել բաղադրատոմսերը",
@@ -84,8 +82,6 @@
"Recipes_per_page": "Բաղադրատոմս էջում",
"Remove_nutrition_recipe": "Հեռացնել բաղադրատոմսի սննդայնությունը",
"Reset_Search": "Զրոյացնել որոնումը",
"Reusable": "",
"Role": "",
"Save": "",
"Save_and_View": "Պահպանել և Դիտել",
"Search": "",
@@ -117,11 +113,13 @@
"View_Recipes": "Դիտել բաղադրատոմսերը",
"Waiting": "",
"YourSpaces": "",
"active": "",
"all_fields_optional": "Բոլոր տողերը կամավոր են և կարող են մնալ դատարկ։",
"and": "և",
"confirm_delete": "Համոզվա՞ծ եք, որ ուզում եք ջնջել այս {օբյեկտը}։",
"convert_internal": "Փոխակերպել ներքին բաղադրատոմսի",
"create_rule": "և ստեղծել ավտոմատացում",
"created_by": "",
"delete_confirmation": "Համոզվա՞ծ եք, որ ուզում եք ջնջել։",
"err_creating_resource": "Ռեսուրսը ստեղծելիս սխալ է գրանցվել:",
"err_deleting_resource": "Ռեսուրսը ջնջելիս սխալ է գրանցվել:",

View File

@@ -79,7 +79,6 @@
"Edit_Keyword": "Rubah Kata Kunci",
"Edit_Meal_Plan_Entry": "",
"Edit_Recipe": "Rubah Resep",
"Email": "",
"Empty": "",
"Enable_Amount": "Aktifkan Jumlah",
"Energy": "Energi",
@@ -102,7 +101,6 @@
"Food_Alias": "",
"Foods": "",
"GroupBy": "",
"Groups": "",
"Hide_Food": "",
"Hide_Keyword": "",
"Hide_Keywords": "Sembunyikan Kata Kunci",
@@ -232,8 +230,6 @@
"Remove_nutrition_recipe": "Hapus nutrisi dari resep",
"Reset": "",
"Reset_Search": "Setel Ulang Pencarian",
"Reusable": "",
"Role": "",
"Root": "Akar",
"Save": "Menyimpan",
"Save_and_View": "Simpan & Lihat",
@@ -309,6 +305,7 @@
"Week_Numbers": "",
"Year": "",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "",
@@ -328,6 +325,7 @@
"create_food_desc": "",
"create_rule": "dan buat otomatisasi",
"create_title": "",
"created_by": "",
"created_on": "",
"csv_delim_help": "",
"csv_delim_label": "",

View File

@@ -100,7 +100,6 @@
"Edit_Keyword": "",
"Edit_Meal_Plan_Entry": "",
"Edit_Recipe": "",
"Email": "",
"Empty": "",
"Enable": "",
"Enable_Amount": "",
@@ -130,7 +129,6 @@
"Food_Replace": "",
"Foods": "",
"GroupBy": "",
"Groups": "",
"Hide_Food": "",
"Hide_Keyword": "",
"Hide_Keywords": "",
@@ -282,8 +280,6 @@
"Remove_nutrition_recipe": "",
"Reset": "",
"Reset_Search": "",
"Reusable": "",
"Role": "",
"Root": "",
"Save": "",
"Save_and_View": "",
@@ -380,6 +376,7 @@
"Welcome": "",
"Year": "",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "",

View File

@@ -84,7 +84,6 @@
"Edit_Keyword": "Modifica parola chiave",
"Edit_Meal_Plan_Entry": "Modifica voce del piano alimentare",
"Edit_Recipe": "Modifica Ricetta",
"Email": "",
"Empty": "Vuoto",
"Enable_Amount": "Abilita Quantità",
"Energy": "Energia",
@@ -107,7 +106,6 @@
"Food_Alias": "Alias Alimento",
"Foods": "Alimenti",
"GroupBy": "Raggruppa per",
"Groups": "",
"Hide_Food": "Nascondi alimento",
"Hide_Keyword": "Nascondi parole chiave",
"Hide_Keywords": "Nascondi parola chiave",
@@ -240,8 +238,6 @@
"Remove_nutrition_recipe": "Elimina nutrienti dalla ricetta",
"Reset": "Azzera",
"Reset_Search": "Ripristina Ricerca",
"Reusable": "",
"Role": "",
"Root": "Radice",
"Save": "Salva",
"Save_and_View": "Salva & Mostra",
@@ -324,6 +320,7 @@
"Week_Numbers": "Numeri della settimana",
"Year": "Anno",
"YourSpaces": "",
"active": "",
"add_keyword": "Aggiungi parola chiave",
"additional_options": "Opzioni aggiuntive",
"advanced": "Avanzate",
@@ -343,6 +340,7 @@
"create_food_desc": "Crea un alimento e collegalo a questa ricetta.",
"create_rule": "e crea automazione",
"create_title": "Nuovo {type}",
"created_by": "",
"created_on": "Creato il",
"csv_delim_help": "Delimitatore usato per le esportazioni CSV.",
"csv_delim_label": "Delimitatore CSV",

View File

@@ -91,7 +91,6 @@
"Edit_Keyword": "Redaguoti raktažodį",
"Edit_Meal_Plan_Entry": "",
"Edit_Recipe": "Redaguoti receptą",
"Email": "",
"Empty": "",
"Enable_Amount": "Įjungti sumą",
"EndDate": "",
@@ -116,7 +115,6 @@
"Food_Replace": "",
"Foods": "",
"GroupBy": "",
"Groups": "",
"Hide_Food": "",
"Hide_Keyword": "",
"Hide_Keywords": "Paslėpti raktažodį",
@@ -260,8 +258,6 @@
"Remove_nutrition_recipe": "Ištrinti mitybos informaciją iš recepto",
"Reset": "",
"Reset_Search": "Iš naujo nustatyti paiešką",
"Reusable": "",
"Role": "",
"Root": "",
"Save": "",
"Save_and_View": "Išsaugoti ir peržiūrėti",
@@ -350,6 +346,7 @@
"Welcome": "",
"Year": "",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "",
@@ -373,6 +370,7 @@
"create_food_desc": "",
"create_rule": "",
"create_title": "",
"created_by": "",
"created_on": "",
"csv_delim_help": "",
"csv_delim_label": "",

View File

@@ -88,7 +88,6 @@
"Edit_Keyword": "Rediger nøkkelord",
"Edit_Meal_Plan_Entry": "Rediger måltidsplanoppføring",
"Edit_Recipe": "Rediger oppskrift",
"Email": "",
"Empty": "Tom",
"Enable_Amount": "Aktiver mengde",
"Energy": "Energi",
@@ -111,7 +110,6 @@
"Food_Alias": "Matrett Alias",
"Foods": "",
"GroupBy": "Grupér",
"Groups": "",
"Hide_Food": "Skjul Matrett",
"Hide_Keyword": "Skjul nøkkelord",
"Hide_Keywords": "Skjul nøkkelord",
@@ -252,8 +250,6 @@
"Remove_nutrition_recipe": "Fjern næringsinnhold fra oppskrift",
"Reset": "",
"Reset_Search": "Nullstill søk",
"Reusable": "",
"Role": "",
"Root": "Rot",
"Save": "Lagre",
"Save_and_View": "Lagre og vis",
@@ -339,6 +335,7 @@
"Welcome": "Velkommen",
"Year": "År",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "Avansert",
@@ -362,6 +359,7 @@
"create_food_desc": "",
"create_rule": "og opprett automasjon",
"create_title": "Ny {type}",
"created_by": "",
"created_on": "",
"csv_delim_help": "Skilletegn som skal brukes for CSV-eksport.",
"csv_delim_label": "CSV-skilletegn",

View File

@@ -92,7 +92,6 @@
"Edit_Keyword": "Bewerk Etiket",
"Edit_Meal_Plan_Entry": "Bewerk maaltijdplan",
"Edit_Recipe": "Bewerk Recept",
"Email": "",
"Empty": "Leeg",
"Enable_Amount": "Schakel hoeveelheid in",
"Energy": "Energie",
@@ -115,7 +114,6 @@
"Food_Alias": "Eten Alias",
"Foods": "Ingrediënten",
"GroupBy": "Groepeer per",
"Groups": "",
"Hide_Food": "Verberg Eten",
"Hide_Keyword": "Verberg etiketten",
"Hide_Keywords": "Verberg Etiket",
@@ -256,8 +254,6 @@
"Remove_nutrition_recipe": "Verwijder voedingswaarde van recept",
"Reset": "Herstel",
"Reset_Search": "Zoeken resetten",
"Reusable": "",
"Role": "",
"Root": "Bron",
"Save": "Opslaan",
"Save_and_View": "Sla op & Bekijk",
@@ -343,6 +339,7 @@
"Welcome": "Welkom",
"Year": "Jaar",
"YourSpaces": "",
"active": "",
"add_keyword": "Voeg etiket toe",
"additional_options": "Extra opties",
"advanced": "Geavanceerd",
@@ -367,6 +364,7 @@
"create_rule": "en creëer automatisering",
"create_shopping_new": "Voeg toe aan NIEUWE boodschappenlijst",
"create_title": "Nieuw {type}",
"created_by": "",
"created_on": "Aangemaakt op",
"csv_delim_help": "Scheidingsteken voor CSV exports.",
"csv_delim_label": "CSV scheidingsteken",

View File

@@ -102,7 +102,6 @@
"Edit_Keyword": "Edytuj słowo kluczowe",
"Edit_Meal_Plan_Entry": "Edytuj wpis planu posiłków",
"Edit_Recipe": "Edytuj przepis",
"Email": "",
"Empty": "Pusty",
"Enable": "Włączyć",
"Enable_Amount": "Włącz ilość",
@@ -132,7 +131,6 @@
"Food_Replace": "Zastąp produkt",
"Foods": "Żywność",
"GroupBy": "Grupuj według",
"Groups": "",
"Hide_Food": "Ukryj żywność",
"Hide_Keyword": "Ukryj słowa kluczowe",
"Hide_Keywords": "Ukryj słowo kluczowe",
@@ -284,8 +282,6 @@
"Remove_nutrition_recipe": "Usuń wartości odżywcze z przepisu",
"Reset": "Resetowanie",
"Reset_Search": "Resetuj wyszukiwanie",
"Reusable": "",
"Role": "",
"Root": "Główny",
"Save": "Zapisz",
"Save_and_View": "Zapisz i wyświetl",
@@ -383,6 +379,7 @@
"Welcome": "Witamy",
"Year": "Rok",
"YourSpaces": "",
"active": "",
"add_keyword": "Dodaj słowo kluczowe",
"additional_options": "Opcje dodatkowe",
"advanced": "Zaawansowany",
@@ -407,7 +404,7 @@
"create_rule": "i stwórz automatyzację",
"create_shopping_new": "Dodaj do NOWEJ listy zakupów",
"create_title": "Nowy {type}",
"created_by": "Stworzone przez",
"created_by": "",
"created_on": "Utworzono dnia",
"csv_delim_help": "Separator używany przy eksporcie CSV.",
"csv_delim_label": "Separator CSV",

View File

@@ -69,7 +69,6 @@
"Edit_Keyword": "Editar Palavra Chave",
"Edit_Meal_Plan_Entry": "Editar entrada de plano de refeições",
"Edit_Recipe": "Editar receita",
"Email": "",
"Empty": "Esvaziar",
"Enable_Amount": "Ativar quantidade",
"Energy": "Energia",
@@ -89,7 +88,6 @@
"Food_Alias": "Alcunha da comida",
"Foods": "",
"GroupBy": "Agrupar por",
"Groups": "",
"Hide_Food": "Esconder comida",
"Hide_Keyword": "",
"Hide_Keywords": "Esconder palavra-chave",
@@ -201,8 +199,6 @@
"Remove_nutrition_recipe": "Remover valor nutricional da receita",
"Reset": "Reiniciar",
"Reset_Search": "Repor Pesquisa",
"Reusable": "",
"Role": "",
"Root": "Raiz",
"Save": "Guardar",
"Save_and_View": "Gravar & Ver",
@@ -268,6 +264,7 @@
"Week_Numbers": "Números das semanas",
"Year": "Ano",
"YourSpaces": "",
"active": "",
"add_keyword": "Adicionar Palavra Chave",
"advanced": "",
"advanced_search_settings": "Configurações Avançadas de Pesquisa",
@@ -286,6 +283,7 @@
"create_rule": "e criar automação",
"create_shopping_new": "",
"create_title": "Novo {type}",
"created_by": "",
"created_on": "Criado em",
"csv_delim_help": "",
"csv_delim_label": "",

View File

@@ -98,7 +98,6 @@
"Edit_Keyword": "Editar palavra-chave",
"Edit_Meal_Plan_Entry": "Editar plano de refeição",
"Edit_Recipe": "Editar Receita",
"Email": "",
"Empty": "Vazio",
"Enable_Amount": "Habilitar Quantidade",
"EndDate": "Data Fim",
@@ -126,7 +125,6 @@
"Food_Replace": "Substituir Alimento",
"Foods": "Alimentos",
"GroupBy": "Agrupar Por",
"Groups": "",
"Hide_Food": "Esconder Comida",
"Hide_Keyword": "Oculta palavras-chave",
"Hide_Keywords": "Esconder palavra-chave",
@@ -271,8 +269,6 @@
"Remove_nutrition_recipe": "Deletar dados nutricionais da receita",
"Reset": "Reiniciar",
"Reset_Search": "Resetar Busca",
"Reusable": "",
"Role": "",
"Root": "Raiz",
"Save": "Salvar",
"Save_and_View": "Salvar e Visualizar",
@@ -357,6 +353,7 @@
"Welcome": "Bem vindo",
"Year": "Ano",
"YourSpaces": "",
"active": "",
"add_keyword": "Incluir Palavra-Chave",
"additional_options": "Opções Adicionais",
"advanced": "Avançado",
@@ -381,7 +378,7 @@
"create_rule": "e criar automação",
"create_shopping_new": "",
"create_title": "Novo {type}",
"created_by": "Criado por",
"created_by": "",
"created_on": "Criado Em",
"csv_delim_help": "Delimitador para usar na exportação do CSV.",
"csv_delim_label": "Delimitador CSV",

View File

@@ -86,7 +86,6 @@
"Edit_Keyword": "Editează cuvânt cheie",
"Edit_Meal_Plan_Entry": "Editarea înregistrării în planul de alimentare",
"Edit_Recipe": "Editează rețeta",
"Email": "",
"Empty": "Gol",
"Enable_Amount": "Activare cantitate",
"Energy": "Energie",
@@ -109,7 +108,6 @@
"Food_Alias": "Pseudonim mâncare",
"Foods": "Alimente",
"GroupBy": "Grupat de",
"Groups": "",
"Hide_Food": "Ascunde mâncare",
"Hide_Keyword": "Ascunde cuvintele cheie",
"Hide_Keywords": "Ascunde cuvânt cheie",
@@ -244,8 +242,6 @@
"Remove_nutrition_recipe": "Ștergere a nutriției din rețetă",
"Reset": "Resetare",
"Reset_Search": "Resetarea căutării",
"Reusable": "",
"Role": "",
"Root": "Rădăcină",
"Save": "Salvare",
"Save_and_View": "Salvare și vizionare",
@@ -328,6 +324,7 @@
"Week_Numbers": "Numerele săptămânii",
"Year": "An",
"YourSpaces": "",
"active": "",
"add_keyword": "Adăugare cuvânt cheie",
"additional_options": "Opțiuni suplimentare",
"advanced": "Avansat",
@@ -347,6 +344,7 @@
"create_food_desc": "Creați un aliment și conectați-l la această rețetă.",
"create_rule": "și crearea automatizării",
"create_title": "{type} nou",
"created_by": "",
"created_on": "Creat la data de",
"csv_delim_help": "Delimitatorul utilizat pentru exporturile CSV.",
"csv_delim_label": "Delimitatorul CSV",

View File

@@ -59,7 +59,6 @@
"Edit_Keyword": "Редактировать ключевое слово",
"Edit_Meal_Plan_Entry": "Редактировать план питания",
"Edit_Recipe": "Редактировать рецепт",
"Email": "",
"Empty": "Пустой",
"Enable_Amount": "Активировать Количество",
"Energy": "Энергетическая ценность",
@@ -78,7 +77,6 @@
"FoodOnHand": "{food} у вас в наличии.",
"Food_Alias": "Наименование еды",
"GroupBy": "Сгруппировать по",
"Groups": "",
"Hide_Food": "Скрыть еду",
"Hide_Keyword": "Скрыть ключевые слова",
"Hide_Keywords": "Скрыть ключевое слово",
@@ -186,8 +184,6 @@
"Remove_nutrition_recipe": "Уберите питательные вещества из рецепта",
"Reset": "Сбросить",
"Reset_Search": "Очистить строку поиска",
"Reusable": "",
"Role": "",
"Root": "Корневой элемент",
"Save": "Сохранить",
"Save_and_View": "Сохранить и показать",
@@ -244,6 +240,7 @@
"Week_Numbers": "Номер недели",
"Year": "Год",
"YourSpaces": "",
"active": "",
"add_keyword": "Добавить ключевое слово",
"additional_options": "Дополнительные опции",
"advanced": "Расширенный",
@@ -259,6 +256,7 @@
"create_food_desc": "Создайте блюдо и свяжите его с этим рецептом.",
"create_rule": "и создать автоматически",
"create_title": "Новый {type}",
"created_by": "",
"created_on": "Создано на",
"date_created": "Дата создана",
"date_viewed": "Последний просмотренный",

View File

@@ -59,7 +59,6 @@
"Edit_Keyword": "Uredi ključno besedo",
"Edit_Meal_Plan_Entry": "Spremeni vnos za načrtovan obrok",
"Edit_Recipe": "Uredi Recept",
"Email": "",
"Empty": "Prazno",
"Enable_Amount": "Omogoči količino",
"Energy": "Energija",
@@ -78,7 +77,6 @@
"FoodOnHand": "Imaš {food} v roki.",
"Food_Alias": "Vzdevek hrane",
"GroupBy": "Združi po",
"Groups": "",
"Hide_Food": "Skrij hrano",
"Hide_Keyword": "Skrij ključne besede",
"Hide_Keywords": "Skrij ključno besedo",
@@ -177,8 +175,6 @@
"RemoveFoodFromShopping": "Odstrani {food} iz nakupovalnega listka",
"Remove_nutrition_recipe": "Receptu izbriši hranilno vrednost",
"Reset_Search": "Ponastavi iskalnik",
"Reusable": "",
"Role": "",
"Root": "",
"Save": "Shrani",
"Save_and_View": "Shrani in poglej",
@@ -238,6 +234,7 @@
"Week_Numbers": "Števila tednov",
"Year": "Leto",
"YourSpaces": "",
"active": "",
"all_fields_optional": "Vsa polja so opcijska in jih lahko pustiš prazne.",
"and": "in",
"and_up": "& gor",
@@ -252,6 +249,7 @@
"create_rule": "in ustvari avtomatizacijo",
"create_shopping_new": "Dodaj v NOV nakupovalni listek",
"create_title": "Novo {type}",
"created_by": "",
"csv_delim_help": "Ločilo za CSV izvoz.",
"csv_delim_label": "CSV ločilo",
"csv_prefix_help": "Dodana prepona, ko kopiramo nakupovalni listek v odložišče.",

View File

@@ -102,7 +102,6 @@
"Edit_Keyword": "Redigera nyckelord",
"Edit_Meal_Plan_Entry": "Redigera matplansinlägg",
"Edit_Recipe": "Redigera recept",
"Email": "",
"Empty": "Tom",
"Enable": "Aktivera",
"Enable_Amount": "Aktivera belopp",
@@ -132,7 +131,6 @@
"Food_Replace": "Ersätt ingrediens",
"Foods": "Livsmedel",
"GroupBy": "Gruppera enligt",
"Groups": "",
"Hide_Food": "Dölj livsmedel",
"Hide_Keyword": "Dölj nyckelord",
"Hide_Keywords": "Dölj nyckelord",
@@ -284,8 +282,6 @@
"Remove_nutrition_recipe": "Ta bort näring från receptet",
"Reset": "Återställ",
"Reset_Search": "Rensa sök",
"Reusable": "",
"Role": "",
"Root": "Rot",
"Save": "Spara",
"Save_and_View": "Spara & visa",
@@ -383,6 +379,7 @@
"Welcome": "Välkommen",
"Year": "År",
"YourSpaces": "",
"active": "",
"add_keyword": "Lägg till nyckelord",
"additional_options": "Ytterligare alternativ",
"advanced": "Avancerat",
@@ -407,7 +404,7 @@
"create_rule": "och skapa automation",
"create_shopping_new": "Lägg till i ny inköpslista",
"create_title": "Ny {type}",
"created_by": "Skapad av",
"created_by": "",
"created_on": "Skapat den",
"csv_delim_help": "Avgränsare att använda för CSV-export.",
"csv_delim_label": "CSV-avgränsare",

View File

@@ -101,7 +101,6 @@
"Edit_Keyword": "Anahtar Kelimeyi Düzenle",
"Edit_Meal_Plan_Entry": "Yemek planı girişini düzenle",
"Edit_Recipe": "Tarifi Düzenle",
"Email": "",
"Empty": "Boş",
"Enable": "Etkinleştir",
"Enable_Amount": "Tutarı Etkinleştir",
@@ -131,7 +130,6 @@
"Food_Replace": "Yiyecek Değiştir",
"Foods": "Yiyecekler",
"GroupBy": "Gruplandırma Ölçütü",
"Groups": "",
"Hide_Food": "Yiyeceği Gizle",
"Hide_Keyword": "Anahtar kelimeleri gizle",
"Hide_Keywords": "Anahtar Kelimeyi Gizle",
@@ -283,8 +281,6 @@
"Remove_nutrition_recipe": "Tariften besin değeri sil",
"Reset": "Sıfırla",
"Reset_Search": "Aramayı Sıfırla",
"Reusable": "",
"Role": "",
"Root": "Kök",
"Save": "Kaydet",
"Save_and_View": "Kaydet & Görüntüle",
@@ -382,6 +378,7 @@
"Welcome": "Hoşgeldiniz",
"Year": "Yıl",
"YourSpaces": "",
"active": "",
"add_keyword": "Anahtar Kelime Ekle",
"additional_options": "Ek Seçenekler",
"advanced": "Gelişmiş",
@@ -405,7 +402,7 @@
"create_food_desc": "Bir yiyecek oluşturun ve onu bu tarife bağlayın.",
"create_rule": "ve otomasyon oluştur",
"create_title": "Yeni {type}",
"created_by": "Oluşturan",
"created_by": "",
"created_on": "Oluşturma Zamanı",
"csv_delim_help": "CSV dışa aktarmaları için kullanılacak ayırıcı.",
"csv_delim_label": "CSV Ayırıcı",

View File

@@ -74,7 +74,6 @@
"Edit_Keyword": "Редагувати Ключове слово",
"Edit_Meal_Plan_Entry": "Редагувати запис в плані харчування",
"Edit_Recipe": "Редагувати Рецепт",
"Email": "",
"Empty": "Пусто",
"Enable_Amount": "Включити Кількість",
"Energy": "Енергія",
@@ -96,7 +95,6 @@
"Food_Alias": "",
"Foods": "",
"GroupBy": "По Групі",
"Groups": "",
"Hide_Food": "Сховати Їжу",
"Hide_Keyword": "",
"Hide_Keywords": "Сховати Ключове слово",
@@ -220,8 +218,6 @@
"Remove_nutrition_recipe": "Видалити харчову цінність з рецепта",
"Reset": "",
"Reset_Search": "Скинути Пошук",
"Reusable": "",
"Role": "",
"Root": "Корінь",
"Save": "Зберегти",
"Save_and_View": "Зберегти і Подивитися",
@@ -292,6 +288,7 @@
"Week_Numbers": "Номер тижня",
"Year": "Рік",
"YourSpaces": "",
"active": "",
"add_keyword": "",
"additional_options": "",
"advanced": "",
@@ -311,6 +308,7 @@
"create_food_desc": "",
"create_rule": "і створити автоматизацію",
"create_title": "Новий {type}",
"created_by": "",
"created_on": "",
"csv_delim_help": "",
"csv_delim_label": "",

View File

@@ -98,7 +98,6 @@
"Edit_Keyword": "编辑关键词",
"Edit_Meal_Plan_Entry": "编辑用餐计划条目",
"Edit_Recipe": "编辑食谱",
"Email": "",
"Empty": "空的",
"Enable": "启用",
"Enable_Amount": "启用金额",
@@ -127,7 +126,6 @@
"Food_Replace": "食物替换",
"Foods": "食物",
"GroupBy": "分组",
"Groups": "",
"Hide_Food": "隐藏食物",
"Hide_Keyword": "隐藏关键词",
"Hide_Keywords": "隐藏关键词",
@@ -278,8 +276,6 @@
"Remove_nutrition_recipe": "从食谱中删除营养信息",
"Reset": "重置",
"Reset_Search": "重置搜索",
"Reusable": "",
"Role": "",
"Root": "根",
"Save": "保存",
"Save_and_View": "保存并查看",
@@ -373,6 +369,7 @@
"Welcome": "欢迎",
"Year": "年",
"YourSpaces": "",
"active": "",
"add_keyword": "添加关键字",
"additional_options": "附加选项",
"advanced": "高级",
@@ -397,6 +394,7 @@
"create_rule": "并创建自动化",
"create_shopping_new": "添加到新的购物清单",
"create_title": "新建 {type}",
"created_by": "",
"created_on": "创建于",
"csv_delim_help": "用于 CSV 导出的分隔符。",
"csv_delim_label": "CSV 分隔符",

View File

@@ -17,7 +17,6 @@
"Delete": "",
"Download": "",
"Edit": "",
"Email": "",
"Energy": "",
"Export": "",
"External": "",
@@ -26,7 +25,6 @@
"Fats": "",
"File": "",
"Files": "",
"Groups": "",
"Hide_as_header": "隱藏為標題",
"Import": "",
"Import_finished": "匯入完成",
@@ -56,8 +54,6 @@
"Recipes_per_page": "每頁食譜",
"Remove_nutrition_recipe": "從食譜中刪除營養資訊",
"Reset_Search": "",
"Reusable": "",
"Role": "",
"Save": "",
"Save_and_View": "儲存並查看",
"Search": "",
@@ -86,10 +82,12 @@
"View_Recipes": "",
"Waiting": "",
"YourSpaces": "",
"active": "",
"all_fields_optional": "所有欄位都是可選的,可以留空。",
"and": "",
"confirm_delete": "您確定要刪除這個{object}嗎?",
"convert_internal": "轉換為內部食譜",
"created_by": "",
"err_creating_resource": "創建資源時發生錯誤!",
"err_deleting_protected_resource": "您嘗試刪除的對象仍在使用中,無法刪除。",
"err_deleting_resource": "刪除資源時發生錯誤!",

View File

@@ -29,7 +29,6 @@ export const useUserPreferenceStore = defineStore('user_preference_store', () =>
* database user settings, cache in local storage in case application is started offline
*/
let userSettings = useStorage(USER_PREFERENCE_KEY, {} as UserPreference)
/**
* database user settings, cache in local storage in case application is started offline
*/
@@ -65,10 +64,19 @@ export const useUserPreferenceStore = defineStore('user_preference_store', () =>
})
}
function loadActiveSpace(){
let api = new ApiApi()
api.apiSpaceCurrentRetrieve().then(r => {
activeSpace.value = r
})
}
// always load user settings on first initialization of store
loadUserSettings()
// always load active space on first initialization of store
loadActiveSpace()
return {deviceSettings, userSettings, loadUserSettings, updateUserSettings}
return {deviceSettings, userSettings, activeSpace, loadUserSettings, updateUserSettings}
})
// enable hot reload for store