mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
space settings base page
This commit is contained in:
@@ -1,19 +1,61 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-form>
|
<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-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>
|
</v-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import {useUserPreferenceStore} from "@/stores/UserPreferenceStore";
|
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>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -6,9 +6,11 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<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>
|
||||||
<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-card>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
@@ -18,16 +20,18 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import {onMounted, ref} from "vue";
|
import {onMounted, ref} from "vue";
|
||||||
import {ApiApi, UserSpace} from "@/openapi";
|
import {ApiApi, Space} from "@/openapi";
|
||||||
import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore";
|
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(() => {
|
onMounted(() => {
|
||||||
const api = new ApiApi()
|
const api = new ApiApi()
|
||||||
|
|
||||||
api.apiUserSpaceList().then(r => {
|
api.apiSpaceList().then(r => {
|
||||||
userSpaces.value = r.results
|
spaces.value = r
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
useMessageStore().addError(ErrorMessageType.FETCH_ERROR, err)
|
useMessageStore().addError(ErrorMessageType.FETCH_ERROR, err)
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -68,7 +68,6 @@
|
|||||||
"Edit_Keyword": "",
|
"Edit_Keyword": "",
|
||||||
"Edit_Meal_Plan_Entry": "",
|
"Edit_Meal_Plan_Entry": "",
|
||||||
"Edit_Recipe": "",
|
"Edit_Recipe": "",
|
||||||
"Email": "",
|
|
||||||
"Empty": "",
|
"Empty": "",
|
||||||
"Enable_Amount": "",
|
"Enable_Amount": "",
|
||||||
"Energy": "",
|
"Energy": "",
|
||||||
@@ -90,7 +89,6 @@
|
|||||||
"Food_Alias": "",
|
"Food_Alias": "",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "",
|
"GroupBy": "",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "",
|
"Hide_Food": "",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "",
|
"Hide_Keywords": "",
|
||||||
@@ -212,8 +210,6 @@
|
|||||||
"Remove_nutrition_recipe": "",
|
"Remove_nutrition_recipe": "",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "",
|
"Reset_Search": "",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "",
|
"Root": "",
|
||||||
"Save": "",
|
"Save": "",
|
||||||
"Save_and_View": "",
|
"Save_and_View": "",
|
||||||
@@ -283,6 +279,7 @@
|
|||||||
"Week_Numbers": "",
|
"Week_Numbers": "",
|
||||||
"Year": "",
|
"Year": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
@@ -302,6 +299,7 @@
|
|||||||
"create_food_desc": "",
|
"create_food_desc": "",
|
||||||
"create_rule": "",
|
"create_rule": "",
|
||||||
"create_title": "",
|
"create_title": "",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "",
|
"created_on": "",
|
||||||
"csv_delim_help": "",
|
"csv_delim_help": "",
|
||||||
"csv_delim_label": "",
|
"csv_delim_label": "",
|
||||||
|
|||||||
@@ -65,7 +65,6 @@
|
|||||||
"Edit_Keyword": "Редактиране на ключова дума",
|
"Edit_Keyword": "Редактиране на ключова дума",
|
||||||
"Edit_Meal_Plan_Entry": "Редактиране на записа в плана за хранене",
|
"Edit_Meal_Plan_Entry": "Редактиране на записа в плана за хранене",
|
||||||
"Edit_Recipe": "Редактиране на рецепта",
|
"Edit_Recipe": "Редактиране на рецепта",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Празно",
|
"Empty": "Празно",
|
||||||
"Enable_Amount": "Активиране на сумата",
|
"Enable_Amount": "Активиране на сумата",
|
||||||
"Energy": "Енергия",
|
"Energy": "Енергия",
|
||||||
@@ -87,7 +86,6 @@
|
|||||||
"Food_Alias": "Псевдоним на храната",
|
"Food_Alias": "Псевдоним на храната",
|
||||||
"Foods": "Храни",
|
"Foods": "Храни",
|
||||||
"GroupBy": "Групирай по",
|
"GroupBy": "Групирай по",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Скриване на храна",
|
"Hide_Food": "Скриване на храна",
|
||||||
"Hide_Keyword": "Скриване на ключови думи",
|
"Hide_Keyword": "Скриване на ключови думи",
|
||||||
"Hide_Keywords": "Скриване на ключова дума",
|
"Hide_Keywords": "Скриване на ключова дума",
|
||||||
@@ -205,8 +203,6 @@
|
|||||||
"Remove_nutrition_recipe": "Изтрийте хранителните стойности от рецептата",
|
"Remove_nutrition_recipe": "Изтрийте хранителните стойности от рецептата",
|
||||||
"Reset": "Нулиране",
|
"Reset": "Нулиране",
|
||||||
"Reset_Search": "Нулиране на търсенето",
|
"Reset_Search": "Нулиране на търсенето",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Корен",
|
"Root": "Корен",
|
||||||
"Save": "Запази",
|
"Save": "Запази",
|
||||||
"Save_and_View": "Запазете и прегледайте",
|
"Save_and_View": "Запазете и прегледайте",
|
||||||
@@ -274,6 +270,7 @@
|
|||||||
"Week_Numbers": "Номера на седмиците",
|
"Week_Numbers": "Номера на седмиците",
|
||||||
"Year": "Година",
|
"Year": "Година",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Добавяне на ключова дума",
|
"add_keyword": "Добавяне на ключова дума",
|
||||||
"additional_options": "Допълнителни настройки",
|
"additional_options": "Допълнителни настройки",
|
||||||
"advanced": "Разширено",
|
"advanced": "Разширено",
|
||||||
@@ -293,6 +290,7 @@
|
|||||||
"create_food_desc": "Създайте храна и я свържете с тази рецепта.",
|
"create_food_desc": "Създайте храна и я свържете с тази рецепта.",
|
||||||
"create_rule": "и създават автоматизация",
|
"create_rule": "и създават автоматизация",
|
||||||
"create_title": "Нов {type}",
|
"create_title": "Нов {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Създадено на",
|
"created_on": "Създадено на",
|
||||||
"csv_delim_help": "Ограничител за използване за CSV експортиране.",
|
"csv_delim_help": "Ограничител за използване за CSV експортиране.",
|
||||||
"csv_delim_label": "CSV разделител",
|
"csv_delim_label": "CSV разделител",
|
||||||
|
|||||||
@@ -100,7 +100,6 @@
|
|||||||
"Edit_Keyword": "Editeu paraula clau",
|
"Edit_Keyword": "Editeu paraula clau",
|
||||||
"Edit_Meal_Plan_Entry": "",
|
"Edit_Meal_Plan_Entry": "",
|
||||||
"Edit_Recipe": "Editeu recepta",
|
"Edit_Recipe": "Editeu recepta",
|
||||||
"Email": "",
|
|
||||||
"Empty": "",
|
"Empty": "",
|
||||||
"Enable": "",
|
"Enable": "",
|
||||||
"Enable_Amount": "Habiliteu quantitat",
|
"Enable_Amount": "Habiliteu quantitat",
|
||||||
@@ -130,7 +129,6 @@
|
|||||||
"Food_Replace": "",
|
"Food_Replace": "",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "",
|
"GroupBy": "",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "",
|
"Hide_Food": "",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "Amagueu paraula clau",
|
"Hide_Keywords": "Amagueu paraula clau",
|
||||||
@@ -282,8 +280,6 @@
|
|||||||
"Remove_nutrition_recipe": "Esborreu nutrició de la recepta",
|
"Remove_nutrition_recipe": "Esborreu nutrició de la recepta",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "Reinicieu la cerca",
|
"Reset_Search": "Reinicieu la cerca",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "",
|
"Root": "",
|
||||||
"Save": "",
|
"Save": "",
|
||||||
"Save_and_View": "Graveu-ho i mostreu-ho",
|
"Save_and_View": "Graveu-ho i mostreu-ho",
|
||||||
@@ -381,6 +377,7 @@
|
|||||||
"Welcome": "",
|
"Welcome": "",
|
||||||
"Year": "",
|
"Year": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
|
|||||||
@@ -100,7 +100,6 @@
|
|||||||
"Edit_Keyword": "Upravit štítek",
|
"Edit_Keyword": "Upravit štítek",
|
||||||
"Edit_Meal_Plan_Entry": "Upravit položku v jídelníčku",
|
"Edit_Meal_Plan_Entry": "Upravit položku v jídelníčku",
|
||||||
"Edit_Recipe": "Upravit recept",
|
"Edit_Recipe": "Upravit recept",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Prázdné",
|
"Empty": "Prázdné",
|
||||||
"Enable": "Aktivovat",
|
"Enable": "Aktivovat",
|
||||||
"Enable_Amount": "Zobrazit množství",
|
"Enable_Amount": "Zobrazit množství",
|
||||||
@@ -130,7 +129,6 @@
|
|||||||
"Food_Replace": "Nahrazení v potravině",
|
"Food_Replace": "Nahrazení v potravině",
|
||||||
"Foods": "Potraviny",
|
"Foods": "Potraviny",
|
||||||
"GroupBy": "Seskupit podle",
|
"GroupBy": "Seskupit podle",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Skrýt potravinu",
|
"Hide_Food": "Skrýt potravinu",
|
||||||
"Hide_Keyword": "Skrýt štítky",
|
"Hide_Keyword": "Skrýt štítky",
|
||||||
"Hide_Keywords": "Skrýt štítek",
|
"Hide_Keywords": "Skrýt štítek",
|
||||||
@@ -280,8 +278,6 @@
|
|||||||
"Remove_nutrition_recipe": "Smazat nutriční hodnoty",
|
"Remove_nutrition_recipe": "Smazat nutriční hodnoty",
|
||||||
"Reset": "Resetovat",
|
"Reset": "Resetovat",
|
||||||
"Reset_Search": "Zrušit filtry vyhledávání",
|
"Reset_Search": "Zrušit filtry vyhledávání",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Kořen",
|
"Root": "Kořen",
|
||||||
"Save": "Uložit",
|
"Save": "Uložit",
|
||||||
"Save_and_View": "Uložit a zobrazit",
|
"Save_and_View": "Uložit a zobrazit",
|
||||||
@@ -374,6 +370,7 @@
|
|||||||
"Welcome": "Vítejte",
|
"Welcome": "Vítejte",
|
||||||
"Year": "Rok",
|
"Year": "Rok",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Přidat štítek",
|
"add_keyword": "Přidat štítek",
|
||||||
"additional_options": "Rozšířené možnosti",
|
"additional_options": "Rozšířené možnosti",
|
||||||
"advanced": "Pokročilé",
|
"advanced": "Pokročilé",
|
||||||
@@ -397,6 +394,7 @@
|
|||||||
"create_food_desc": "Vytvořit potravinu a propojit ji s tímto receptem.",
|
"create_food_desc": "Vytvořit potravinu a propojit ji s tímto receptem.",
|
||||||
"create_rule": "a vytvořit automatizaci",
|
"create_rule": "a vytvořit automatizaci",
|
||||||
"create_title": "Nový {type}",
|
"create_title": "Nový {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Vytvořeno",
|
"created_on": "Vytvořeno",
|
||||||
"csv_delim_help": "Který znak bude použit pro oddělení záznamů v CSV.",
|
"csv_delim_help": "Který znak bude použit pro oddělení záznamů v CSV.",
|
||||||
"csv_delim_label": "Oddělovač záznamů v CSV",
|
"csv_delim_label": "Oddělovač záznamů v CSV",
|
||||||
|
|||||||
@@ -91,7 +91,6 @@
|
|||||||
"Edit_Keyword": "Rediger nøgleord",
|
"Edit_Keyword": "Rediger nøgleord",
|
||||||
"Edit_Meal_Plan_Entry": "Rediger punkt i madplan",
|
"Edit_Meal_Plan_Entry": "Rediger punkt i madplan",
|
||||||
"Edit_Recipe": "Rediger opskrift",
|
"Edit_Recipe": "Rediger opskrift",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Tom",
|
"Empty": "Tom",
|
||||||
"Enable_Amount": "Aktiver antal",
|
"Enable_Amount": "Aktiver antal",
|
||||||
"EndDate": "Slutdato",
|
"EndDate": "Slutdato",
|
||||||
@@ -118,7 +117,6 @@
|
|||||||
"Food_Replace": "Erstat ingrediens",
|
"Food_Replace": "Erstat ingrediens",
|
||||||
"Foods": "Mad",
|
"Foods": "Mad",
|
||||||
"GroupBy": "Grupper efter",
|
"GroupBy": "Grupper efter",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Skjul mad",
|
"Hide_Food": "Skjul mad",
|
||||||
"Hide_Keyword": "Skjul nøgleord",
|
"Hide_Keyword": "Skjul nøgleord",
|
||||||
"Hide_Keywords": "Skjul nøgleord",
|
"Hide_Keywords": "Skjul nøgleord",
|
||||||
@@ -262,8 +260,6 @@
|
|||||||
"Remove_nutrition_recipe": "Fjern næringsindhold fra opskrift",
|
"Remove_nutrition_recipe": "Fjern næringsindhold fra opskrift",
|
||||||
"Reset": "Nulstil",
|
"Reset": "Nulstil",
|
||||||
"Reset_Search": "Nulstil søgning",
|
"Reset_Search": "Nulstil søgning",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Rod",
|
"Root": "Rod",
|
||||||
"Save": "Gem",
|
"Save": "Gem",
|
||||||
"Save_and_View": "Gem & Vis",
|
"Save_and_View": "Gem & Vis",
|
||||||
@@ -352,6 +348,7 @@
|
|||||||
"Welcome": "Velkommen",
|
"Welcome": "Velkommen",
|
||||||
"Year": "År",
|
"Year": "År",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Tilføj nøgleord",
|
"add_keyword": "Tilføj nøgleord",
|
||||||
"additional_options": "Yderligere indstillinger",
|
"additional_options": "Yderligere indstillinger",
|
||||||
"advanced": "Avanceret",
|
"advanced": "Avanceret",
|
||||||
@@ -375,6 +372,7 @@
|
|||||||
"create_food_desc": "Opret mad og sammenkæd den med denne opskrift.",
|
"create_food_desc": "Opret mad og sammenkæd den med denne opskrift.",
|
||||||
"create_rule": "og opret automation",
|
"create_rule": "og opret automation",
|
||||||
"create_title": "Ny {type}",
|
"create_title": "Ny {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Oprettet den",
|
"created_on": "Oprettet den",
|
||||||
"csv_delim_help": "Tegn der skal afgrænse elementer i CSV eksporteringer.",
|
"csv_delim_help": "Tegn der skal afgrænse elementer i CSV eksporteringer.",
|
||||||
"csv_delim_label": "CSV afgrænsningstegn",
|
"csv_delim_label": "CSV afgrænsningstegn",
|
||||||
|
|||||||
@@ -102,7 +102,6 @@
|
|||||||
"Edit_Keyword": "Schlagwort bearbeiten",
|
"Edit_Keyword": "Schlagwort bearbeiten",
|
||||||
"Edit_Meal_Plan_Entry": "Eintrag bearbeiten",
|
"Edit_Meal_Plan_Entry": "Eintrag bearbeiten",
|
||||||
"Edit_Recipe": "Rezept bearbeiten",
|
"Edit_Recipe": "Rezept bearbeiten",
|
||||||
"Email": "Email",
|
|
||||||
"Empty": "Leer",
|
"Empty": "Leer",
|
||||||
"Enable": "Aktivieren",
|
"Enable": "Aktivieren",
|
||||||
"Enable_Amount": "Menge aktivieren",
|
"Enable_Amount": "Menge aktivieren",
|
||||||
@@ -132,7 +131,6 @@
|
|||||||
"Food_Replace": "Essen Ersetzen",
|
"Food_Replace": "Essen Ersetzen",
|
||||||
"Foods": "Lebensmittel",
|
"Foods": "Lebensmittel",
|
||||||
"GroupBy": "Gruppieren nach",
|
"GroupBy": "Gruppieren nach",
|
||||||
"Groups": "Gruppen",
|
|
||||||
"Hide_Food": "Lebensmittel verbergen",
|
"Hide_Food": "Lebensmittel verbergen",
|
||||||
"Hide_Keyword": "Schlüsselwörter verbergen",
|
"Hide_Keyword": "Schlüsselwörter verbergen",
|
||||||
"Hide_Keywords": "Schlagwort verstecken",
|
"Hide_Keywords": "Schlagwort verstecken",
|
||||||
@@ -284,8 +282,6 @@
|
|||||||
"Remove_nutrition_recipe": "Nährwerte aus Rezept löschen",
|
"Remove_nutrition_recipe": "Nährwerte aus Rezept löschen",
|
||||||
"Reset": "Zurücksetzen",
|
"Reset": "Zurücksetzen",
|
||||||
"Reset_Search": "Suche zurücksetzen",
|
"Reset_Search": "Suche zurücksetzen",
|
||||||
"Reusable": "Wiederverwendbar",
|
|
||||||
"Role": "Rolle",
|
|
||||||
"Root": "Wurzel",
|
"Root": "Wurzel",
|
||||||
"Save": "Speichern",
|
"Save": "Speichern",
|
||||||
"Save_and_View": "Speichern & Ansehen",
|
"Save_and_View": "Speichern & Ansehen",
|
||||||
@@ -384,6 +380,7 @@
|
|||||||
"Welcome": "Willkommen",
|
"Welcome": "Willkommen",
|
||||||
"Year": "Jahr",
|
"Year": "Jahr",
|
||||||
"YourSpaces": "Deine Spaces",
|
"YourSpaces": "Deine Spaces",
|
||||||
|
"active": "aktiv",
|
||||||
"add_keyword": "Stichwort hinzufügen",
|
"add_keyword": "Stichwort hinzufügen",
|
||||||
"additional_options": "Weitere Möglichkeiten",
|
"additional_options": "Weitere Möglichkeiten",
|
||||||
"advanced": "Erweitert",
|
"advanced": "Erweitert",
|
||||||
|
|||||||
@@ -90,7 +90,6 @@
|
|||||||
"Edit_Keyword": "Τροποποίηση λέξης-κλειδί",
|
"Edit_Keyword": "Τροποποίηση λέξης-κλειδί",
|
||||||
"Edit_Meal_Plan_Entry": "Τροποποίηση εγγραφής στο πρόγραμμα γευμάτων",
|
"Edit_Meal_Plan_Entry": "Τροποποίηση εγγραφής στο πρόγραμμα γευμάτων",
|
||||||
"Edit_Recipe": "Τροποποίηση συνταγής",
|
"Edit_Recipe": "Τροποποίηση συνταγής",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Κενό",
|
"Empty": "Κενό",
|
||||||
"Enable_Amount": "Ενεργοποίηση ποσότητας",
|
"Enable_Amount": "Ενεργοποίηση ποσότητας",
|
||||||
"Energy": "Ενέργεια",
|
"Energy": "Ενέργεια",
|
||||||
@@ -113,7 +112,6 @@
|
|||||||
"Food_Alias": "Ψευδώνυμο φαγητού",
|
"Food_Alias": "Ψευδώνυμο φαγητού",
|
||||||
"Foods": "Φαγητά",
|
"Foods": "Φαγητά",
|
||||||
"GroupBy": "Ομαδοποίηση κατά",
|
"GroupBy": "Ομαδοποίηση κατά",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Απόκρυψη φαγητού",
|
"Hide_Food": "Απόκρυψη φαγητού",
|
||||||
"Hide_Keyword": "Απόκρυψη λέξεων-κλειδί",
|
"Hide_Keyword": "Απόκρυψη λέξεων-κλειδί",
|
||||||
"Hide_Keywords": "Απόκρυψη λέξης-κλειδί",
|
"Hide_Keywords": "Απόκρυψη λέξης-κλειδί",
|
||||||
@@ -254,8 +252,6 @@
|
|||||||
"Remove_nutrition_recipe": "Αφαίρεση διατροφικής αξίας από τη συνταγή",
|
"Remove_nutrition_recipe": "Αφαίρεση διατροφικής αξίας από τη συνταγή",
|
||||||
"Reset": "Επαναφορά",
|
"Reset": "Επαναφορά",
|
||||||
"Reset_Search": "Επαναφορά αναζήτησης",
|
"Reset_Search": "Επαναφορά αναζήτησης",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Ρίζα",
|
"Root": "Ρίζα",
|
||||||
"Save": "Αποθήκευση",
|
"Save": "Αποθήκευση",
|
||||||
"Save_and_View": "Αποθήκευση και προβολή",
|
"Save_and_View": "Αποθήκευση και προβολή",
|
||||||
@@ -341,6 +337,7 @@
|
|||||||
"Welcome": "Καλώς ήρθατε",
|
"Welcome": "Καλώς ήρθατε",
|
||||||
"Year": "Έτος",
|
"Year": "Έτος",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Προσθήκη λέξης-κλειδί",
|
"add_keyword": "Προσθήκη λέξης-κλειδί",
|
||||||
"additional_options": "Επιπλέον επιλογές",
|
"additional_options": "Επιπλέον επιλογές",
|
||||||
"advanced": "Για προχωρημένους",
|
"advanced": "Για προχωρημένους",
|
||||||
@@ -364,6 +361,7 @@
|
|||||||
"create_food_desc": "Δημιουργία φαγητού και δημιουργία συνδέσμου σε αυτή τη συνταγή.",
|
"create_food_desc": "Δημιουργία φαγητού και δημιουργία συνδέσμου σε αυτή τη συνταγή.",
|
||||||
"create_rule": "και δημιουργία αυτοματισμού",
|
"create_rule": "και δημιουργία αυτοματισμού",
|
||||||
"create_title": "Νέο {type}",
|
"create_title": "Νέο {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Δημιουργήθηκε στις",
|
"created_on": "Δημιουργήθηκε στις",
|
||||||
"csv_delim_help": "Χαρακτήρας διαχωρισμού για εξαγωγή σε CSV.",
|
"csv_delim_help": "Χαρακτήρας διαχωρισμού για εξαγωγή σε CSV.",
|
||||||
"csv_delim_label": "Χαρακτήρας διαχωρισμού CSV",
|
"csv_delim_label": "Χαρακτήρας διαχωρισμού CSV",
|
||||||
|
|||||||
@@ -101,7 +101,6 @@
|
|||||||
"Edit_Keyword": "Edit Keyword",
|
"Edit_Keyword": "Edit Keyword",
|
||||||
"Edit_Meal_Plan_Entry": "Edit meal plan entry",
|
"Edit_Meal_Plan_Entry": "Edit meal plan entry",
|
||||||
"Edit_Recipe": "Edit Recipe",
|
"Edit_Recipe": "Edit Recipe",
|
||||||
"Email": "Email",
|
|
||||||
"Empty": "Empty",
|
"Empty": "Empty",
|
||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"Enable_Amount": "Enable Amount",
|
"Enable_Amount": "Enable Amount",
|
||||||
@@ -131,7 +130,6 @@
|
|||||||
"Food_Replace": "Food Replace",
|
"Food_Replace": "Food Replace",
|
||||||
"Foods": "Foods",
|
"Foods": "Foods",
|
||||||
"GroupBy": "Group By",
|
"GroupBy": "Group By",
|
||||||
"Groups": "Groups",
|
|
||||||
"Hide_Food": "Hide Food",
|
"Hide_Food": "Hide Food",
|
||||||
"Hide_Keyword": "Hide keywords",
|
"Hide_Keyword": "Hide keywords",
|
||||||
"Hide_Keywords": "Hide Keyword",
|
"Hide_Keywords": "Hide Keyword",
|
||||||
@@ -283,8 +281,6 @@
|
|||||||
"Remove_nutrition_recipe": "Delete nutrition from recipe",
|
"Remove_nutrition_recipe": "Delete nutrition from recipe",
|
||||||
"Reset": "Reset",
|
"Reset": "Reset",
|
||||||
"Reset_Search": "Reset Search",
|
"Reset_Search": "Reset Search",
|
||||||
"Reusable": "Reusable",
|
|
||||||
"Role": "Role",
|
|
||||||
"Root": "Root",
|
"Root": "Root",
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"Save_and_View": "Save & View",
|
"Save_and_View": "Save & View",
|
||||||
@@ -382,6 +378,7 @@
|
|||||||
"Welcome": "Welcome",
|
"Welcome": "Welcome",
|
||||||
"Year": "Year",
|
"Year": "Year",
|
||||||
"YourSpaces": "Your Spaces",
|
"YourSpaces": "Your Spaces",
|
||||||
|
"active": "active",
|
||||||
"add_keyword": "Add Keyword",
|
"add_keyword": "Add Keyword",
|
||||||
"additional_options": "Additional Options",
|
"additional_options": "Additional Options",
|
||||||
"advanced": "Advanced",
|
"advanced": "Advanced",
|
||||||
|
|||||||
@@ -101,7 +101,6 @@
|
|||||||
"Edit_Keyword": "Editar palabra clave",
|
"Edit_Keyword": "Editar palabra clave",
|
||||||
"Edit_Meal_Plan_Entry": "Eliminar entrada del régimen de comidas",
|
"Edit_Meal_Plan_Entry": "Eliminar entrada del régimen de comidas",
|
||||||
"Edit_Recipe": "Editar receta",
|
"Edit_Recipe": "Editar receta",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Vacio",
|
"Empty": "Vacio",
|
||||||
"Enable": "Activado",
|
"Enable": "Activado",
|
||||||
"Enable_Amount": "Habilitar cantidad",
|
"Enable_Amount": "Habilitar cantidad",
|
||||||
@@ -131,7 +130,6 @@
|
|||||||
"Food_Replace": "Sustituir Alimento",
|
"Food_Replace": "Sustituir Alimento",
|
||||||
"Foods": "Comida",
|
"Foods": "Comida",
|
||||||
"GroupBy": "Agrupar por",
|
"GroupBy": "Agrupar por",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Esconder ingrediente",
|
"Hide_Food": "Esconder ingrediente",
|
||||||
"Hide_Keyword": "Esconder Palabras Clave",
|
"Hide_Keyword": "Esconder Palabras Clave",
|
||||||
"Hide_Keywords": "Esconder palabra clave",
|
"Hide_Keywords": "Esconder palabra clave",
|
||||||
@@ -281,8 +279,6 @@
|
|||||||
"Remove_nutrition_recipe": "Borrar nutrición de la canasta",
|
"Remove_nutrition_recipe": "Borrar nutrición de la canasta",
|
||||||
"Reset": "Restablecer",
|
"Reset": "Restablecer",
|
||||||
"Reset_Search": "Resetear busqueda",
|
"Reset_Search": "Resetear busqueda",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Raíz",
|
"Root": "Raíz",
|
||||||
"Save": "Guardar",
|
"Save": "Guardar",
|
||||||
"Save_and_View": "Grabar y mostrar",
|
"Save_and_View": "Grabar y mostrar",
|
||||||
@@ -380,6 +376,7 @@
|
|||||||
"Welcome": "Bienvenido/a",
|
"Welcome": "Bienvenido/a",
|
||||||
"Year": "Año",
|
"Year": "Año",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Añadir Palabra Clave",
|
"add_keyword": "Añadir Palabra Clave",
|
||||||
"additional_options": "Opciones Adicionales",
|
"additional_options": "Opciones Adicionales",
|
||||||
"advanced": "Avanzado",
|
"advanced": "Avanzado",
|
||||||
@@ -403,7 +400,7 @@
|
|||||||
"create_food_desc": "Crear ingrediente y enlazarlo con esta receta.",
|
"create_food_desc": "Crear ingrediente y enlazarlo con esta receta.",
|
||||||
"create_rule": "y crear automatización",
|
"create_rule": "y crear automatización",
|
||||||
"create_title": "Nuevo {type}",
|
"create_title": "Nuevo {type}",
|
||||||
"created_by": "Creado por",
|
"created_by": "",
|
||||||
"created_on": "Creado En",
|
"created_on": "Creado En",
|
||||||
"csv_delim_help": "Delimitador utilizado en las exportaciones CSV.",
|
"csv_delim_help": "Delimitador utilizado en las exportaciones CSV.",
|
||||||
"csv_delim_label": "Delimitador CSV",
|
"csv_delim_label": "Delimitador CSV",
|
||||||
|
|||||||
@@ -44,7 +44,6 @@
|
|||||||
"Edit_Keyword": "Muokkaa avainsanaa",
|
"Edit_Keyword": "Muokkaa avainsanaa",
|
||||||
"Edit_Meal_Plan_Entry": "Muokkaa ateriasuunnitelma merkintää",
|
"Edit_Meal_Plan_Entry": "Muokkaa ateriasuunnitelma merkintää",
|
||||||
"Edit_Recipe": "Muokkaa Reseptiä",
|
"Edit_Recipe": "Muokkaa Reseptiä",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Tyhjä",
|
"Empty": "Tyhjä",
|
||||||
"Enable_Amount": "Ota Määrä käyttöön",
|
"Enable_Amount": "Ota Määrä käyttöön",
|
||||||
"Energy": "Energia",
|
"Energy": "Energia",
|
||||||
@@ -59,7 +58,6 @@
|
|||||||
"Files": "Tiedostot",
|
"Files": "Tiedostot",
|
||||||
"Food": "Ruoka",
|
"Food": "Ruoka",
|
||||||
"Food_Alias": "Ruoan nimimerkki",
|
"Food_Alias": "Ruoan nimimerkki",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Piilota ruoka",
|
"Hide_Food": "Piilota ruoka",
|
||||||
"Hide_Keyword": "Piilota avainsana",
|
"Hide_Keyword": "Piilota avainsana",
|
||||||
"Hide_Keywords": "Piilota Avainsana",
|
"Hide_Keywords": "Piilota Avainsana",
|
||||||
@@ -138,8 +136,6 @@
|
|||||||
"Recipes_per_page": "Reseptejä sivulla",
|
"Recipes_per_page": "Reseptejä sivulla",
|
||||||
"Remove_nutrition_recipe": "Poista ravintoaine reseptistä",
|
"Remove_nutrition_recipe": "Poista ravintoaine reseptistä",
|
||||||
"Reset_Search": "Nollaa haku",
|
"Reset_Search": "Nollaa haku",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Root",
|
"Root": "Root",
|
||||||
"Save": "Tallenna",
|
"Save": "Tallenna",
|
||||||
"Save_and_View": "Tallenna & Katso",
|
"Save_and_View": "Tallenna & Katso",
|
||||||
@@ -190,6 +186,7 @@
|
|||||||
"Week_Numbers": "Viikkonumerot",
|
"Week_Numbers": "Viikkonumerot",
|
||||||
"Year": "Vuosi",
|
"Year": "Vuosi",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"all_fields_optional": "Kaikki kentät ovat valinnaisia ja voidaan jättää tyhjiksi.",
|
"all_fields_optional": "Kaikki kentät ovat valinnaisia ja voidaan jättää tyhjiksi.",
|
||||||
"and": "ja",
|
"and": "ja",
|
||||||
"and_up": "& Ylös",
|
"and_up": "& Ylös",
|
||||||
@@ -197,6 +194,7 @@
|
|||||||
"convert_internal": "Muunna sisäiseksi reseptiksi",
|
"convert_internal": "Muunna sisäiseksi reseptiksi",
|
||||||
"create_rule": "ja luo automaatio",
|
"create_rule": "ja luo automaatio",
|
||||||
"create_title": "Uusi {type}",
|
"create_title": "Uusi {type}",
|
||||||
|
"created_by": "",
|
||||||
"del_confirmation_tree": "Haluatko varmasti poistaa {source} ja kaikki sen alaosat?",
|
"del_confirmation_tree": "Haluatko varmasti poistaa {source} ja kaikki sen alaosat?",
|
||||||
"delete_confirmation": "Haluatko varmasti poistaa {source}?",
|
"delete_confirmation": "Haluatko varmasti poistaa {source}?",
|
||||||
"delete_title": "Poista {type}",
|
"delete_title": "Poista {type}",
|
||||||
|
|||||||
@@ -100,7 +100,6 @@
|
|||||||
"Edit_Keyword": "Modifier le mot-clé",
|
"Edit_Keyword": "Modifier le mot-clé",
|
||||||
"Edit_Meal_Plan_Entry": "Modifier une entrée de menu",
|
"Edit_Meal_Plan_Entry": "Modifier une entrée de menu",
|
||||||
"Edit_Recipe": "Modifier la recette",
|
"Edit_Recipe": "Modifier la recette",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Vider",
|
"Empty": "Vider",
|
||||||
"Enable": "Activer",
|
"Enable": "Activer",
|
||||||
"Enable_Amount": "Activer la quantité",
|
"Enable_Amount": "Activer la quantité",
|
||||||
@@ -130,7 +129,6 @@
|
|||||||
"Food_Replace": "Remplacer l'aliment",
|
"Food_Replace": "Remplacer l'aliment",
|
||||||
"Foods": "Aliments",
|
"Foods": "Aliments",
|
||||||
"GroupBy": "Grouper par",
|
"GroupBy": "Grouper par",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Cacher l’aliment",
|
"Hide_Food": "Cacher l’aliment",
|
||||||
"Hide_Keyword": "masquer les mots clefs",
|
"Hide_Keyword": "masquer les mots clefs",
|
||||||
"Hide_Keywords": "Cacher le mot-clé",
|
"Hide_Keywords": "Cacher le mot-clé",
|
||||||
@@ -282,8 +280,6 @@
|
|||||||
"Remove_nutrition_recipe": "Supprimer les valeurs nutritionelles de la recette",
|
"Remove_nutrition_recipe": "Supprimer les valeurs nutritionelles de la recette",
|
||||||
"Reset": "Réinitialiser",
|
"Reset": "Réinitialiser",
|
||||||
"Reset_Search": "Réinitialiser la recherche",
|
"Reset_Search": "Réinitialiser la recherche",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Racine",
|
"Root": "Racine",
|
||||||
"Save": "Sauvegarder",
|
"Save": "Sauvegarder",
|
||||||
"Save_and_View": "Sauvegarder et visualiser",
|
"Save_and_View": "Sauvegarder et visualiser",
|
||||||
@@ -380,6 +376,7 @@
|
|||||||
"Welcome": "Bienvenue",
|
"Welcome": "Bienvenue",
|
||||||
"Year": "Année",
|
"Year": "Année",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Ajouter un Mot Clé",
|
"add_keyword": "Ajouter un Mot Clé",
|
||||||
"additional_options": "Options Supplémentaires",
|
"additional_options": "Options Supplémentaires",
|
||||||
"advanced": "Avancé",
|
"advanced": "Avancé",
|
||||||
@@ -404,7 +401,7 @@
|
|||||||
"create_rule": "et créer une automatisation",
|
"create_rule": "et créer une automatisation",
|
||||||
"create_shopping_new": "Ajouter à la NOUVELLE liste de courses",
|
"create_shopping_new": "Ajouter à la NOUVELLE liste de courses",
|
||||||
"create_title": "Nouveau {type}",
|
"create_title": "Nouveau {type}",
|
||||||
"created_by": "Créé par",
|
"created_by": "",
|
||||||
"created_on": "Créé le",
|
"created_on": "Créé le",
|
||||||
"csv_delim_help": "Délimiteur à utiliser pour les exports CSV.",
|
"csv_delim_help": "Délimiteur à utiliser pour les exports CSV.",
|
||||||
"csv_delim_label": "Délimiteur CSV",
|
"csv_delim_label": "Délimiteur CSV",
|
||||||
|
|||||||
@@ -101,7 +101,6 @@
|
|||||||
"Edit_Keyword": "עדכן מילת מפתח",
|
"Edit_Keyword": "עדכן מילת מפתח",
|
||||||
"Edit_Meal_Plan_Entry": "ערוך רשימת תכנון אוכל",
|
"Edit_Meal_Plan_Entry": "ערוך רשימת תכנון אוכל",
|
||||||
"Edit_Recipe": "עדכן מתכון",
|
"Edit_Recipe": "עדכן מתכון",
|
||||||
"Email": "",
|
|
||||||
"Empty": "ריק",
|
"Empty": "ריק",
|
||||||
"Enable": "הפעל",
|
"Enable": "הפעל",
|
||||||
"Enable_Amount": "אפשר כמות",
|
"Enable_Amount": "אפשר כמות",
|
||||||
@@ -131,7 +130,6 @@
|
|||||||
"Food_Replace": "החלף אוכל",
|
"Food_Replace": "החלף אוכל",
|
||||||
"Foods": "מאכלים",
|
"Foods": "מאכלים",
|
||||||
"GroupBy": "אסוף לפי",
|
"GroupBy": "אסוף לפי",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "הסתר אוכל",
|
"Hide_Food": "הסתר אוכל",
|
||||||
"Hide_Keyword": "הסתר מילות מפתח",
|
"Hide_Keyword": "הסתר מילות מפתח",
|
||||||
"Hide_Keywords": "הסתרת מילת מפתח",
|
"Hide_Keywords": "הסתרת מילת מפתח",
|
||||||
@@ -283,8 +281,6 @@
|
|||||||
"Remove_nutrition_recipe": "מחר ערכים תזונתיים מהמתכון",
|
"Remove_nutrition_recipe": "מחר ערכים תזונתיים מהמתכון",
|
||||||
"Reset": "אפס",
|
"Reset": "אפס",
|
||||||
"Reset_Search": "אפס חיפוש",
|
"Reset_Search": "אפס חיפוש",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "ראשי",
|
"Root": "ראשי",
|
||||||
"Save": "שמור",
|
"Save": "שמור",
|
||||||
"Save_and_View": "שמור וצפה",
|
"Save_and_View": "שמור וצפה",
|
||||||
@@ -382,6 +378,7 @@
|
|||||||
"Welcome": "ברוכים הבאים",
|
"Welcome": "ברוכים הבאים",
|
||||||
"Year": "שנה",
|
"Year": "שנה",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "הוסף מילת מפתח",
|
"add_keyword": "הוסף מילת מפתח",
|
||||||
"additional_options": "אפשרויות נוספות",
|
"additional_options": "אפשרויות נוספות",
|
||||||
"advanced": "מתקדם",
|
"advanced": "מתקדם",
|
||||||
@@ -405,7 +402,7 @@
|
|||||||
"create_food_desc": "צור מאכל וקשרו למתכון.",
|
"create_food_desc": "צור מאכל וקשרו למתכון.",
|
||||||
"create_rule": "וגם צור אוטומציה",
|
"create_rule": "וגם צור אוטומציה",
|
||||||
"create_title": "חדש {type}",
|
"create_title": "חדש {type}",
|
||||||
"created_by": "נוצר על ידי",
|
"created_by": "",
|
||||||
"created_on": "נוצר ב",
|
"created_on": "נוצר ב",
|
||||||
"csv_delim_help": "תוחם לשימוש בייצוא לCSV.",
|
"csv_delim_help": "תוחם לשימוש בייצוא לCSV.",
|
||||||
"csv_delim_label": "תוחם CSV",
|
"csv_delim_label": "תוחם CSV",
|
||||||
|
|||||||
@@ -89,7 +89,6 @@
|
|||||||
"Edit_Keyword": "Kulcsszó szerkesztése",
|
"Edit_Keyword": "Kulcsszó szerkesztése",
|
||||||
"Edit_Meal_Plan_Entry": "Menüterv bejegyzés szerkesztése",
|
"Edit_Meal_Plan_Entry": "Menüterv bejegyzés szerkesztése",
|
||||||
"Edit_Recipe": "Recept szerkesztése",
|
"Edit_Recipe": "Recept szerkesztése",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Üres",
|
"Empty": "Üres",
|
||||||
"Enable_Amount": "Összeg bekapcsolása",
|
"Enable_Amount": "Összeg bekapcsolása",
|
||||||
"EndDate": "Befejezés dátuma",
|
"EndDate": "Befejezés dátuma",
|
||||||
@@ -114,7 +113,6 @@
|
|||||||
"Food_Replace": "Étel cseréje",
|
"Food_Replace": "Étel cseréje",
|
||||||
"Foods": "Alapanyagok",
|
"Foods": "Alapanyagok",
|
||||||
"GroupBy": "Csoportosítva",
|
"GroupBy": "Csoportosítva",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Alapanyag elrejtése",
|
"Hide_Food": "Alapanyag elrejtése",
|
||||||
"Hide_Keyword": "Kulcsszavak elrejtése",
|
"Hide_Keyword": "Kulcsszavak elrejtése",
|
||||||
"Hide_Keywords": "Kulcsszó elrejtése",
|
"Hide_Keywords": "Kulcsszó elrejtése",
|
||||||
@@ -256,8 +254,6 @@
|
|||||||
"Remove_nutrition_recipe": "Tápértékadatok törlése a receptből",
|
"Remove_nutrition_recipe": "Tápértékadatok törlése a receptből",
|
||||||
"Reset": "Visszaállítás",
|
"Reset": "Visszaállítás",
|
||||||
"Reset_Search": "Keresés alaphelyzetbe állítása",
|
"Reset_Search": "Keresés alaphelyzetbe állítása",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Gyökér",
|
"Root": "Gyökér",
|
||||||
"Save": "Mentés",
|
"Save": "Mentés",
|
||||||
"Save_and_View": "Mentés & megtekintés",
|
"Save_and_View": "Mentés & megtekintés",
|
||||||
@@ -342,6 +338,7 @@
|
|||||||
"Welcome": "Üdvözöljük",
|
"Welcome": "Üdvözöljük",
|
||||||
"Year": "Év",
|
"Year": "Év",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Kulcsszó hozzáadása",
|
"add_keyword": "Kulcsszó hozzáadása",
|
||||||
"additional_options": "További lehetőségek",
|
"additional_options": "További lehetőségek",
|
||||||
"advanced": "Haladó",
|
"advanced": "Haladó",
|
||||||
@@ -365,6 +362,7 @@
|
|||||||
"create_food_desc": "",
|
"create_food_desc": "",
|
||||||
"create_rule": "és automatizálás létrehozása",
|
"create_rule": "és automatizálás létrehozása",
|
||||||
"create_title": "Új {type}",
|
"create_title": "Új {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Létrehozva",
|
"created_on": "Létrehozva",
|
||||||
"csv_delim_help": "A CSV exportáláshoz használandó határolójel.",
|
"csv_delim_help": "A CSV exportáláshoz használandó határolójel.",
|
||||||
"csv_delim_label": "CSV elválasztó",
|
"csv_delim_label": "CSV elválasztó",
|
||||||
|
|||||||
@@ -28,7 +28,6 @@
|
|||||||
"Edit_Food": "Խմբագրել սննդամթերքը",
|
"Edit_Food": "Խմբագրել սննդամթերքը",
|
||||||
"Edit_Keyword": "Խմբագրել բանալի բառը",
|
"Edit_Keyword": "Խմբագրել բանալի բառը",
|
||||||
"Edit_Recipe": "Խմբագրել բաղադրատոմսը",
|
"Edit_Recipe": "Խմբագրել բաղադրատոմսը",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Դատարկ",
|
"Empty": "Դատարկ",
|
||||||
"Energy": "",
|
"Energy": "",
|
||||||
"Export": "",
|
"Export": "",
|
||||||
@@ -38,7 +37,6 @@
|
|||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
"Food": "Սննդամթերք",
|
"Food": "Սննդամթերք",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Թաքցնել սննդամթերքը",
|
"Hide_Food": "Թաքցնել սննդամթերքը",
|
||||||
"Hide_Keywords": "Թաքցնել բանալի բառը",
|
"Hide_Keywords": "Թաքցնել բանալի բառը",
|
||||||
"Hide_Recipes": "Թաքցնել բաղադրատոմսերը",
|
"Hide_Recipes": "Թաքցնել բաղադրատոմսերը",
|
||||||
@@ -84,8 +82,6 @@
|
|||||||
"Recipes_per_page": "Բաղադրատոմս էջում",
|
"Recipes_per_page": "Բաղադրատոմս էջում",
|
||||||
"Remove_nutrition_recipe": "Հեռացնել բաղադրատոմսի սննդայնությունը",
|
"Remove_nutrition_recipe": "Հեռացնել բաղադրատոմսի սննդայնությունը",
|
||||||
"Reset_Search": "Զրոյացնել որոնումը",
|
"Reset_Search": "Զրոյացնել որոնումը",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Save": "",
|
"Save": "",
|
||||||
"Save_and_View": "Պահպանել և Դիտել",
|
"Save_and_View": "Պահպանել և Դիտել",
|
||||||
"Search": "",
|
"Search": "",
|
||||||
@@ -117,11 +113,13 @@
|
|||||||
"View_Recipes": "Դիտել բաղադրատոմսերը",
|
"View_Recipes": "Դիտել բաղադրատոմսերը",
|
||||||
"Waiting": "",
|
"Waiting": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"all_fields_optional": "Բոլոր տողերը կամավոր են և կարող են մնալ դատարկ։",
|
"all_fields_optional": "Բոլոր տողերը կամավոր են և կարող են մնալ դատարկ։",
|
||||||
"and": "և",
|
"and": "և",
|
||||||
"confirm_delete": "Համոզվա՞ծ եք, որ ուզում եք ջնջել այս {օբյեկտը}։",
|
"confirm_delete": "Համոզվա՞ծ եք, որ ուզում եք ջնջել այս {օբյեկտը}։",
|
||||||
"convert_internal": "Փոխակերպել ներքին բաղադրատոմսի",
|
"convert_internal": "Փոխակերպել ներքին բաղադրատոմսի",
|
||||||
"create_rule": "և ստեղծել ավտոմատացում",
|
"create_rule": "և ստեղծել ավտոմատացում",
|
||||||
|
"created_by": "",
|
||||||
"delete_confirmation": "Համոզվա՞ծ եք, որ ուզում եք ջնջել։",
|
"delete_confirmation": "Համոզվա՞ծ եք, որ ուզում եք ջնջել։",
|
||||||
"err_creating_resource": "Ռեսուրսը ստեղծելիս սխալ է գրանցվել:",
|
"err_creating_resource": "Ռեսուրսը ստեղծելիս սխալ է գրանցվել:",
|
||||||
"err_deleting_resource": "Ռեսուրսը ջնջելիս սխալ է գրանցվել:",
|
"err_deleting_resource": "Ռեսուրսը ջնջելիս սխալ է գրանցվել:",
|
||||||
|
|||||||
@@ -79,7 +79,6 @@
|
|||||||
"Edit_Keyword": "Rubah Kata Kunci",
|
"Edit_Keyword": "Rubah Kata Kunci",
|
||||||
"Edit_Meal_Plan_Entry": "",
|
"Edit_Meal_Plan_Entry": "",
|
||||||
"Edit_Recipe": "Rubah Resep",
|
"Edit_Recipe": "Rubah Resep",
|
||||||
"Email": "",
|
|
||||||
"Empty": "",
|
"Empty": "",
|
||||||
"Enable_Amount": "Aktifkan Jumlah",
|
"Enable_Amount": "Aktifkan Jumlah",
|
||||||
"Energy": "Energi",
|
"Energy": "Energi",
|
||||||
@@ -102,7 +101,6 @@
|
|||||||
"Food_Alias": "",
|
"Food_Alias": "",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "",
|
"GroupBy": "",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "",
|
"Hide_Food": "",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "Sembunyikan Kata Kunci",
|
"Hide_Keywords": "Sembunyikan Kata Kunci",
|
||||||
@@ -232,8 +230,6 @@
|
|||||||
"Remove_nutrition_recipe": "Hapus nutrisi dari resep",
|
"Remove_nutrition_recipe": "Hapus nutrisi dari resep",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "Setel Ulang Pencarian",
|
"Reset_Search": "Setel Ulang Pencarian",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Akar",
|
"Root": "Akar",
|
||||||
"Save": "Menyimpan",
|
"Save": "Menyimpan",
|
||||||
"Save_and_View": "Simpan & Lihat",
|
"Save_and_View": "Simpan & Lihat",
|
||||||
@@ -309,6 +305,7 @@
|
|||||||
"Week_Numbers": "",
|
"Week_Numbers": "",
|
||||||
"Year": "",
|
"Year": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
@@ -328,6 +325,7 @@
|
|||||||
"create_food_desc": "",
|
"create_food_desc": "",
|
||||||
"create_rule": "dan buat otomatisasi",
|
"create_rule": "dan buat otomatisasi",
|
||||||
"create_title": "",
|
"create_title": "",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "",
|
"created_on": "",
|
||||||
"csv_delim_help": "",
|
"csv_delim_help": "",
|
||||||
"csv_delim_label": "",
|
"csv_delim_label": "",
|
||||||
|
|||||||
@@ -100,7 +100,6 @@
|
|||||||
"Edit_Keyword": "",
|
"Edit_Keyword": "",
|
||||||
"Edit_Meal_Plan_Entry": "",
|
"Edit_Meal_Plan_Entry": "",
|
||||||
"Edit_Recipe": "",
|
"Edit_Recipe": "",
|
||||||
"Email": "",
|
|
||||||
"Empty": "",
|
"Empty": "",
|
||||||
"Enable": "",
|
"Enable": "",
|
||||||
"Enable_Amount": "",
|
"Enable_Amount": "",
|
||||||
@@ -130,7 +129,6 @@
|
|||||||
"Food_Replace": "",
|
"Food_Replace": "",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "",
|
"GroupBy": "",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "",
|
"Hide_Food": "",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "",
|
"Hide_Keywords": "",
|
||||||
@@ -282,8 +280,6 @@
|
|||||||
"Remove_nutrition_recipe": "",
|
"Remove_nutrition_recipe": "",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "",
|
"Reset_Search": "",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "",
|
"Root": "",
|
||||||
"Save": "",
|
"Save": "",
|
||||||
"Save_and_View": "",
|
"Save_and_View": "",
|
||||||
@@ -380,6 +376,7 @@
|
|||||||
"Welcome": "",
|
"Welcome": "",
|
||||||
"Year": "",
|
"Year": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
|
|||||||
@@ -84,7 +84,6 @@
|
|||||||
"Edit_Keyword": "Modifica parola chiave",
|
"Edit_Keyword": "Modifica parola chiave",
|
||||||
"Edit_Meal_Plan_Entry": "Modifica voce del piano alimentare",
|
"Edit_Meal_Plan_Entry": "Modifica voce del piano alimentare",
|
||||||
"Edit_Recipe": "Modifica Ricetta",
|
"Edit_Recipe": "Modifica Ricetta",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Vuoto",
|
"Empty": "Vuoto",
|
||||||
"Enable_Amount": "Abilita Quantità",
|
"Enable_Amount": "Abilita Quantità",
|
||||||
"Energy": "Energia",
|
"Energy": "Energia",
|
||||||
@@ -107,7 +106,6 @@
|
|||||||
"Food_Alias": "Alias Alimento",
|
"Food_Alias": "Alias Alimento",
|
||||||
"Foods": "Alimenti",
|
"Foods": "Alimenti",
|
||||||
"GroupBy": "Raggruppa per",
|
"GroupBy": "Raggruppa per",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Nascondi alimento",
|
"Hide_Food": "Nascondi alimento",
|
||||||
"Hide_Keyword": "Nascondi parole chiave",
|
"Hide_Keyword": "Nascondi parole chiave",
|
||||||
"Hide_Keywords": "Nascondi parola chiave",
|
"Hide_Keywords": "Nascondi parola chiave",
|
||||||
@@ -240,8 +238,6 @@
|
|||||||
"Remove_nutrition_recipe": "Elimina nutrienti dalla ricetta",
|
"Remove_nutrition_recipe": "Elimina nutrienti dalla ricetta",
|
||||||
"Reset": "Azzera",
|
"Reset": "Azzera",
|
||||||
"Reset_Search": "Ripristina Ricerca",
|
"Reset_Search": "Ripristina Ricerca",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Radice",
|
"Root": "Radice",
|
||||||
"Save": "Salva",
|
"Save": "Salva",
|
||||||
"Save_and_View": "Salva & Mostra",
|
"Save_and_View": "Salva & Mostra",
|
||||||
@@ -324,6 +320,7 @@
|
|||||||
"Week_Numbers": "Numeri della settimana",
|
"Week_Numbers": "Numeri della settimana",
|
||||||
"Year": "Anno",
|
"Year": "Anno",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Aggiungi parola chiave",
|
"add_keyword": "Aggiungi parola chiave",
|
||||||
"additional_options": "Opzioni aggiuntive",
|
"additional_options": "Opzioni aggiuntive",
|
||||||
"advanced": "Avanzate",
|
"advanced": "Avanzate",
|
||||||
@@ -343,6 +340,7 @@
|
|||||||
"create_food_desc": "Crea un alimento e collegalo a questa ricetta.",
|
"create_food_desc": "Crea un alimento e collegalo a questa ricetta.",
|
||||||
"create_rule": "e crea automazione",
|
"create_rule": "e crea automazione",
|
||||||
"create_title": "Nuovo {type}",
|
"create_title": "Nuovo {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Creato il",
|
"created_on": "Creato il",
|
||||||
"csv_delim_help": "Delimitatore usato per le esportazioni CSV.",
|
"csv_delim_help": "Delimitatore usato per le esportazioni CSV.",
|
||||||
"csv_delim_label": "Delimitatore CSV",
|
"csv_delim_label": "Delimitatore CSV",
|
||||||
|
|||||||
@@ -91,7 +91,6 @@
|
|||||||
"Edit_Keyword": "Redaguoti raktažodį",
|
"Edit_Keyword": "Redaguoti raktažodį",
|
||||||
"Edit_Meal_Plan_Entry": "",
|
"Edit_Meal_Plan_Entry": "",
|
||||||
"Edit_Recipe": "Redaguoti receptą",
|
"Edit_Recipe": "Redaguoti receptą",
|
||||||
"Email": "",
|
|
||||||
"Empty": "",
|
"Empty": "",
|
||||||
"Enable_Amount": "Įjungti sumą",
|
"Enable_Amount": "Įjungti sumą",
|
||||||
"EndDate": "",
|
"EndDate": "",
|
||||||
@@ -116,7 +115,6 @@
|
|||||||
"Food_Replace": "",
|
"Food_Replace": "",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "",
|
"GroupBy": "",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "",
|
"Hide_Food": "",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "Paslėpti raktažodį",
|
"Hide_Keywords": "Paslėpti raktažodį",
|
||||||
@@ -260,8 +258,6 @@
|
|||||||
"Remove_nutrition_recipe": "Ištrinti mitybos informaciją iš recepto",
|
"Remove_nutrition_recipe": "Ištrinti mitybos informaciją iš recepto",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "Iš naujo nustatyti paiešką",
|
"Reset_Search": "Iš naujo nustatyti paiešką",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "",
|
"Root": "",
|
||||||
"Save": "",
|
"Save": "",
|
||||||
"Save_and_View": "Išsaugoti ir peržiūrėti",
|
"Save_and_View": "Išsaugoti ir peržiūrėti",
|
||||||
@@ -350,6 +346,7 @@
|
|||||||
"Welcome": "",
|
"Welcome": "",
|
||||||
"Year": "",
|
"Year": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
@@ -373,6 +370,7 @@
|
|||||||
"create_food_desc": "",
|
"create_food_desc": "",
|
||||||
"create_rule": "",
|
"create_rule": "",
|
||||||
"create_title": "",
|
"create_title": "",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "",
|
"created_on": "",
|
||||||
"csv_delim_help": "",
|
"csv_delim_help": "",
|
||||||
"csv_delim_label": "",
|
"csv_delim_label": "",
|
||||||
|
|||||||
@@ -88,7 +88,6 @@
|
|||||||
"Edit_Keyword": "Rediger nøkkelord",
|
"Edit_Keyword": "Rediger nøkkelord",
|
||||||
"Edit_Meal_Plan_Entry": "Rediger måltidsplanoppføring",
|
"Edit_Meal_Plan_Entry": "Rediger måltidsplanoppføring",
|
||||||
"Edit_Recipe": "Rediger oppskrift",
|
"Edit_Recipe": "Rediger oppskrift",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Tom",
|
"Empty": "Tom",
|
||||||
"Enable_Amount": "Aktiver mengde",
|
"Enable_Amount": "Aktiver mengde",
|
||||||
"Energy": "Energi",
|
"Energy": "Energi",
|
||||||
@@ -111,7 +110,6 @@
|
|||||||
"Food_Alias": "Matrett Alias",
|
"Food_Alias": "Matrett Alias",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "Grupér",
|
"GroupBy": "Grupér",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Skjul Matrett",
|
"Hide_Food": "Skjul Matrett",
|
||||||
"Hide_Keyword": "Skjul nøkkelord",
|
"Hide_Keyword": "Skjul nøkkelord",
|
||||||
"Hide_Keywords": "Skjul nøkkelord",
|
"Hide_Keywords": "Skjul nøkkelord",
|
||||||
@@ -252,8 +250,6 @@
|
|||||||
"Remove_nutrition_recipe": "Fjern næringsinnhold fra oppskrift",
|
"Remove_nutrition_recipe": "Fjern næringsinnhold fra oppskrift",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "Nullstill søk",
|
"Reset_Search": "Nullstill søk",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Rot",
|
"Root": "Rot",
|
||||||
"Save": "Lagre",
|
"Save": "Lagre",
|
||||||
"Save_and_View": "Lagre og vis",
|
"Save_and_View": "Lagre og vis",
|
||||||
@@ -339,6 +335,7 @@
|
|||||||
"Welcome": "Velkommen",
|
"Welcome": "Velkommen",
|
||||||
"Year": "År",
|
"Year": "År",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "Avansert",
|
"advanced": "Avansert",
|
||||||
@@ -362,6 +359,7 @@
|
|||||||
"create_food_desc": "",
|
"create_food_desc": "",
|
||||||
"create_rule": "og opprett automasjon",
|
"create_rule": "og opprett automasjon",
|
||||||
"create_title": "Ny {type}",
|
"create_title": "Ny {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "",
|
"created_on": "",
|
||||||
"csv_delim_help": "Skilletegn som skal brukes for CSV-eksport.",
|
"csv_delim_help": "Skilletegn som skal brukes for CSV-eksport.",
|
||||||
"csv_delim_label": "CSV-skilletegn",
|
"csv_delim_label": "CSV-skilletegn",
|
||||||
|
|||||||
@@ -92,7 +92,6 @@
|
|||||||
"Edit_Keyword": "Bewerk Etiket",
|
"Edit_Keyword": "Bewerk Etiket",
|
||||||
"Edit_Meal_Plan_Entry": "Bewerk maaltijdplan",
|
"Edit_Meal_Plan_Entry": "Bewerk maaltijdplan",
|
||||||
"Edit_Recipe": "Bewerk Recept",
|
"Edit_Recipe": "Bewerk Recept",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Leeg",
|
"Empty": "Leeg",
|
||||||
"Enable_Amount": "Schakel hoeveelheid in",
|
"Enable_Amount": "Schakel hoeveelheid in",
|
||||||
"Energy": "Energie",
|
"Energy": "Energie",
|
||||||
@@ -115,7 +114,6 @@
|
|||||||
"Food_Alias": "Eten Alias",
|
"Food_Alias": "Eten Alias",
|
||||||
"Foods": "Ingrediënten",
|
"Foods": "Ingrediënten",
|
||||||
"GroupBy": "Groepeer per",
|
"GroupBy": "Groepeer per",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Verberg Eten",
|
"Hide_Food": "Verberg Eten",
|
||||||
"Hide_Keyword": "Verberg etiketten",
|
"Hide_Keyword": "Verberg etiketten",
|
||||||
"Hide_Keywords": "Verberg Etiket",
|
"Hide_Keywords": "Verberg Etiket",
|
||||||
@@ -256,8 +254,6 @@
|
|||||||
"Remove_nutrition_recipe": "Verwijder voedingswaarde van recept",
|
"Remove_nutrition_recipe": "Verwijder voedingswaarde van recept",
|
||||||
"Reset": "Herstel",
|
"Reset": "Herstel",
|
||||||
"Reset_Search": "Zoeken resetten",
|
"Reset_Search": "Zoeken resetten",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Bron",
|
"Root": "Bron",
|
||||||
"Save": "Opslaan",
|
"Save": "Opslaan",
|
||||||
"Save_and_View": "Sla op & Bekijk",
|
"Save_and_View": "Sla op & Bekijk",
|
||||||
@@ -343,6 +339,7 @@
|
|||||||
"Welcome": "Welkom",
|
"Welcome": "Welkom",
|
||||||
"Year": "Jaar",
|
"Year": "Jaar",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Voeg etiket toe",
|
"add_keyword": "Voeg etiket toe",
|
||||||
"additional_options": "Extra opties",
|
"additional_options": "Extra opties",
|
||||||
"advanced": "Geavanceerd",
|
"advanced": "Geavanceerd",
|
||||||
@@ -367,6 +364,7 @@
|
|||||||
"create_rule": "en creëer automatisering",
|
"create_rule": "en creëer automatisering",
|
||||||
"create_shopping_new": "Voeg toe aan NIEUWE boodschappenlijst",
|
"create_shopping_new": "Voeg toe aan NIEUWE boodschappenlijst",
|
||||||
"create_title": "Nieuw {type}",
|
"create_title": "Nieuw {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Aangemaakt op",
|
"created_on": "Aangemaakt op",
|
||||||
"csv_delim_help": "Scheidingsteken voor CSV exports.",
|
"csv_delim_help": "Scheidingsteken voor CSV exports.",
|
||||||
"csv_delim_label": "CSV scheidingsteken",
|
"csv_delim_label": "CSV scheidingsteken",
|
||||||
|
|||||||
@@ -102,7 +102,6 @@
|
|||||||
"Edit_Keyword": "Edytuj słowo kluczowe",
|
"Edit_Keyword": "Edytuj słowo kluczowe",
|
||||||
"Edit_Meal_Plan_Entry": "Edytuj wpis planu posiłków",
|
"Edit_Meal_Plan_Entry": "Edytuj wpis planu posiłków",
|
||||||
"Edit_Recipe": "Edytuj przepis",
|
"Edit_Recipe": "Edytuj przepis",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Pusty",
|
"Empty": "Pusty",
|
||||||
"Enable": "Włączyć",
|
"Enable": "Włączyć",
|
||||||
"Enable_Amount": "Włącz ilość",
|
"Enable_Amount": "Włącz ilość",
|
||||||
@@ -132,7 +131,6 @@
|
|||||||
"Food_Replace": "Zastąp produkt",
|
"Food_Replace": "Zastąp produkt",
|
||||||
"Foods": "Żywność",
|
"Foods": "Żywność",
|
||||||
"GroupBy": "Grupuj według",
|
"GroupBy": "Grupuj według",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Ukryj żywność",
|
"Hide_Food": "Ukryj żywność",
|
||||||
"Hide_Keyword": "Ukryj słowa kluczowe",
|
"Hide_Keyword": "Ukryj słowa kluczowe",
|
||||||
"Hide_Keywords": "Ukryj słowo kluczowe",
|
"Hide_Keywords": "Ukryj słowo kluczowe",
|
||||||
@@ -284,8 +282,6 @@
|
|||||||
"Remove_nutrition_recipe": "Usuń wartości odżywcze z przepisu",
|
"Remove_nutrition_recipe": "Usuń wartości odżywcze z przepisu",
|
||||||
"Reset": "Resetowanie",
|
"Reset": "Resetowanie",
|
||||||
"Reset_Search": "Resetuj wyszukiwanie",
|
"Reset_Search": "Resetuj wyszukiwanie",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Główny",
|
"Root": "Główny",
|
||||||
"Save": "Zapisz",
|
"Save": "Zapisz",
|
||||||
"Save_and_View": "Zapisz i wyświetl",
|
"Save_and_View": "Zapisz i wyświetl",
|
||||||
@@ -383,6 +379,7 @@
|
|||||||
"Welcome": "Witamy",
|
"Welcome": "Witamy",
|
||||||
"Year": "Rok",
|
"Year": "Rok",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Dodaj słowo kluczowe",
|
"add_keyword": "Dodaj słowo kluczowe",
|
||||||
"additional_options": "Opcje dodatkowe",
|
"additional_options": "Opcje dodatkowe",
|
||||||
"advanced": "Zaawansowany",
|
"advanced": "Zaawansowany",
|
||||||
@@ -407,7 +404,7 @@
|
|||||||
"create_rule": "i stwórz automatyzację",
|
"create_rule": "i stwórz automatyzację",
|
||||||
"create_shopping_new": "Dodaj do NOWEJ listy zakupów",
|
"create_shopping_new": "Dodaj do NOWEJ listy zakupów",
|
||||||
"create_title": "Nowy {type}",
|
"create_title": "Nowy {type}",
|
||||||
"created_by": "Stworzone przez",
|
"created_by": "",
|
||||||
"created_on": "Utworzono dnia",
|
"created_on": "Utworzono dnia",
|
||||||
"csv_delim_help": "Separator używany przy eksporcie CSV.",
|
"csv_delim_help": "Separator używany przy eksporcie CSV.",
|
||||||
"csv_delim_label": "Separator CSV",
|
"csv_delim_label": "Separator CSV",
|
||||||
|
|||||||
@@ -69,7 +69,6 @@
|
|||||||
"Edit_Keyword": "Editar Palavra Chave",
|
"Edit_Keyword": "Editar Palavra Chave",
|
||||||
"Edit_Meal_Plan_Entry": "Editar entrada de plano de refeições",
|
"Edit_Meal_Plan_Entry": "Editar entrada de plano de refeições",
|
||||||
"Edit_Recipe": "Editar receita",
|
"Edit_Recipe": "Editar receita",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Esvaziar",
|
"Empty": "Esvaziar",
|
||||||
"Enable_Amount": "Ativar quantidade",
|
"Enable_Amount": "Ativar quantidade",
|
||||||
"Energy": "Energia",
|
"Energy": "Energia",
|
||||||
@@ -89,7 +88,6 @@
|
|||||||
"Food_Alias": "Alcunha da comida",
|
"Food_Alias": "Alcunha da comida",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "Agrupar por",
|
"GroupBy": "Agrupar por",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Esconder comida",
|
"Hide_Food": "Esconder comida",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "Esconder palavra-chave",
|
"Hide_Keywords": "Esconder palavra-chave",
|
||||||
@@ -201,8 +199,6 @@
|
|||||||
"Remove_nutrition_recipe": "Remover valor nutricional da receita",
|
"Remove_nutrition_recipe": "Remover valor nutricional da receita",
|
||||||
"Reset": "Reiniciar",
|
"Reset": "Reiniciar",
|
||||||
"Reset_Search": "Repor Pesquisa",
|
"Reset_Search": "Repor Pesquisa",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Raiz",
|
"Root": "Raiz",
|
||||||
"Save": "Guardar",
|
"Save": "Guardar",
|
||||||
"Save_and_View": "Gravar & Ver",
|
"Save_and_View": "Gravar & Ver",
|
||||||
@@ -268,6 +264,7 @@
|
|||||||
"Week_Numbers": "Números das semanas",
|
"Week_Numbers": "Números das semanas",
|
||||||
"Year": "Ano",
|
"Year": "Ano",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Adicionar Palavra Chave",
|
"add_keyword": "Adicionar Palavra Chave",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
"advanced_search_settings": "Configurações Avançadas de Pesquisa",
|
"advanced_search_settings": "Configurações Avançadas de Pesquisa",
|
||||||
@@ -286,6 +283,7 @@
|
|||||||
"create_rule": "e criar automação",
|
"create_rule": "e criar automação",
|
||||||
"create_shopping_new": "",
|
"create_shopping_new": "",
|
||||||
"create_title": "Novo {type}",
|
"create_title": "Novo {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Criado em",
|
"created_on": "Criado em",
|
||||||
"csv_delim_help": "",
|
"csv_delim_help": "",
|
||||||
"csv_delim_label": "",
|
"csv_delim_label": "",
|
||||||
|
|||||||
@@ -98,7 +98,6 @@
|
|||||||
"Edit_Keyword": "Editar palavra-chave",
|
"Edit_Keyword": "Editar palavra-chave",
|
||||||
"Edit_Meal_Plan_Entry": "Editar plano de refeição",
|
"Edit_Meal_Plan_Entry": "Editar plano de refeição",
|
||||||
"Edit_Recipe": "Editar Receita",
|
"Edit_Recipe": "Editar Receita",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Vazio",
|
"Empty": "Vazio",
|
||||||
"Enable_Amount": "Habilitar Quantidade",
|
"Enable_Amount": "Habilitar Quantidade",
|
||||||
"EndDate": "Data Fim",
|
"EndDate": "Data Fim",
|
||||||
@@ -126,7 +125,6 @@
|
|||||||
"Food_Replace": "Substituir Alimento",
|
"Food_Replace": "Substituir Alimento",
|
||||||
"Foods": "Alimentos",
|
"Foods": "Alimentos",
|
||||||
"GroupBy": "Agrupar Por",
|
"GroupBy": "Agrupar Por",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Esconder Comida",
|
"Hide_Food": "Esconder Comida",
|
||||||
"Hide_Keyword": "Oculta palavras-chave",
|
"Hide_Keyword": "Oculta palavras-chave",
|
||||||
"Hide_Keywords": "Esconder palavra-chave",
|
"Hide_Keywords": "Esconder palavra-chave",
|
||||||
@@ -271,8 +269,6 @@
|
|||||||
"Remove_nutrition_recipe": "Deletar dados nutricionais da receita",
|
"Remove_nutrition_recipe": "Deletar dados nutricionais da receita",
|
||||||
"Reset": "Reiniciar",
|
"Reset": "Reiniciar",
|
||||||
"Reset_Search": "Resetar Busca",
|
"Reset_Search": "Resetar Busca",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Raiz",
|
"Root": "Raiz",
|
||||||
"Save": "Salvar",
|
"Save": "Salvar",
|
||||||
"Save_and_View": "Salvar e Visualizar",
|
"Save_and_View": "Salvar e Visualizar",
|
||||||
@@ -357,6 +353,7 @@
|
|||||||
"Welcome": "Bem vindo",
|
"Welcome": "Bem vindo",
|
||||||
"Year": "Ano",
|
"Year": "Ano",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Incluir Palavra-Chave",
|
"add_keyword": "Incluir Palavra-Chave",
|
||||||
"additional_options": "Opções Adicionais",
|
"additional_options": "Opções Adicionais",
|
||||||
"advanced": "Avançado",
|
"advanced": "Avançado",
|
||||||
@@ -381,7 +378,7 @@
|
|||||||
"create_rule": "e criar automação",
|
"create_rule": "e criar automação",
|
||||||
"create_shopping_new": "",
|
"create_shopping_new": "",
|
||||||
"create_title": "Novo {type}",
|
"create_title": "Novo {type}",
|
||||||
"created_by": "Criado por",
|
"created_by": "",
|
||||||
"created_on": "Criado Em",
|
"created_on": "Criado Em",
|
||||||
"csv_delim_help": "Delimitador para usar na exportação do CSV.",
|
"csv_delim_help": "Delimitador para usar na exportação do CSV.",
|
||||||
"csv_delim_label": "Delimitador CSV",
|
"csv_delim_label": "Delimitador CSV",
|
||||||
|
|||||||
@@ -86,7 +86,6 @@
|
|||||||
"Edit_Keyword": "Editează cuvânt cheie",
|
"Edit_Keyword": "Editează cuvânt cheie",
|
||||||
"Edit_Meal_Plan_Entry": "Editarea înregistrării în planul de alimentare",
|
"Edit_Meal_Plan_Entry": "Editarea înregistrării în planul de alimentare",
|
||||||
"Edit_Recipe": "Editează rețeta",
|
"Edit_Recipe": "Editează rețeta",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Gol",
|
"Empty": "Gol",
|
||||||
"Enable_Amount": "Activare cantitate",
|
"Enable_Amount": "Activare cantitate",
|
||||||
"Energy": "Energie",
|
"Energy": "Energie",
|
||||||
@@ -109,7 +108,6 @@
|
|||||||
"Food_Alias": "Pseudonim mâncare",
|
"Food_Alias": "Pseudonim mâncare",
|
||||||
"Foods": "Alimente",
|
"Foods": "Alimente",
|
||||||
"GroupBy": "Grupat de",
|
"GroupBy": "Grupat de",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Ascunde mâncare",
|
"Hide_Food": "Ascunde mâncare",
|
||||||
"Hide_Keyword": "Ascunde cuvintele cheie",
|
"Hide_Keyword": "Ascunde cuvintele cheie",
|
||||||
"Hide_Keywords": "Ascunde cuvânt cheie",
|
"Hide_Keywords": "Ascunde cuvânt cheie",
|
||||||
@@ -244,8 +242,6 @@
|
|||||||
"Remove_nutrition_recipe": "Ștergere a nutriției din rețetă",
|
"Remove_nutrition_recipe": "Ștergere a nutriției din rețetă",
|
||||||
"Reset": "Resetare",
|
"Reset": "Resetare",
|
||||||
"Reset_Search": "Resetarea căutării",
|
"Reset_Search": "Resetarea căutării",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Rădăcină",
|
"Root": "Rădăcină",
|
||||||
"Save": "Salvare",
|
"Save": "Salvare",
|
||||||
"Save_and_View": "Salvare și vizionare",
|
"Save_and_View": "Salvare și vizionare",
|
||||||
@@ -328,6 +324,7 @@
|
|||||||
"Week_Numbers": "Numerele săptămânii",
|
"Week_Numbers": "Numerele săptămânii",
|
||||||
"Year": "An",
|
"Year": "An",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Adăugare cuvânt cheie",
|
"add_keyword": "Adăugare cuvânt cheie",
|
||||||
"additional_options": "Opțiuni suplimentare",
|
"additional_options": "Opțiuni suplimentare",
|
||||||
"advanced": "Avansat",
|
"advanced": "Avansat",
|
||||||
@@ -347,6 +344,7 @@
|
|||||||
"create_food_desc": "Creați un aliment și conectați-l la această rețetă.",
|
"create_food_desc": "Creați un aliment și conectați-l la această rețetă.",
|
||||||
"create_rule": "și crearea automatizării",
|
"create_rule": "și crearea automatizării",
|
||||||
"create_title": "{type} nou",
|
"create_title": "{type} nou",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Creat la data de",
|
"created_on": "Creat la data de",
|
||||||
"csv_delim_help": "Delimitatorul utilizat pentru exporturile CSV.",
|
"csv_delim_help": "Delimitatorul utilizat pentru exporturile CSV.",
|
||||||
"csv_delim_label": "Delimitatorul CSV",
|
"csv_delim_label": "Delimitatorul CSV",
|
||||||
|
|||||||
@@ -59,7 +59,6 @@
|
|||||||
"Edit_Keyword": "Редактировать ключевое слово",
|
"Edit_Keyword": "Редактировать ключевое слово",
|
||||||
"Edit_Meal_Plan_Entry": "Редактировать план питания",
|
"Edit_Meal_Plan_Entry": "Редактировать план питания",
|
||||||
"Edit_Recipe": "Редактировать рецепт",
|
"Edit_Recipe": "Редактировать рецепт",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Пустой",
|
"Empty": "Пустой",
|
||||||
"Enable_Amount": "Активировать Количество",
|
"Enable_Amount": "Активировать Количество",
|
||||||
"Energy": "Энергетическая ценность",
|
"Energy": "Энергетическая ценность",
|
||||||
@@ -78,7 +77,6 @@
|
|||||||
"FoodOnHand": "{food} у вас в наличии.",
|
"FoodOnHand": "{food} у вас в наличии.",
|
||||||
"Food_Alias": "Наименование еды",
|
"Food_Alias": "Наименование еды",
|
||||||
"GroupBy": "Сгруппировать по",
|
"GroupBy": "Сгруппировать по",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Скрыть еду",
|
"Hide_Food": "Скрыть еду",
|
||||||
"Hide_Keyword": "Скрыть ключевые слова",
|
"Hide_Keyword": "Скрыть ключевые слова",
|
||||||
"Hide_Keywords": "Скрыть ключевое слово",
|
"Hide_Keywords": "Скрыть ключевое слово",
|
||||||
@@ -186,8 +184,6 @@
|
|||||||
"Remove_nutrition_recipe": "Уберите питательные вещества из рецепта",
|
"Remove_nutrition_recipe": "Уберите питательные вещества из рецепта",
|
||||||
"Reset": "Сбросить",
|
"Reset": "Сбросить",
|
||||||
"Reset_Search": "Очистить строку поиска",
|
"Reset_Search": "Очистить строку поиска",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Корневой элемент",
|
"Root": "Корневой элемент",
|
||||||
"Save": "Сохранить",
|
"Save": "Сохранить",
|
||||||
"Save_and_View": "Сохранить и показать",
|
"Save_and_View": "Сохранить и показать",
|
||||||
@@ -244,6 +240,7 @@
|
|||||||
"Week_Numbers": "Номер недели",
|
"Week_Numbers": "Номер недели",
|
||||||
"Year": "Год",
|
"Year": "Год",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Добавить ключевое слово",
|
"add_keyword": "Добавить ключевое слово",
|
||||||
"additional_options": "Дополнительные опции",
|
"additional_options": "Дополнительные опции",
|
||||||
"advanced": "Расширенный",
|
"advanced": "Расширенный",
|
||||||
@@ -259,6 +256,7 @@
|
|||||||
"create_food_desc": "Создайте блюдо и свяжите его с этим рецептом.",
|
"create_food_desc": "Создайте блюдо и свяжите его с этим рецептом.",
|
||||||
"create_rule": "и создать автоматически",
|
"create_rule": "и создать автоматически",
|
||||||
"create_title": "Новый {type}",
|
"create_title": "Новый {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "Создано на",
|
"created_on": "Создано на",
|
||||||
"date_created": "Дата создана",
|
"date_created": "Дата создана",
|
||||||
"date_viewed": "Последний просмотренный",
|
"date_viewed": "Последний просмотренный",
|
||||||
|
|||||||
@@ -59,7 +59,6 @@
|
|||||||
"Edit_Keyword": "Uredi ključno besedo",
|
"Edit_Keyword": "Uredi ključno besedo",
|
||||||
"Edit_Meal_Plan_Entry": "Spremeni vnos za načrtovan obrok",
|
"Edit_Meal_Plan_Entry": "Spremeni vnos za načrtovan obrok",
|
||||||
"Edit_Recipe": "Uredi Recept",
|
"Edit_Recipe": "Uredi Recept",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Prazno",
|
"Empty": "Prazno",
|
||||||
"Enable_Amount": "Omogoči količino",
|
"Enable_Amount": "Omogoči količino",
|
||||||
"Energy": "Energija",
|
"Energy": "Energija",
|
||||||
@@ -78,7 +77,6 @@
|
|||||||
"FoodOnHand": "Imaš {food} v roki.",
|
"FoodOnHand": "Imaš {food} v roki.",
|
||||||
"Food_Alias": "Vzdevek hrane",
|
"Food_Alias": "Vzdevek hrane",
|
||||||
"GroupBy": "Združi po",
|
"GroupBy": "Združi po",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Skrij hrano",
|
"Hide_Food": "Skrij hrano",
|
||||||
"Hide_Keyword": "Skrij ključne besede",
|
"Hide_Keyword": "Skrij ključne besede",
|
||||||
"Hide_Keywords": "Skrij ključno besedo",
|
"Hide_Keywords": "Skrij ključno besedo",
|
||||||
@@ -177,8 +175,6 @@
|
|||||||
"RemoveFoodFromShopping": "Odstrani {food} iz nakupovalnega listka",
|
"RemoveFoodFromShopping": "Odstrani {food} iz nakupovalnega listka",
|
||||||
"Remove_nutrition_recipe": "Receptu izbriši hranilno vrednost",
|
"Remove_nutrition_recipe": "Receptu izbriši hranilno vrednost",
|
||||||
"Reset_Search": "Ponastavi iskalnik",
|
"Reset_Search": "Ponastavi iskalnik",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "",
|
"Root": "",
|
||||||
"Save": "Shrani",
|
"Save": "Shrani",
|
||||||
"Save_and_View": "Shrani in poglej",
|
"Save_and_View": "Shrani in poglej",
|
||||||
@@ -238,6 +234,7 @@
|
|||||||
"Week_Numbers": "Števila tednov",
|
"Week_Numbers": "Števila tednov",
|
||||||
"Year": "Leto",
|
"Year": "Leto",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"all_fields_optional": "Vsa polja so opcijska in jih lahko pustiš prazne.",
|
"all_fields_optional": "Vsa polja so opcijska in jih lahko pustiš prazne.",
|
||||||
"and": "in",
|
"and": "in",
|
||||||
"and_up": "& gor",
|
"and_up": "& gor",
|
||||||
@@ -252,6 +249,7 @@
|
|||||||
"create_rule": "in ustvari avtomatizacijo",
|
"create_rule": "in ustvari avtomatizacijo",
|
||||||
"create_shopping_new": "Dodaj v NOV nakupovalni listek",
|
"create_shopping_new": "Dodaj v NOV nakupovalni listek",
|
||||||
"create_title": "Novo {type}",
|
"create_title": "Novo {type}",
|
||||||
|
"created_by": "",
|
||||||
"csv_delim_help": "Ločilo za CSV izvoz.",
|
"csv_delim_help": "Ločilo za CSV izvoz.",
|
||||||
"csv_delim_label": "CSV ločilo",
|
"csv_delim_label": "CSV ločilo",
|
||||||
"csv_prefix_help": "Dodana prepona, ko kopiramo nakupovalni listek v odložišče.",
|
"csv_prefix_help": "Dodana prepona, ko kopiramo nakupovalni listek v odložišče.",
|
||||||
|
|||||||
@@ -102,7 +102,6 @@
|
|||||||
"Edit_Keyword": "Redigera nyckelord",
|
"Edit_Keyword": "Redigera nyckelord",
|
||||||
"Edit_Meal_Plan_Entry": "Redigera matplansinlägg",
|
"Edit_Meal_Plan_Entry": "Redigera matplansinlägg",
|
||||||
"Edit_Recipe": "Redigera recept",
|
"Edit_Recipe": "Redigera recept",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Tom",
|
"Empty": "Tom",
|
||||||
"Enable": "Aktivera",
|
"Enable": "Aktivera",
|
||||||
"Enable_Amount": "Aktivera belopp",
|
"Enable_Amount": "Aktivera belopp",
|
||||||
@@ -132,7 +131,6 @@
|
|||||||
"Food_Replace": "Ersätt ingrediens",
|
"Food_Replace": "Ersätt ingrediens",
|
||||||
"Foods": "Livsmedel",
|
"Foods": "Livsmedel",
|
||||||
"GroupBy": "Gruppera enligt",
|
"GroupBy": "Gruppera enligt",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Dölj livsmedel",
|
"Hide_Food": "Dölj livsmedel",
|
||||||
"Hide_Keyword": "Dölj nyckelord",
|
"Hide_Keyword": "Dölj nyckelord",
|
||||||
"Hide_Keywords": "Dölj nyckelord",
|
"Hide_Keywords": "Dölj nyckelord",
|
||||||
@@ -284,8 +282,6 @@
|
|||||||
"Remove_nutrition_recipe": "Ta bort näring från receptet",
|
"Remove_nutrition_recipe": "Ta bort näring från receptet",
|
||||||
"Reset": "Återställ",
|
"Reset": "Återställ",
|
||||||
"Reset_Search": "Rensa sök",
|
"Reset_Search": "Rensa sök",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Rot",
|
"Root": "Rot",
|
||||||
"Save": "Spara",
|
"Save": "Spara",
|
||||||
"Save_and_View": "Spara & visa",
|
"Save_and_View": "Spara & visa",
|
||||||
@@ -383,6 +379,7 @@
|
|||||||
"Welcome": "Välkommen",
|
"Welcome": "Välkommen",
|
||||||
"Year": "År",
|
"Year": "År",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Lägg till nyckelord",
|
"add_keyword": "Lägg till nyckelord",
|
||||||
"additional_options": "Ytterligare alternativ",
|
"additional_options": "Ytterligare alternativ",
|
||||||
"advanced": "Avancerat",
|
"advanced": "Avancerat",
|
||||||
@@ -407,7 +404,7 @@
|
|||||||
"create_rule": "och skapa automation",
|
"create_rule": "och skapa automation",
|
||||||
"create_shopping_new": "Lägg till i ny inköpslista",
|
"create_shopping_new": "Lägg till i ny inköpslista",
|
||||||
"create_title": "Ny {type}",
|
"create_title": "Ny {type}",
|
||||||
"created_by": "Skapad av",
|
"created_by": "",
|
||||||
"created_on": "Skapat den",
|
"created_on": "Skapat den",
|
||||||
"csv_delim_help": "Avgränsare att använda för CSV-export.",
|
"csv_delim_help": "Avgränsare att använda för CSV-export.",
|
||||||
"csv_delim_label": "CSV-avgränsare",
|
"csv_delim_label": "CSV-avgränsare",
|
||||||
|
|||||||
@@ -101,7 +101,6 @@
|
|||||||
"Edit_Keyword": "Anahtar Kelimeyi Düzenle",
|
"Edit_Keyword": "Anahtar Kelimeyi Düzenle",
|
||||||
"Edit_Meal_Plan_Entry": "Yemek planı girişini düzenle",
|
"Edit_Meal_Plan_Entry": "Yemek planı girişini düzenle",
|
||||||
"Edit_Recipe": "Tarifi Düzenle",
|
"Edit_Recipe": "Tarifi Düzenle",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Boş",
|
"Empty": "Boş",
|
||||||
"Enable": "Etkinleştir",
|
"Enable": "Etkinleştir",
|
||||||
"Enable_Amount": "Tutarı Etkinleştir",
|
"Enable_Amount": "Tutarı Etkinleştir",
|
||||||
@@ -131,7 +130,6 @@
|
|||||||
"Food_Replace": "Yiyecek Değiştir",
|
"Food_Replace": "Yiyecek Değiştir",
|
||||||
"Foods": "Yiyecekler",
|
"Foods": "Yiyecekler",
|
||||||
"GroupBy": "Gruplandırma Ölçütü",
|
"GroupBy": "Gruplandırma Ölçütü",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Yiyeceği Gizle",
|
"Hide_Food": "Yiyeceği Gizle",
|
||||||
"Hide_Keyword": "Anahtar kelimeleri gizle",
|
"Hide_Keyword": "Anahtar kelimeleri gizle",
|
||||||
"Hide_Keywords": "Anahtar Kelimeyi Gizle",
|
"Hide_Keywords": "Anahtar Kelimeyi Gizle",
|
||||||
@@ -283,8 +281,6 @@
|
|||||||
"Remove_nutrition_recipe": "Tariften besin değeri sil",
|
"Remove_nutrition_recipe": "Tariften besin değeri sil",
|
||||||
"Reset": "Sıfırla",
|
"Reset": "Sıfırla",
|
||||||
"Reset_Search": "Aramayı Sıfırla",
|
"Reset_Search": "Aramayı Sıfırla",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Kök",
|
"Root": "Kök",
|
||||||
"Save": "Kaydet",
|
"Save": "Kaydet",
|
||||||
"Save_and_View": "Kaydet & Görüntüle",
|
"Save_and_View": "Kaydet & Görüntüle",
|
||||||
@@ -382,6 +378,7 @@
|
|||||||
"Welcome": "Hoşgeldiniz",
|
"Welcome": "Hoşgeldiniz",
|
||||||
"Year": "Yıl",
|
"Year": "Yıl",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "Anahtar Kelime Ekle",
|
"add_keyword": "Anahtar Kelime Ekle",
|
||||||
"additional_options": "Ek Seçenekler",
|
"additional_options": "Ek Seçenekler",
|
||||||
"advanced": "Gelişmiş",
|
"advanced": "Gelişmiş",
|
||||||
@@ -405,7 +402,7 @@
|
|||||||
"create_food_desc": "Bir yiyecek oluşturun ve onu bu tarife bağlayın.",
|
"create_food_desc": "Bir yiyecek oluşturun ve onu bu tarife bağlayın.",
|
||||||
"create_rule": "ve otomasyon oluştur",
|
"create_rule": "ve otomasyon oluştur",
|
||||||
"create_title": "Yeni {type}",
|
"create_title": "Yeni {type}",
|
||||||
"created_by": "Oluşturan",
|
"created_by": "",
|
||||||
"created_on": "Oluşturma Zamanı",
|
"created_on": "Oluşturma Zamanı",
|
||||||
"csv_delim_help": "CSV dışa aktarmaları için kullanılacak ayırıcı.",
|
"csv_delim_help": "CSV dışa aktarmaları için kullanılacak ayırıcı.",
|
||||||
"csv_delim_label": "CSV Ayırıcı",
|
"csv_delim_label": "CSV Ayırıcı",
|
||||||
|
|||||||
@@ -74,7 +74,6 @@
|
|||||||
"Edit_Keyword": "Редагувати Ключове слово",
|
"Edit_Keyword": "Редагувати Ключове слово",
|
||||||
"Edit_Meal_Plan_Entry": "Редагувати запис в плані харчування",
|
"Edit_Meal_Plan_Entry": "Редагувати запис в плані харчування",
|
||||||
"Edit_Recipe": "Редагувати Рецепт",
|
"Edit_Recipe": "Редагувати Рецепт",
|
||||||
"Email": "",
|
|
||||||
"Empty": "Пусто",
|
"Empty": "Пусто",
|
||||||
"Enable_Amount": "Включити Кількість",
|
"Enable_Amount": "Включити Кількість",
|
||||||
"Energy": "Енергія",
|
"Energy": "Енергія",
|
||||||
@@ -96,7 +95,6 @@
|
|||||||
"Food_Alias": "",
|
"Food_Alias": "",
|
||||||
"Foods": "",
|
"Foods": "",
|
||||||
"GroupBy": "По Групі",
|
"GroupBy": "По Групі",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "Сховати Їжу",
|
"Hide_Food": "Сховати Їжу",
|
||||||
"Hide_Keyword": "",
|
"Hide_Keyword": "",
|
||||||
"Hide_Keywords": "Сховати Ключове слово",
|
"Hide_Keywords": "Сховати Ключове слово",
|
||||||
@@ -220,8 +218,6 @@
|
|||||||
"Remove_nutrition_recipe": "Видалити харчову цінність з рецепта",
|
"Remove_nutrition_recipe": "Видалити харчову цінність з рецепта",
|
||||||
"Reset": "",
|
"Reset": "",
|
||||||
"Reset_Search": "Скинути Пошук",
|
"Reset_Search": "Скинути Пошук",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "Корінь",
|
"Root": "Корінь",
|
||||||
"Save": "Зберегти",
|
"Save": "Зберегти",
|
||||||
"Save_and_View": "Зберегти і Подивитися",
|
"Save_and_View": "Зберегти і Подивитися",
|
||||||
@@ -292,6 +288,7 @@
|
|||||||
"Week_Numbers": "Номер тижня",
|
"Week_Numbers": "Номер тижня",
|
||||||
"Year": "Рік",
|
"Year": "Рік",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "",
|
"add_keyword": "",
|
||||||
"additional_options": "",
|
"additional_options": "",
|
||||||
"advanced": "",
|
"advanced": "",
|
||||||
@@ -311,6 +308,7 @@
|
|||||||
"create_food_desc": "",
|
"create_food_desc": "",
|
||||||
"create_rule": "і створити автоматизацію",
|
"create_rule": "і створити автоматизацію",
|
||||||
"create_title": "Новий {type}",
|
"create_title": "Новий {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "",
|
"created_on": "",
|
||||||
"csv_delim_help": "",
|
"csv_delim_help": "",
|
||||||
"csv_delim_label": "",
|
"csv_delim_label": "",
|
||||||
|
|||||||
@@ -98,7 +98,6 @@
|
|||||||
"Edit_Keyword": "编辑关键词",
|
"Edit_Keyword": "编辑关键词",
|
||||||
"Edit_Meal_Plan_Entry": "编辑用餐计划条目",
|
"Edit_Meal_Plan_Entry": "编辑用餐计划条目",
|
||||||
"Edit_Recipe": "编辑食谱",
|
"Edit_Recipe": "编辑食谱",
|
||||||
"Email": "",
|
|
||||||
"Empty": "空的",
|
"Empty": "空的",
|
||||||
"Enable": "启用",
|
"Enable": "启用",
|
||||||
"Enable_Amount": "启用金额",
|
"Enable_Amount": "启用金额",
|
||||||
@@ -127,7 +126,6 @@
|
|||||||
"Food_Replace": "食物替换",
|
"Food_Replace": "食物替换",
|
||||||
"Foods": "食物",
|
"Foods": "食物",
|
||||||
"GroupBy": "分组",
|
"GroupBy": "分组",
|
||||||
"Groups": "",
|
|
||||||
"Hide_Food": "隐藏食物",
|
"Hide_Food": "隐藏食物",
|
||||||
"Hide_Keyword": "隐藏关键词",
|
"Hide_Keyword": "隐藏关键词",
|
||||||
"Hide_Keywords": "隐藏关键词",
|
"Hide_Keywords": "隐藏关键词",
|
||||||
@@ -278,8 +276,6 @@
|
|||||||
"Remove_nutrition_recipe": "从食谱中删除营养信息",
|
"Remove_nutrition_recipe": "从食谱中删除营养信息",
|
||||||
"Reset": "重置",
|
"Reset": "重置",
|
||||||
"Reset_Search": "重置搜索",
|
"Reset_Search": "重置搜索",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Root": "根",
|
"Root": "根",
|
||||||
"Save": "保存",
|
"Save": "保存",
|
||||||
"Save_and_View": "保存并查看",
|
"Save_and_View": "保存并查看",
|
||||||
@@ -373,6 +369,7 @@
|
|||||||
"Welcome": "欢迎",
|
"Welcome": "欢迎",
|
||||||
"Year": "年",
|
"Year": "年",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"add_keyword": "添加关键字",
|
"add_keyword": "添加关键字",
|
||||||
"additional_options": "附加选项",
|
"additional_options": "附加选项",
|
||||||
"advanced": "高级",
|
"advanced": "高级",
|
||||||
@@ -397,6 +394,7 @@
|
|||||||
"create_rule": "并创建自动化",
|
"create_rule": "并创建自动化",
|
||||||
"create_shopping_new": "添加到新的购物清单",
|
"create_shopping_new": "添加到新的购物清单",
|
||||||
"create_title": "新建 {type}",
|
"create_title": "新建 {type}",
|
||||||
|
"created_by": "",
|
||||||
"created_on": "创建于",
|
"created_on": "创建于",
|
||||||
"csv_delim_help": "用于 CSV 导出的分隔符。",
|
"csv_delim_help": "用于 CSV 导出的分隔符。",
|
||||||
"csv_delim_label": "CSV 分隔符",
|
"csv_delim_label": "CSV 分隔符",
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
"Delete": "",
|
"Delete": "",
|
||||||
"Download": "",
|
"Download": "",
|
||||||
"Edit": "",
|
"Edit": "",
|
||||||
"Email": "",
|
|
||||||
"Energy": "",
|
"Energy": "",
|
||||||
"Export": "",
|
"Export": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
@@ -26,7 +25,6 @@
|
|||||||
"Fats": "",
|
"Fats": "",
|
||||||
"File": "",
|
"File": "",
|
||||||
"Files": "",
|
"Files": "",
|
||||||
"Groups": "",
|
|
||||||
"Hide_as_header": "隱藏為標題",
|
"Hide_as_header": "隱藏為標題",
|
||||||
"Import": "",
|
"Import": "",
|
||||||
"Import_finished": "匯入完成",
|
"Import_finished": "匯入完成",
|
||||||
@@ -56,8 +54,6 @@
|
|||||||
"Recipes_per_page": "每頁食譜",
|
"Recipes_per_page": "每頁食譜",
|
||||||
"Remove_nutrition_recipe": "從食譜中刪除營養資訊",
|
"Remove_nutrition_recipe": "從食譜中刪除營養資訊",
|
||||||
"Reset_Search": "",
|
"Reset_Search": "",
|
||||||
"Reusable": "",
|
|
||||||
"Role": "",
|
|
||||||
"Save": "",
|
"Save": "",
|
||||||
"Save_and_View": "儲存並查看",
|
"Save_and_View": "儲存並查看",
|
||||||
"Search": "",
|
"Search": "",
|
||||||
@@ -86,10 +82,12 @@
|
|||||||
"View_Recipes": "",
|
"View_Recipes": "",
|
||||||
"Waiting": "",
|
"Waiting": "",
|
||||||
"YourSpaces": "",
|
"YourSpaces": "",
|
||||||
|
"active": "",
|
||||||
"all_fields_optional": "所有欄位都是可選的,可以留空。",
|
"all_fields_optional": "所有欄位都是可選的,可以留空。",
|
||||||
"and": "",
|
"and": "",
|
||||||
"confirm_delete": "您確定要刪除這個{object}嗎?",
|
"confirm_delete": "您確定要刪除這個{object}嗎?",
|
||||||
"convert_internal": "轉換為內部食譜",
|
"convert_internal": "轉換為內部食譜",
|
||||||
|
"created_by": "",
|
||||||
"err_creating_resource": "創建資源時發生錯誤!",
|
"err_creating_resource": "創建資源時發生錯誤!",
|
||||||
"err_deleting_protected_resource": "您嘗試刪除的對象仍在使用中,無法刪除。",
|
"err_deleting_protected_resource": "您嘗試刪除的對象仍在使用中,無法刪除。",
|
||||||
"err_deleting_resource": "刪除資源時發生錯誤!",
|
"err_deleting_resource": "刪除資源時發生錯誤!",
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ export const useUserPreferenceStore = defineStore('user_preference_store', () =>
|
|||||||
* database user settings, cache in local storage in case application is started offline
|
* database user settings, cache in local storage in case application is started offline
|
||||||
*/
|
*/
|
||||||
let userSettings = useStorage(USER_PREFERENCE_KEY, {} as UserPreference)
|
let userSettings = useStorage(USER_PREFERENCE_KEY, {} as UserPreference)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* database user settings, cache in local storage in case application is started offline
|
* 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
|
// always load user settings on first initialization of store
|
||||||
loadUserSettings()
|
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
|
// enable hot reload for store
|
||||||
|
|||||||
Reference in New Issue
Block a user