changed model list navigation

This commit is contained in:
vabene1111
2025-06-03 18:04:46 +02:00
parent 5695cacc0e
commit c648ee954c
40 changed files with 1090 additions and 39 deletions

View File

@@ -126,7 +126,7 @@
<v-list-item prepend-icon="$shopping" :title="$t('Shopping_list')" :to="{ name: 'ShoppingListPage', params: {} }"></v-list-item>
<v-list-item prepend-icon="fas fa-globe" :title="$t('Import')" :to="{ name: 'RecipeImportPage', params: {} }"></v-list-item>
<v-list-item prepend-icon="$books" :title="$t('Books')" :to="{ name: 'BooksPage', params: {} }"></v-list-item>
<v-list-item prepend-icon="fa-solid fa-folder-tree" :title="$t('Database')" :to="{ name: 'ModelListPage', params: {model: 'food'} }"></v-list-item>
<v-list-item prepend-icon="fa-solid fa-folder-tree" :title="$t('Database')" :to="{ name: 'DatabasePage' }"></v-list-item>
<navigation-drawer-context-menu></navigation-drawer-context-menu>
</v-list>
@@ -162,7 +162,7 @@
<v-list nav>
<v-list-item prepend-icon="fa-solid fa-sliders" :to="{ name: 'SettingsPage', params: {} }" :title="$t('Settings')"></v-list-item>
<v-list-item prepend-icon="fas fa-globe" :title="$t('Import')" :to="{ name: 'RecipeImportPage', params: {} }"></v-list-item>
<v-list-item prepend-icon="fa-solid fa-folder-tree" :to="{ name: 'ModelListPage', params: {model: 'food'} }" :title="$t('Database')"></v-list-item>
<v-list-item prepend-icon="fa-solid fa-folder-tree" :to="{ name: 'DatabasePage' }" :title="$t('Database')"></v-list-item>
<v-list-item prepend-icon="$books" :title="$t('Books')" :to="{ name: 'BooksPage', params: {} }"></v-list-item>
</v-list>
</v-bottom-sheet>

View File

@@ -46,6 +46,7 @@ const routes = [
{path: '/list/:model?', component: () => import("@/pages/ModelListPage.vue"), props: true, name: 'ModelListPage'},
{path: '/edit/:model/:id?', component: () => import("@/pages/ModelEditPage.vue"), props: true, name: 'ModelEditPage'},
{path: '/database', component: () => import("@/pages/DatabasePage.vue"), props: true, name: 'DatabasePage'},
{path: '/ingredient-editor', component: () => import("@/pages/IngredientEditorPage.vue"), name: 'IngredientEditorPage'},
{path: '/property-editor', component: () => import("@/pages/PropertyEditorPage.vue"), name: 'PropertyEditorPage'},

View File

@@ -0,0 +1,32 @@
<template>
<v-col cols="12" md="6" lg="4">
<v-card :prepend-icon="props.prependIcon" :title="props.title" :subtitle="props.subtitle" variant="outlined" elevation="1"
:to="props.to"
append-icon="fa-solid fa-arrow-right">
</v-card>
</v-col>
</template>
<script setup lang="ts">
import {EditorSupportedModels, GenericModel, getGenericModelFromString} from "@/types/Models.ts";
import {onBeforeMount, PropType, ref, watch} from "vue";
import {useI18n} from "vue-i18n";
import type { RouteLocationRaw } from 'vue-router';
const {t} = useI18n()
const props = defineProps({
prependIcon: {type: String, default: ''},
title: {type: String, default: ''},
subtitle: {type: String, default: ''},
to: {type: {} as PropType<RouteLocationRaw> }
})
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,50 @@
<template>
<v-col cols="12" md="6" lg="4">
<v-card :prepend-icon="genericModel.model.icon" :title="$t(genericModel.model.localizationKey)" :subtitle="$t(genericModel.model.localizationKeyDescription)" variant="outlined" elevation="1"
:to="{name: 'ModelListPage', params: {model: genericModel.model.name}}"
append-icon="fa-solid fa-arrow-right">
</v-card>
</v-col>
</template>
<script setup lang="ts">
import {EditorSupportedModels, GenericModel, getGenericModelFromString} from "@/types/Models.ts";
import {onBeforeMount, PropType, ref, watch} from "vue";
import {useI18n} from "vue-i18n";
const {t} = useI18n()
const props = defineProps({
model: {
type: String as PropType<EditorSupportedModels>,
default: 'food'
},
})
const genericModel = ref({} as GenericModel)
watch(() => props.model, (newValue, oldValue) => {
if (newValue != oldValue) {
genericModel.value = getGenericModelFromString(props.model, t)
}
})
/**
* select model class before mount because template renders before onMounted is called
*/
onBeforeMount(() => {
try {
genericModel.value = getGenericModelFromString(props.model, t)
} catch (Error) {
console.error('Invalid model passed to ModelListPage, loading Food instead')
genericModel.value = getGenericModelFromString('Food', t)
}
})
</script>
<style scoped>
</style>

View File

@@ -1,15 +1,15 @@
<template>
<template v-if="route.name == 'ModelListPage'">
<v-divider></v-divider>
<v-list-item v-for="m in getListModels()"
:to="{ name: 'ModelListPage', params: {model: m.name.toLowerCase()} }">
<template #prepend>
<v-icon :icon="m.icon"></v-icon>
</template>
{{ $t(m.localizationKey) }}
</v-list-item>
</template>
<!-- <template v-if="route.name == 'ModelListPage'">-->
<!-- <v-divider></v-divider>-->
<!-- <v-list-item v-for="m in getListModels()"-->
<!-- :to="{ name: 'ModelListPage', params: {model: m.name.toLowerCase()} }">-->
<!-- <template #prepend>-->
<!-- <v-icon :icon="m.icon"></v-icon>-->
<!-- </template>-->
<!-- {{ $t(m.localizationKey) }}-->
<!-- </v-list-item>-->
<!-- </template>-->
<template v-if="route.name == 'MealPlanPage'">
<v-divider></v-divider>

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -27,10 +28,12 @@
"Auto_Planner": "",
"Automate": "",
"Automation": "",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -60,6 +63,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "",
@@ -81,6 +85,7 @@
"Current_Period": "",
"Custom Filter": "",
"Database": "",
"DatabaseHelp": "",
"Date": "",
"Default": "",
"DelayFor": "",
@@ -127,6 +132,7 @@
"FinishedAt": "",
"First": "",
"Food": "",
"FoodHelp": "",
"FoodInherit": "",
"FoodNotOnHand": "",
"FoodOnHand": "",
@@ -166,6 +172,7 @@
"Ingredient Editor": "",
"Ingredient Overview": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "",
"Ingredients": "",
"Inherit": "",
@@ -175,11 +182,13 @@
"Instructions": "",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "",
"Key_Ctrl": "",
"Key_Shift": "",
"Keyword": "",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "",
"Last": "",
@@ -193,7 +202,9 @@
"Make_Ingredient": "",
"ManageSubscription": "",
"Manage_Books": "",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "",
"Meal_Plan_Days": "",
"Meal_Type": "",
@@ -261,6 +272,7 @@
"Planned": "",
"Planner": "",
"Planner_Settings": "",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -272,7 +284,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "",
"Proteins": "",
@@ -286,6 +300,9 @@
"Ratings": "",
"Recently_Viewed": "",
"Recipe": "",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "",
"Recipe_Image": "",
@@ -306,6 +323,7 @@
"Save/Load": "",
"Save_and_View": "",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "",
"Search Settings": "",
@@ -325,6 +343,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "",
"Shopping_Category": "",
@@ -345,10 +364,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "",
"Step": "",
"StepHelp": "",
"Step_Name": "",
"Step_Type": "",
"Step_start_time": "",
@@ -361,6 +382,8 @@
"Sunday": "",
"Supermarket": "",
"SupermarketCategoriesOnly": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "",
"System": "",
@@ -381,6 +404,8 @@
"Undefined": "",
"Unit": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Units": "",
"Unrated": "",
@@ -396,9 +421,12 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "",
"UserFileHelp": "",
"UserHelp": "",
"Users": "",
"Valid Until": "",
"View": "",
"ViewLogHelp": "",
"View_Recipes": "",
"Viewed": "",
"Waiting": "",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -27,10 +28,12 @@
"Auto_Planner": "Автоматичен плановик",
"Automate": "Автоматизация",
"Automation": "Автоматизация",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Книжен пазар",
"BookmarkletHelp1": "",
@@ -60,6 +63,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Копиране",
@@ -78,6 +82,7 @@
"Current_Period": "Текущ период",
"Custom Filter": "Персонализиран филтър",
"Database": "",
"DatabaseHelp": "",
"Date": "Дата",
"Default": "",
"DelayFor": "Закъснение за {hours} часа",
@@ -124,6 +129,7 @@
"FinishedAt": "",
"First": "",
"Food": "Храна",
"FoodHelp": "",
"FoodInherit": "Хранителни наследствени полета",
"FoodNotOnHand": "Нямате {храна} под ръка.",
"FoodOnHand": "Имате {храна} под ръка.",
@@ -162,6 +168,7 @@
"Ingredient": "",
"Ingredient Editor": "Редактор на съставки",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Тази съставка е във вашия списък за пазаруване.",
"Ingredients": "Съставки",
"Inherit": "Наследете",
@@ -171,10 +178,12 @@
"Instructions": "Инструкции",
"InstructionsEditHelp": "",
"Internal": "Вътрешен",
"InviteLinkHelp": "",
"Invite_Link": "",
"Key_Ctrl": "Контрол",
"Key_Shift": "Превключване",
"Keyword": "Ключова дума",
"KeywordHelp": "",
"Keyword_Alias": "Псевдоним на ключова дума",
"Keywords": "Ключови думи",
"Last": "",
@@ -188,7 +197,9 @@
"Make_Ingredient": "Направете съставка",
"ManageSubscription": "",
"Manage_Books": "Управление на Книги",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "План на хранене",
"Meal_Plan_Days": "Бъдещи планове за хранене",
"Meal_Type": "Вид хранене",
@@ -254,6 +265,7 @@
"Planned": "Планирано",
"Planner": "Планировчик",
"Planner_Settings": "Настройки на планировчика",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -265,7 +277,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Защитен",
"Proteins": "Протеини (белтъчини)",
@@ -279,6 +293,9 @@
"Ratings": "Рейтинги",
"Recently_Viewed": "Наскоро разгледани",
"Recipe": "Рецепта",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Книга с рецепти",
"Recipe_Image": "Изображение на рецептата",
@@ -299,6 +316,7 @@
"Save/Load": "",
"Save_and_View": "Запазете и прегледайте",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Търсене",
"Search Settings": "Настройки търсене",
@@ -318,6 +336,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Категории за пазаруване",
"Shopping_Category": "Категория за пазаруване",
@@ -338,10 +357,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "Начален ден от седмицата",
"Step": "Стъпка",
"StepHelp": "",
"Step_Name": "Стъпка Име",
"Step_Type": "Стъпка Тип",
"Step_start_time": "Стъпка Начално време",
@@ -354,6 +375,8 @@
"Sunday": "",
"Supermarket": "Супермаркет",
"SupermarketCategoriesOnly": "Само категории супермаркети",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Име на супермаркет",
"Supermarkets": "Супермаркети",
"System": "",
@@ -374,6 +397,8 @@
"Undefined": "Недефиниран",
"Unit": "Единица",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Псевдоним на единица",
"Units": "Единици",
"Unrated": "Без оценка",
@@ -389,7 +414,10 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "потребител",
"UserFileHelp": "",
"UserHelp": "",
"View": "Изглед",
"ViewLogHelp": "",
"View_Recipes": "Вижте рецепти",
"Viewed": "",
"Waiting": "Очакване",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Moveu tots els ingredients al pas més adequat.",
"Automate": "",
"Automation": "",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "",
@@ -104,6 +108,7 @@
"CustomThemeHelp": "",
"Data_Import_Info": "",
"Database": "",
"DatabaseHelp": "",
"Datatype": "",
"Date": "",
"Day": "",
@@ -166,6 +171,7 @@
"First": "",
"First_name": "",
"Food": "",
"FoodHelp": "",
"FoodInherit": "",
"FoodNotOnHand": "",
"FoodOnHand": "",
@@ -209,6 +215,7 @@
"Ingredient Editor": "Editor d'ingredients",
"Ingredient Overview": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "",
"Ingredients": "",
"Inherit": "",
@@ -220,11 +227,13 @@
"Instructions": "",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "",
"Key_Ctrl": "",
"Key_Shift": "",
"Keyword": "",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "",
"Language": "",
@@ -243,7 +252,9 @@
"ManageSubscription": "",
"Manage_Books": "Gestioneu els llibres",
"Manage_Emails": "",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Pla d'àpats",
"Meal_Plan_Days": "",
"Meal_Type": "",
@@ -323,6 +334,7 @@
"Planned": "",
"Planner": "",
"Planner_Settings": "",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -339,7 +351,9 @@
"Properties_Food_Amount": "",
"Properties_Food_Unit": "",
"Property": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "",
"Proteins": "",
@@ -353,6 +367,9 @@
"Ratings": "",
"Recently_Viewed": "Vistos recentment",
"Recipe": "",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "",
"Recipe_Image": "Imatge de la recepta",
@@ -373,6 +390,7 @@
"Save/Load": "",
"Save_and_View": "Graveu-ho i mostreu-ho",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "",
"Search Settings": "",
@@ -395,6 +413,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "",
"Shopping_Category": "",
@@ -419,6 +438,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "",
"Split": "",
@@ -426,6 +446,7 @@
"StartDate": "",
"Starting_Day": "",
"Step": "",
"StepHelp": "",
"Step_Name": "Nom del pas",
"Step_Type": "Tipus de pas",
"Step_start_time": "Hora d'inici",
@@ -440,6 +461,8 @@
"Sunday": "",
"Supermarket": "",
"SupermarketCategoriesOnly": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "",
"System": "",
@@ -464,6 +487,8 @@
"Undo": "",
"Unit": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Unit_Replace": "",
"Units": "",
@@ -488,10 +513,13 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "",
"UserFileHelp": "",
"UserHelp": "",
"Username": "",
"Users": "",
"Valid Until": "",
"View": "",
"ViewLogHelp": "",
"View_Recipes": "Mostreu les receptes",
"Viewed": "",
"Waiting": "",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Účet",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Přiřadit všechny ingredience k nejlépe vyhovujícímu kroku.",
"Automate": "Automatizovat",
"Automation": "Automatizace",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Zpět",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Skript v záložce",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "Převod",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopírovat",
@@ -103,6 +107,7 @@
"CustomThemeHelp": "Přepsat styly vybraného motivu nahráním vlastního souboru CSS.",
"Data_Import_Info": "Rozšiřte svůj prostor o seznamy potravin, jednotek a dalších položek spravovaných komunitou, a vylepšete tak svoji sbírku receptů.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Datový typ",
"Date": "Datum",
"Day": "Den",
@@ -166,6 +171,7 @@
"First": "",
"First_name": "Jméno",
"Food": "Potravina",
"FoodHelp": "",
"FoodInherit": "Propisovatelná pole potraviny",
"FoodNotOnHand": "Nemáte {food} k dispozici.",
"FoodOnHand": "{food} máte k dispozici.",
@@ -209,6 +215,7 @@
"Ingredient Editor": "Editace ingrediencí",
"Ingredient Overview": "Přehled ingrediencí",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Tato ingredience je na vašem nákupním seznamu.",
"Ingredients": "Ingredience",
"Inherit": "Propsat",
@@ -219,11 +226,13 @@
"Instructions": "Instrukce",
"InstructionsEditHelp": "",
"Internal": "Interní",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Pozvánky",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Štítek",
"KeywordHelp": "",
"Keyword_Alias": "Přezdívka štítku",
"Keywords": "Štítky",
"Language": "Jazyk",
@@ -242,7 +251,9 @@
"ManageSubscription": "",
"Manage_Books": "Spravovat kuchařky",
"Manage_Emails": "Spravovat emaily",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Jídelníček",
"Meal_Plan_Days": "Budoucí jídelníčky",
"Meal_Type": "Druh jídla",
@@ -321,6 +332,7 @@
"Planned": "Naplánované",
"Planner": "Plánovač",
"Planner_Settings": "Nastavení plánovače",
"Planning&Shopping": "",
"Plural": "Množné číslo",
"Postpone": "",
"PostponedUntil": "",
@@ -337,7 +349,9 @@
"Properties_Food_Amount": "Množství nutriční vlastnosti",
"Properties_Food_Unit": "Jednotka nutriční vlastnosti",
"Property": "Nutriční vlastnost",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Editovat nutriční vlastnosti",
"Protected": "Chráněný",
"Proteins": "Proteiny",
@@ -351,6 +365,9 @@
"Ratings": "Hodnocení",
"Recently_Viewed": "Naposledy prohlížené",
"Recipe": "Recept",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Kuchařka",
"Recipe_Image": "Obrázek k receptu",
@@ -371,6 +388,7 @@
"Save/Load": "",
"Save_and_View": "Uložit a zobrazit",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Hledat",
"Search Settings": "Nastavení vyhledávání",
@@ -392,6 +410,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Kategorie nákupního seznamu",
"Shopping_Category": "Kategorie nákupního seznamu",
@@ -415,6 +434,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "Některá kosmetická nastavení mohou měnit správci prostoru a budou mít přednost před nastavením klienta pro daný prostor.",
"Split": "",
@@ -422,6 +442,7 @@
"StartDate": "Počáteční datum",
"Starting_Day": "První den v týdnu",
"Step": "Krok",
"StepHelp": "",
"Step_Name": "Název kroku",
"Step_Type": "Druh kroku",
"Step_start_time": "Nastav počáteční čas",
@@ -436,6 +457,8 @@
"Sunday": "",
"Supermarket": "Obchod",
"SupermarketCategoriesOnly": "Pouze kategorie obchodu",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Název obchodu",
"Supermarkets": "Obchody",
"System": "",
@@ -458,6 +481,8 @@
"Undefined": "Neurčeno",
"Unit": "Jednotka",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Přezdívka jednotky",
"Unit_Replace": "Nahrazení v jednotce",
"Units": "Jednotky",
@@ -481,10 +506,13 @@
"Use_Plural_Unit_Always": "Vždy použít množné číslo pro jednotku",
"Use_Plural_Unit_Simple": "Dynamicky použít množné číslo pro jednotku",
"User": "Uživatel",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Uživatelské jméno",
"Users": "Uživatelé",
"Valid Until": "Platné do",
"View": "Zobrazit",
"ViewLogHelp": "",
"View_Recipes": "Zobrazit recepty",
"Viewed": "",
"Waiting": "Čekající",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Bruger",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Flyt alle ingredienser til mest egnede trin.",
"Automate": "Automatiser",
"Automation": "Automatisering",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Tilbage",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Bogmærke",
"BookmarkletHelp1": "",
@@ -72,6 +75,7 @@
"Conversion": "Konversion",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopier",
@@ -96,6 +100,7 @@
"Custom Filter": "Tilpasset filter",
"Data_Import_Info": "Udbyg dit Space og gør din opskriftsamling bedre ved at importere en netværkskurateret liste af ingredienser, enheder og mere.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Datatype",
"Date": "Dato",
"Day": "Dag",
@@ -154,6 +159,7 @@
"First": "",
"First_name": "Fornavn",
"Food": "Mad",
"FoodHelp": "",
"FoodInherit": "Nedarvelige mad felter",
"FoodNotOnHand": "Du har ikke {food} til rådighed.",
"FoodOnHand": "Du har {food} til rådighed.",
@@ -197,6 +203,7 @@
"Ingredient Editor": "Ingrediens redigeringsværktøj",
"Ingredient Overview": "Ingrediensoversigt",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Denne ingrediens er i din indkøbsliste.",
"Ingredients": "Ingredienser",
"Inherit": "Nedarve",
@@ -207,11 +214,13 @@
"Instructions": "Instruktioner",
"InstructionsEditHelp": "",
"Internal": "Interne",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Invitationer",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Nøgleord",
"KeywordHelp": "",
"Keyword_Alias": "Alternativt navn til nøgleord",
"Keywords": "Nøgleord",
"Language": "Sprog",
@@ -229,7 +238,9 @@
"ManageSubscription": "",
"Manage_Books": "Administrer bøger",
"Manage_Emails": "Håndter Emails",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Madplan",
"Meal_Plan_Days": "Fremtidige madplaner",
"Meal_Type": "Måltidstype",
@@ -306,6 +317,7 @@
"Planned": "Planlagt",
"Planner": "Planlægger",
"Planner_Settings": "Planlægger indstillinger",
"Planning&Shopping": "",
"Plural": "Flertal",
"Postpone": "",
"PostponedUntil": "",
@@ -321,7 +333,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "Egenskab",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Beskyttet",
"Proteins": "Proteiner",
@@ -335,6 +349,9 @@
"Ratings": "Bedømmelser",
"Recently_Viewed": "Vist for nylig",
"Recipe": "Opskrift",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Opskriftsbog",
"Recipe_Image": "Opskriftsbillede",
@@ -355,6 +372,7 @@
"Save/Load": "",
"Save_and_View": "Gem & Vis",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Søg",
"Search Settings": "Søgningsindstillinger",
@@ -376,6 +394,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Indkøbskategorier",
"Shopping_Category": "Indkøbskategori",
@@ -396,12 +415,14 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "Opdel rækker i separate trin.",
"StartDate": "Startdato",
"Starting_Day": "Første dag på ugen",
"Step": "Trin",
"StepHelp": "",
"Step_Name": "Trin navn",
"Step_Type": "Trin type",
"Step_start_time": "Trin starttid",
@@ -416,6 +437,8 @@
"Sunday": "",
"Supermarket": "Supermarked",
"SupermarketCategoriesOnly": "Kun Supermarked kategorier",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Navn på supermarked",
"Supermarkets": "Supermarkeder",
"System": "",
@@ -438,6 +461,8 @@
"Undefined": "Ikke defineret",
"Unit": "Enhed",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Alternativt navn til enhed",
"Unit_Replace": "Erstat enhed",
"Units": "Enheder",
@@ -461,10 +486,13 @@
"Use_Plural_Unit_Always": "Benyt altid flertalsform for enheder",
"Use_Plural_Unit_Simple": "Brug flertalsform dynamisk for enheder",
"User": "Bruger",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Brugernavn",
"Users": "Brugere",
"Valid Until": "Gyldig indtil",
"View": "Vis",
"ViewLogHelp": "",
"View_Recipes": "Vis opskrifter",
"Viewed": "",
"Waiting": "Vente",

View File

@@ -2,6 +2,7 @@
"AI": "AI",
"AIImportSubtitle": "Verwende AI um Fotos von Rezepten zu importieren.",
"API": "API",
"AccessTokenHelp": "Zugriffsschlüssel für die REST Schnittstelle. ",
"Access_Token": "Zugriffstoken",
"Account": "Konto",
"Actions": "Aktionen",
@@ -35,11 +36,13 @@
"Auto_Sort_Help": "Verschiebe alle Zutaten zu dem Schritt, der am Besten passt.",
"Automate": "Automatisieren",
"Automation": "Automatisierung",
"AutomationHelp": "Mit Automatisierungen können Änderungen an z.B. Rezepten oder Zutaten vorgenommen werden wenn diese Importiert werden.",
"Available": "Verfügbar",
"AvailableCategories": "Verfügbare Kategorien",
"Back": "Zurück",
"BaseUnit": "Basiseinheit",
"BaseUnitHelp": "Optionale Standardeinheit zur automatischen Umrechnung",
"Basics": "Grundlagen",
"Book": "Buch",
"Bookmarklet": "Lesezeichen",
"BookmarkletHelp1": "Schiebe den Knopf in deine Lesezeichenleiste",
@@ -75,6 +78,7 @@
"Conversion": "Umrechnung",
"ConversionsHelp": "Mit Umrechnungen kann die Menge einens Lebensmittels in verschiedenen Einheiten ausgerechnet werden. Aktuell wird dies nur zur berechnung von Eigenschaften verwendet, später jedoch sollen auch andere Funktionen von Tandoor davon profitieren.",
"CookLog": "Kochprotokoll",
"CookLogHelp": "Einträge im Kochprotokoll für Rezepte.",
"Cooked": "Gekocht",
"Copied": "Kopiert",
"Copy": "Kopieren",
@@ -106,6 +110,7 @@
"CustomThemeHelp": "Überschreiben Sie die Stile des ausgewählten Themes, indem Sie eine eigene CSS-Datei hochladen.",
"Data_Import_Info": "Verbessern Sie Ihren Space, indem Sie eine von der Community kuratierte Liste von Lebensmitteln, Einheiten und mehr importieren, um Ihre Rezeptsammlung zu verbessern.",
"Database": "Datenbank",
"DatabaseHelp": "Tandoor verwendet verschiedene Objekte um Rezepte, Einkaufslisten, Essenspläne und mehr zu erstellen. Hier können alle diese Objekte verwaltet werden. ",
"Datatype": "Datentyp",
"Date": "Datum",
"Day": "Tag",
@@ -169,6 +174,7 @@
"First": "Erstes",
"First_name": "Vorname",
"Food": "Lebensmittel",
"FoodHelp": "Lebensmittel sind die wichtigste Grundlage für Rezepte in Tandoor. Sie werden mit Einheiten und Mengen zu Zutaten in Rezepten zusammengesetzt. Außerdem können Sie für Einkaufslisten, Eigenschaften und vieles mehr genutzt werden. ",
"FoodInherit": "Lebensmittel vererbbare Felder",
"FoodNotOnHand": "Sie haben {food} nicht vorrätig.",
"FoodOnHand": "Sie haben {food} vorrätig.",
@@ -212,6 +218,7 @@
"Ingredient Editor": "Zutateneditor",
"Ingredient Overview": "Zutatenübersicht",
"IngredientEditorHelp": "Mit dem Zutateneditor können alle Zutaten die ein bestimmtes Lebensmittel und/oder eine bestimmte Einheit benutzen auf einmal editiert werden. Dies ist praktisch um Fehler zu korrigieren oder mehrere Rezepte auf einmal zu bearbeiten.",
"IngredientHelp": "Eine Zutat besteht in der Regel aus Menge, Einheit und Lebensmittel, wobei Menge und Einheit optional sind. Außerdem kann Sie eine Notiz enthalten oder als Überschrift dargestellt werden.",
"IngredientInShopping": "Diese Zutat befindet sich auf Ihrer Einkaufsliste.",
"Ingredients": "Zutaten",
"Inherit": "Vererben",
@@ -223,11 +230,13 @@
"Instructions": "Anleitung",
"InstructionsEditHelp": "Hier klicken um eine Anleitung hinzuzufügen.",
"Internal": "Intern",
"InviteLinkHelp": "Links zum einladen neuer Nutzer in einen Space.",
"Invite_Link": "Einladungs Link",
"Invites": "Einladungen",
"Key_Ctrl": "Strg",
"Key_Shift": "Umschalttaste",
"Keyword": "Schlüsselwort",
"KeywordHelp": "Schlagworte können verwendet werden um deine Rezeptsammlung zu strukturieren. ",
"Keyword_Alias": "Schlagwort Alias",
"Keywords": "Schlagwörter",
"Language": "Sprache",
@@ -246,7 +255,9 @@
"ManageSubscription": "Tarfi verwalten",
"Manage_Books": "Bücher verwalten",
"Manage_Emails": "E-Mails verwalten",
"MealPlanHelp": "Ein Speiseplan ist ein Eintrag im Kalender zur Planung von Mahlzeiten. Er muss entweder ein Rezept oder einen Titel erhalten und kann mit der Einkaufsliste verknüpft werden. ",
"MealPlanShoppingHelp": "Einträge auf der Einkaufsliste können zur besseren Sortierung zu einem Plan gehören. Wird ein Plan mit einem Rezept erstellt, können die Zutaten automatisch auf die Einkaufsliste gesetzt werden (Einstellung).",
"MealTypeHelp": "Mahlzeiten dienen der sortierung/kategorisierung von Speiseplänen. ",
"Meal_Plan": "Speiseplan",
"Meal_Plan_Days": "Zukünftige Essenspläne",
"Meal_Type": "Mahlzeit",
@@ -326,6 +337,7 @@
"Planned": "Geplant",
"Planner": "Planer",
"Planner_Settings": "Einstellungen Essensplan",
"Planning&Shopping": "Planen & Einkaufen",
"Plural": "Plural",
"Postpone": "Verschieben",
"PostponedUntil": "Verschoben bis",
@@ -343,7 +355,9 @@
"Properties_Food_Amount": "Eigenschaften: Lebensmittelmenge",
"Properties_Food_Unit": "Eigenschaft Einheit",
"Property": "Eigenschaft",
"PropertyHelp": "Kombination aus Eigenschaft und Lebensmittel/Rezept und Menge. ",
"PropertyType": "Eigenschafts Typ",
"PropertyTypeHelp": "Eigenschaften erlauben es verschiedene Werte (Nährwerte, Preise, ...) für einzelne Lebensmittel oder ganze Rezepte zu erfassen. ",
"Property_Editor": "Eigenschaften bearbeiten",
"Protected": "Geschützt",
"Proteins": "Proteine",
@@ -357,6 +371,9 @@
"Ratings": "Bewertungen",
"Recently_Viewed": "Kürzlich angesehen",
"Recipe": "Rezept",
"RecipeBookEntryHelp": "Rezeptbucheinträge verknpüfen Rezepte mit bestimmten Positionen in Büchern. ",
"RecipeBookHelp": "Rezeptbücher enthalten Rezeptbucheinträge oder können über hinterlegte gespeicherte Suchen automatisch gefüllt werden. ",
"RecipeHelp": "Rezepte sind die Grundlage von Tandoor und bestehen aus allgemeinen Informationen und Schritten, die wiederrum aus Zutaten, Texten und mehr bestehen. ",
"RecipeStepsHelp": "Zutaten, Anleitungen und mehr können unter dem Tab Schritte hinzugefügt werden.",
"Recipe_Book": "Kochbuch",
"Recipe_Image": "Rezeptbild",
@@ -377,6 +394,7 @@
"Save/Load": "Speichern/Laden",
"Save_and_View": "Speichern & Ansehen",
"SavedSearch": "Gespeicherte Suche",
"SavedSearchHelp": "Gespeicherte Suchen können genutzt werden um bestimmte Suchkriterien zu speichern und später schnell wieder aufzurufen oder um Rezeptbücher automatisch zu befüllen. ",
"ScalableNumber": "Skalierbare Zahl",
"Search": "Suchen",
"Search Settings": "Sucheinstellungen",
@@ -399,6 +417,7 @@
"ShopNow": "Jetzt kaufen",
"ShoppingBackgroundSyncWarning": "Schlechte Netzwerkverbindung, Warten auf Synchronisation ...",
"ShoppingListEntry": "Einkaufslisten Eintrag",
"ShoppingListEntryHelp": "Einträge auf der Einkaufsliste können manuell oder automatisch durch Rezepte und Essenspläne erstellt werden.",
"ShoppingListRecipe": "Einkaufslisten Rezepte",
"Shopping_Categories": "Einkaufskategorien",
"Shopping_Category": "Einkaufskategorie",
@@ -423,6 +442,7 @@
"SpaceLimitReached": "Dieser Space hat ein Limit erreicht. Es können keine neuen Objekte von diesem Typ angelegt werden.",
"SpaceMemberHelp": "Füge Benutzer hinzu indem du Einladungen erstellst und Sie an die gewünschte Person sendest.",
"SpaceMembers": "Space Mitglieder",
"SpaceMembersHelp": "Benutzer und Ihre Rechte in einem Space.",
"SpaceSettings": "Space Einstellungen",
"Space_Cosmetic_Settings": "Einige optische Einstellungen können von Administratoren des Bereichs geändert werden und setzen die Client-Einstellungen für diesen Bereich außer Kraft.",
"Split": "Aufteilen",
@@ -430,6 +450,7 @@
"StartDate": "Startdatum",
"Starting_Day": "Wochenbeginn am",
"Step": "Schritt",
"StepHelp": "Schritte enthalten Zutaten (bestehend aus Meng/Einheit/Lebensmittel) sowie Anweisungen, Fotos und weitere Informationen für den jeweiligen Rezeptschritt.",
"Step_Name": "Schritt Name",
"Step_Type": "Schritt Typ",
"Step_start_time": "Schritt Startzeit",
@@ -444,6 +465,8 @@
"Sunday": "Sonntag",
"Supermarket": "Supermarkt",
"SupermarketCategoriesOnly": "Nur Supermarktkategorien",
"SupermarketCategoryHelp": "Kategorien beschreiben Bereiche in Supermärkten (z.B. Backen, Fleisch, ...). Sie werden mit Lebensmitteln und Supermärkten verküpft um automatisch zu sortieren/filtern.",
"SupermarketHelp": "In Supermärkten können Kategorien zugeordnet werden um die Einkaufsliste automatisch zu sortieren oder zu filtern. ",
"SupermarketName": "Name Supermarkt",
"Supermarkets": "Supermärkte",
"System": "System",
@@ -468,6 +491,8 @@
"Undo": "Rückgängig",
"Unit": "Einheit",
"UnitConversion": "Umrechnung",
"UnitConversionHelp": "Individuelle Umwandlungen erlauben es individuelle Einheiten allgemein oder eines bestimmten Lebensmittels umzurechnen. Beispielsweise kann man so 1 Tasse Mehl in 125g umrechnen. Tandoor kann automatisch innerhalb der Gewichts und innerhalb der Volumen Einheiten umrechenn, wenn die Einheiten die richtigen Basiseinheiten hinterlegt haben. Umwandlungen werden für die Berechnung von Eigenschaften benötigt.",
"UnitHelp": "Einheiten bilden mit Lebensmitteln und Mengen Zutaten. Sie können nach den eigenen Vorlieben benannt und standardisierten Einheiten zur automatischen umrechnung zugeordnet werden. Auch an anderen Stellen dienen Sie zur Beschreibung von Mengen (z.B. Einkaufslisten, Umrechnungen, Eigenschaften). ",
"Unit_Alias": "Einheit Alias",
"Unit_Replace": "Einheit Ersetzen",
"Units": "Einheiten",
@@ -492,10 +517,13 @@
"Use_Plural_Unit_Always": "Pluralform der Maßeinheit immer verwenden",
"Use_Plural_Unit_Simple": "Pluralform der Maßeinheit dynamisch anpassen",
"User": "Benutzer",
"UserFileHelp": "Dateien die in den Space hochgeladen wurden. ",
"UserHelp": "Benutzer sind die Mitglieder deines Spaces.",
"Username": "Benutzerkennung",
"Users": "Benutzer",
"Valid Until": "Gültig bis",
"View": "Ansicht",
"ViewLogHelp": "Verlauf angesehener Rezepte. ",
"View_Recipes": "Rezepte Ansehen",
"Viewed": "Angesehen",
"Waiting": "Wartezeit",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Λογαριασμός",
"Actions": "",
@@ -32,11 +33,13 @@
"Auto_Sort_Help": "Μετακίνηση όλων των υλικών στο καταλληλότερο βήμα.",
"Automate": "Αυτοματοποίηση",
"Automation": "Αυτοματισμός",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Πίσω",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Bookmarklet",
"BookmarkletHelp1": "",
@@ -71,6 +74,7 @@
"Conversion": "Μετατροπή",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Αντιγραφή",
@@ -95,6 +99,7 @@
"Custom Filter": "Προσαρμοσμένο φίλτρο",
"Data_Import_Info": "Βελτιώστε τον χώρο και τη συλλογή συνταγών σας κάνοντας εισαγωγή μιας λίστας από φαγητά, μονάδες μέτρησης κ.α., επιμελημένη από την κοινότητα.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Τύπος δεδομένων",
"Date": "Ημερομηνία",
"Day": "Ημέρα",
@@ -150,6 +155,7 @@
"First": "",
"First_name": "Όνομα",
"Food": "Φαγητό",
"FoodHelp": "",
"FoodInherit": "Πεδία φαγητών που κληρονομούνται",
"FoodNotOnHand": "Δεν έχετε το φαγητό {food} διαθέσιμο.",
"FoodOnHand": "Έχετε το φαγητό {food} διαθέσιμο.",
@@ -192,6 +198,7 @@
"Ingredient Editor": "Επεξεργαστής συστατικών",
"Ingredient Overview": "Σύνοψη υλικών",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Αυτό το υλικό είναι στη λίστα αγορών.",
"Ingredients": "Υλικά",
"Inherit": "Κληρονόμηση",
@@ -202,11 +209,13 @@
"Instructions": "Οδηγίες",
"InstructionsEditHelp": "",
"Internal": "Εσωτερική",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Προσκλήσεις",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Λέξη κλειδί",
"KeywordHelp": "",
"Keyword_Alias": "Ψευδώνυμο λέξης-κλειδί",
"Keywords": "Λέξεις κλειδιά",
"Language": "Γλώσσα",
@@ -224,7 +233,9 @@
"ManageSubscription": "",
"Manage_Books": "Διαχείριση βιβλίων",
"Manage_Emails": "Διαχείριση email",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Πρόγραμμα γευμάτων",
"Meal_Plan_Days": "Μελλοντικά προγράμματα γευμάτων",
"Meal_Type": "Είδος γεύματος",
@@ -298,6 +309,7 @@
"Planned": "Προγραμματισμένα",
"Planner": "Σχεδιαστής",
"Planner_Settings": "Επιλογές σχεδιαστή",
"Planning&Shopping": "",
"Plural": "Πληθυντικός",
"Postpone": "",
"PostponedUntil": "",
@@ -313,7 +325,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "Ιδιότητα",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Προστατευμένο",
"Proteins": "Πρωτεΐνες",
@@ -327,6 +341,9 @@
"Ratings": "Βαθμολογίες",
"Recently_Viewed": "Προβλήθηκαν πρόσφατα",
"Recipe": "Συνταγή",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Βιβλίο συνταγών",
"Recipe_Image": "Εικόνα συνταγής",
@@ -347,6 +364,7 @@
"Save/Load": "",
"Save_and_View": "Αποθήκευση και προβολή",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Αναζήτηση",
"Search Settings": "Επιλογές αναζήτησης",
@@ -368,6 +386,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Κατηγορίες αγορών",
"Shopping_Category": "Κατηγορία αγορών",
@@ -388,11 +407,13 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "Διαχωρισμός όλων των γραμμών σε χωριστά βήματα.",
"Starting_Day": "Πρώτη μέρα της εβδομάδας",
"Step": "Βήμα",
"StepHelp": "",
"Step_Name": "Όνομα βήματος",
"Step_Type": "Είδος βήματος",
"Step_start_time": "Χρόνος αρχής βήματος",
@@ -407,6 +428,8 @@
"Sunday": "",
"Supermarket": "Supermarket",
"SupermarketCategoriesOnly": "Μόνο κατηγορίες supermarket",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Όνομα supermarket",
"Supermarkets": "Supermarket",
"System": "",
@@ -428,6 +451,8 @@
"Undefined": "Απροσδιόριστο",
"Unit": "Μονάδα μέτρησης",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Ψευδώνυμο μονάδας μέτρησης",
"Units": "Μονάδες μέτρησης",
"Unpin": "Αφαίρεση καρφιτσώματος",
@@ -450,10 +475,13 @@
"Use_Plural_Unit_Always": "Να χρησιμοποιείται πάντα ο πληθυντικός για τη μονάδα μέτρησης",
"Use_Plural_Unit_Simple": "Να επιλέγεται δυναμικά ο πληθυντικός για τη μονάδα μέτρησης",
"User": "Χρήστης",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Όνομα χρήστη",
"Users": "Χρήστες",
"Valid Until": "Ισχύει έως",
"View": "Προβολή",
"ViewLogHelp": "",
"View_Recipes": "Προβολή συνταγών",
"Viewed": "",
"Waiting": "Αναμονή",

View File

@@ -2,6 +2,7 @@
"AI": "AI",
"AIImportSubtitle": "Use AI to import images of recipes.",
"API": "API",
"AccessTokenHelp": "Access keys for the REST API.",
"Access_Token": "Access Token",
"Account": "Account",
"Actions": "Actions",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Move all ingredients to the best fitting step.",
"Automate": "Automate",
"Automation": "Automation",
"AutomationHelp": "Automations allow you to, depending on the type, apply some automatic changes to recipes, ingredients, ... for example during recipe imports. ",
"Available": "Available",
"AvailableCategories": "Available Categories",
"Back": "Back",
"BaseUnit": "Base Unit",
"BaseUnitHelp": "Standard unit for automatic unit conversion",
"Basics": "Basics",
"Book": "Book",
"Bookmarklet": "Bookmarklet",
"BookmarkletHelp1": "Drag the following button to your bookmarks bar",
@@ -73,6 +76,7 @@
"Conversion": "Conversion",
"ConversionsHelp": "With conversions you can calculate the amount of a food in different units. Currently this is only used for property calculation, later it might also be used in other parts of tandoor. ",
"CookLog": "Cook Log",
"CookLogHelp": "Entries in the cook log for recipes. ",
"Cooked": "Cooked",
"Copied": "Copied",
"Copy": "Copy",
@@ -104,6 +108,7 @@
"CustomThemeHelp": "Override styles of the selected theme by uploading a custom CSS file.",
"Data_Import_Info": "Enhance your Space by importing a community curated list of foods, units and more to improve your recipe collection.",
"Database": "Database",
"DatabaseHelp": "Tandoor uses many different things in order for you to create recipes, shopping list, meal plans and more. Here you can manage all of these models.",
"Datatype": "Datatype",
"Date": "Date",
"Day": "Day",
@@ -167,6 +172,7 @@
"First": "First",
"First_name": "First Name",
"Food": "Food",
"FoodHelp": "Foods are the most important foundation of Tandoor. Together with units and their repective amounts they make about recipe ingredients. They can also be used for shopping, properties and much more. ",
"FoodInherit": "Food Inheritable Fields",
"FoodNotOnHand": "You do not have {food} on hand.",
"FoodOnHand": "You have {food} on hand.",
@@ -210,6 +216,7 @@
"Ingredient Editor": "Ingredient Editor",
"Ingredient Overview": "Ingredient Overview",
"IngredientEditorHelp": "With the ingredient editor you can edit all Ingredients that use a certain Food and/or Unit at once. This can be used to easily correct errors or change multiple recipes at once.",
"IngredientHelp": "Ingredients usually consist of a quantity, unit and food, with quantity and unit being optional. It can also contain a note or be used as a header. ",
"IngredientInShopping": "This ingredient is in your shopping list.",
"Ingredients": "Ingredients",
"Inherit": "Inherit",
@@ -221,11 +228,13 @@
"Instructions": "Instructions",
"InstructionsEditHelp": "Click here to add instructions. ",
"Internal": "Internal",
"InviteLinkHelp": "Links to invite new people to your space. ",
"Invite_Link": "Invite Link",
"Invites": "Invites",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Keyword",
"KeywordHelp": "Keywords can be used to organize you recipe collection.",
"Keyword_Alias": "Keyword Alias",
"Keywords": "Keywords",
"Language": "Language",
@@ -244,7 +253,9 @@
"ManageSubscription": "Manage subscription",
"Manage_Books": "Manage Books",
"Manage_Emails": "Manage Emails",
"MealPlanHelp": "A Mealplan is a calendar entry used to plan meals. It must contain a recipe or title and can be linked to shopping lists. ",
"MealPlanShoppingHelp": "Entries on you Shopping List can be related to a Mealplan to sort your list or update/delete them all at once. When creating a Mealplan with a Recipe Shopping List entries for that recipe can be created automatically (setting). ",
"MealTypeHelp": "Mealtypes allow you to sort your meal plans. ",
"Meal_Plan": "Meal Plan",
"Meal_Plan_Days": "Future meal plans",
"Meal_Type": "Meal type",
@@ -324,6 +335,7 @@
"Planned": "Planned",
"Planner": "Planner",
"Planner_Settings": "Planner settings",
"Planning&Shopping": "Planning & Shopping",
"Plural": "Plural",
"Postpone": "Postpone",
"PostponedUntil": "Postponoed until",
@@ -341,7 +353,9 @@
"Properties_Food_Amount": "Properties Food Amount",
"Properties_Food_Unit": "Properties Food Unit",
"Property": "Property",
"PropertyHelp": "Combination of property type, food/recipe and amount",
"PropertyType": "Property Type",
"PropertyTypeHelp": "Properties allow you to track different values (nutrition, prices, ...) for individual foods or complete recipes. ",
"Property_Editor": "Property Editor",
"Protected": "Protected",
"Proteins": "Proteins",
@@ -355,6 +369,9 @@
"Ratings": "Ratings",
"Recently_Viewed": "Recently Viewed",
"Recipe": "Recipe",
"RecipeBookEntryHelp": "Recipe book entries link recipes to specific locations in books. ",
"RecipeBookHelp": "Recipebooks contain recipe book entries or can be automatically populated by using saved search filters. ",
"RecipeHelp": "Recipes are the foundation of Tandoor and consist of general information and steps, made up of ingredients, instructions and more. ",
"RecipeStepsHelp": "Ingredients, Instructions and more can be edited in the tab Steps.",
"Recipe_Book": "Recipe Book",
"Recipe_Image": "Recipe Image",
@@ -375,6 +392,7 @@
"Save/Load": "Save/Load",
"Save_and_View": "Save & View",
"SavedSearch": "Saved Search",
"SavedSearchHelp": "Saved searches can be used to save search filters to easily retrieve them later or automatically populate recipe books. ",
"ScalableNumber": "Scalable Number",
"Search": "Search",
"Search Settings": "Search Settings",
@@ -397,6 +415,7 @@
"ShopNow": "Shop now",
"ShoppingBackgroundSyncWarning": "Bad network, waiting to sync ...",
"ShoppingListEntry": "Shoppinglist Entry",
"ShoppingListEntryHelp": "Shopping list entries can be created manually or trough recipes and meal plans.",
"ShoppingListRecipe": "Shoppinglist Recipe",
"Shopping_Categories": "Shopping Categories",
"Shopping_Category": "Shopping Category",
@@ -421,6 +440,7 @@
"SpaceLimitReached": "This Space has reached a limit. No more objects of this type can be created.",
"SpaceMemberHelp": "Add users to your space by creating an Invite Link and sending it to the person you want to add.",
"SpaceMembers": "Space Members",
"SpaceMembersHelp": "Users and theire permissions in a space. ",
"SpaceSettings": "Space Settings",
"Space_Cosmetic_Settings": "Some cosmetic settings can be changed by space administrators and will override client settings for that space.",
"Split": "Split",
@@ -428,6 +448,7 @@
"StartDate": "Start Date",
"Starting_Day": "Starting day of the week",
"Step": "Step",
"StepHelp": "Steps contain ingredients (made up of quantity/unit/food), instructions, images and more information about that step in a recipe. ",
"Step_Name": "Step Name",
"Step_Type": "Step Type",
"Step_start_time": "Step start time",
@@ -442,6 +463,8 @@
"Sunday": "Sunday",
"Supermarket": "Supermarket",
"SupermarketCategoriesOnly": "Supermarket Categories Only",
"SupermarketCategoryHelp": "Kategories describe areas in supermarkets (e.g. Fruits, Deli, ...). They can be linked to foods and supermarkets for automatic sorting/filtering.",
"SupermarketHelp": "With supermarkets you can link categories to automatically sort and filter shopping lists. ",
"SupermarketName": "Supermarket Name",
"Supermarkets": "Supermarkets",
"System": "System",
@@ -466,6 +489,8 @@
"Undo": "Undo",
"Unit": "Unit",
"UnitConversion": "Unit Conversion",
"UnitConversionHelp": "Unit conversion allow you to convert individual units in general or only for a certain food. You can for example convert 1 cup of flour into 125 grams. Tandoor can then automatically convert within the different weight or volume units, if the units have the correct base units. Unit conversions are used for property calculations.",
"UnitHelp": "Units, together with foods and quantities make up ingredients.They can be named according to your personal preference and linked to standardized units for automatic conversion. Addionally they give context to quantities in many places like shopping lists, conversions and properties. ",
"Unit_Alias": "Unit Alias",
"Unit_Replace": "Unit Replace",
"Units": "Units",
@@ -490,10 +515,13 @@
"Use_Plural_Unit_Always": "Use plural form for unit always",
"Use_Plural_Unit_Simple": "Use plural form for unit dynamically",
"User": "User",
"UserFileHelp": "Files uploaded to the space. ",
"UserHelp": "Users are the members of your space. ",
"Username": "Username",
"Users": "Users",
"Valid Until": "Valid Until",
"View": "View",
"ViewLogHelp": "History of viewed recipes. ",
"View_Recipes": "View Recipes",
"Viewed": "Viewed",
"Waiting": "Waiting",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Cuenta",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Mueva todos los ingredientes al paso que mejor se adapte.",
"Automate": "Automatizar",
"Automation": "Automatización",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Atrás",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Marcadores",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "Conversión",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Copiar",
@@ -104,6 +108,7 @@
"CustomThemeHelp": "Anular los estilos del tema seleccionado cargando un archivo CSS personalizado.",
"Data_Import_Info": "Mejora tu Espacio importando listas de alimentos, unidades y más seleccionados por la comunidad, para mejorar tu colección de recetas.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Tipo de Datos",
"Date": "Fecha",
"Day": "Día",
@@ -167,6 +172,7 @@
"First": "",
"First_name": "Nombre",
"Food": "Alimento",
"FoodHelp": "",
"FoodInherit": "Campos heredables",
"FoodNotOnHand": "No tienes {food} comprado.",
"FoodOnHand": "Ya tienes {food} comprado.",
@@ -210,6 +216,7 @@
"Ingredient Editor": "Ingredientes",
"Ingredient Overview": "Vistazo de Ingredientes",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Este ingrediente ya esta en la lista de la compra.",
"Ingredients": "Ingredientes",
"Inherit": "Heredar",
@@ -221,11 +228,13 @@
"Instructions": "Instrucciones",
"InstructionsEditHelp": "",
"Internal": "Interno",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Invitaciones",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Palabra clave",
"KeywordHelp": "",
"Keyword_Alias": "Alias Etiquetas",
"Keywords": "Palabras clave",
"Language": "Lenguaje",
@@ -244,7 +253,9 @@
"ManageSubscription": "",
"Manage_Books": "Manejar libros",
"Manage_Emails": "Administrar Correos",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Régimen de comida",
"Meal_Plan_Days": "Planes de comida a futuro",
"Meal_Type": "Tipo de comida",
@@ -324,6 +335,7 @@
"Planned": "Planeado",
"Planner": "Planificador",
"Planner_Settings": "Opciones del planificador",
"Planning&Shopping": "",
"Plural": "Plural",
"Postpone": "",
"PostponedUntil": "",
@@ -339,7 +351,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "Propiedad",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Editor de Propiedades",
"Protected": "Protegido",
"Proteins": "Proteinas",
@@ -353,6 +367,9 @@
"Ratings": "Calificaciones",
"Recently_Viewed": "Visto recientemente",
"Recipe": "Receta",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Libro de recetas",
"Recipe_Image": "Imagen de la receta",
@@ -373,6 +390,7 @@
"Save/Load": "",
"Save_and_View": "Grabar y mostrar",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Buscar",
"Search Settings": "Buscar ajustes",
@@ -395,6 +413,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "Red defectuosa, esperando para sincronizar ...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Categorías Compras",
"Shopping_Category": "Categoría Compras",
@@ -419,6 +438,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "Algunos ajustes de apariencia pueden ser cambiados por los administradores del espacio y anularán los ajustes del cliente para ese espacio.",
"Split": "",
@@ -426,6 +446,7 @@
"StartDate": "Fecha de Inicio",
"Starting_Day": "Día de comienzo de la semana",
"Step": "Paso",
"StepHelp": "",
"Step_Name": "Nombre Paso",
"Step_Type": "Tipo Paso",
"Step_start_time": "Hora de inicio",
@@ -440,6 +461,8 @@
"Sunday": "",
"Supermarket": "Supermercado",
"SupermarketCategoriesOnly": "Sólo categorías de supermercado",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Nombre del Supermercado",
"Supermarkets": "Supermercados",
"System": "",
@@ -464,6 +487,8 @@
"Undo": "Deshacer",
"Unit": "Unidad",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Unidad alias",
"Unit_Replace": "Sustituir Unidad",
"Units": "Unidades",
@@ -488,10 +513,13 @@
"Use_Plural_Unit_Always": "Usar plural para unidades siempre",
"Use_Plural_Unit_Simple": "Usar plural para unidades dinámicamente",
"User": "Usuario",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Nombre de Usuario",
"Users": "Usuarios",
"Valid Until": "Valido Hasta",
"View": "Mostrar",
"ViewLogHelp": "",
"View_Recipes": "Mostrar recetas",
"Viewed": "",
"Waiting": "esperando",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -20,10 +21,12 @@
"Auto_Planner": "Automaattinen Suunnittelija",
"Automate": "Automatisoi",
"Automation": "Automaatio",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -46,6 +49,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopioi",
@@ -61,6 +65,7 @@
"Ctrl+K": "",
"Current_Period": "Nykyinen Jakso",
"Database": "",
"DatabaseHelp": "",
"Date": "Päivämäärä",
"Default": "",
"Delete": "Poista",
@@ -101,6 +106,7 @@
"FinishedAt": "",
"First": "",
"Food": "Ruoka",
"FoodHelp": "",
"Food_Alias": "Ruoan nimimerkki",
"Friday": "",
"GettingStarted": "",
@@ -124,12 +130,15 @@
"Information": "Tiedot",
"Ingredient": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"Ingredients": "Ainesosat",
"Instructions": "Ohjeet",
"InstructionsEditHelp": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"KeywordHelp": "",
"Keyword_Alias": "Avainsana-alias",
"Keywords": "Avainsanat",
"Last": "",
@@ -143,7 +152,9 @@
"Make_Ingredient": "Valmista Ainesosa",
"ManageSubscription": "",
"Manage_Books": "Hallinnoi kirjoja",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Ateriasuunnitelma",
"Meal_Plan_Days": "Tulevat ruokasuunnitelmat",
"Meal_Type": "Ateriatyyppi",
@@ -196,6 +207,7 @@
"Plan_Show_How_Many_Periods": "Kuinka monta jaksoa näyttää",
"Planner": "Suunnittelija",
"Planner_Settings": "Suunnittelijan asetukset",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -207,7 +219,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Proteins": "Proteiinit",
"RandomOrder": "",
@@ -216,6 +230,9 @@
"Rating": "Luokitus",
"Recently_Viewed": "Äskettäin katsotut",
"Recipe": "Resepti",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Keittokirja",
"Recipe_Image": "Reseptin Kuva",
@@ -233,6 +250,7 @@
"Save/Load": "",
"Save_and_View": "Tallenna & Katso",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Haku",
"Search Settings": "Hakuasetukset",
@@ -250,6 +268,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Ostoskategoriat",
"Shopping_Category": "Ostosluokka",
@@ -267,10 +286,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "Viikon aloituspäivä",
"Step": "Vaihe",
"StepHelp": "",
"Step_Name": "Vaiheen Nimi",
"Step_Type": "Vaiheen Tyyppi",
"Step_start_time": "Vaiheen aloitusaika",
@@ -280,6 +301,8 @@
"Success": "Onnistui",
"Sunday": "",
"Supermarket": "Supermarket",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"System": "",
"Table": "",
"Table_of_Contents": "Sisällysluettelo",
@@ -296,6 +319,8 @@
"Type": "Tyyppi",
"Unit": "Yksikkö",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Yksikköalias",
"Unrated": "Luokittelematon",
"Up": "",
@@ -309,7 +334,10 @@
"Use_Plural_Food_Simple": "",
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"UserFileHelp": "",
"UserHelp": "",
"View": "Katso",
"ViewLogHelp": "",
"View_Recipes": "Näytä Reseptit",
"Viewed": "",
"Waiting": "Odottaa",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Compte",
"Actions": "",
@@ -34,11 +35,13 @@
"Auto_Sort_Help": "Déplacer tous les ingrédients à létape la mieux adaptée.",
"Automate": "Automatiser",
"Automation": "Automatisation",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Retour",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Signet",
"BookmarkletHelp1": "",
@@ -72,6 +75,7 @@
"Conversion": "Conversion",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Copier",
@@ -103,6 +107,7 @@
"CustomThemeHelp": "Remplacer les styles du thème sélectionné en téléchargeant un fichier CSS personnalisé.",
"Data_Import_Info": "Améliorez votre groupe en important des données partagées par la communauté afin d'améliorer vos collections de recettes : listes d'aliments, unités et plus encore.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Type de donnée",
"Date": "Date",
"Day": "Jour",
@@ -166,6 +171,7 @@
"First": "",
"First_name": "Prénom",
"Food": "Aliment",
"FoodHelp": "",
"FoodInherit": "Ingrédient hérité",
"FoodNotOnHand": "Laliment {food} nest pas disponible.",
"FoodOnHand": "Laliment {food} est disponible.",
@@ -209,6 +215,7 @@
"Ingredient Editor": "Éditeur dingrédients",
"Ingredient Overview": "Aperçu des ingrédients",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Cet ingrédient est dans votre liste de courses.",
"Ingredients": "Ingrédients",
"Inherit": "Hériter",
@@ -220,11 +227,13 @@
"Instructions": "Instructions",
"InstructionsEditHelp": "",
"Internal": "Interne",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Invitations",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Maj",
"Keyword": "Mot-clé",
"KeywordHelp": "",
"Keyword_Alias": "Alias de mot-clé",
"Keywords": "Mots-clés",
"Language": "Langue",
@@ -243,7 +252,9 @@
"ManageSubscription": "",
"Manage_Books": "Gérer les livres",
"Manage_Emails": "Gérer les e-mails",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Menu de la semaine",
"Meal_Plan_Days": "Futurs menus",
"Meal_Type": "Type de repas",
@@ -323,6 +334,7 @@
"Planned": "Planifié",
"Planner": "Planificateur",
"Planner_Settings": "Paramètres du planificateur",
"Planning&Shopping": "",
"Plural": "Pluriel",
"Postpone": "",
"PostponedUntil": "",
@@ -339,7 +351,9 @@
"Properties_Food_Amount": "Propriété Quantité de nourriture",
"Properties_Food_Unit": "Propriété Unité de nourriture",
"Property": "Propriété",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Editeur de propriétés",
"Protected": "Protégé",
"Proteins": "Protéines",
@@ -353,6 +367,9 @@
"Ratings": "Notes",
"Recently_Viewed": "Vu récemment",
"Recipe": "Recette",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Livre de recettes",
"Recipe_Image": "Image de la recette",
@@ -373,6 +390,7 @@
"Save/Load": "",
"Save_and_View": "Sauvegarder et visualiser",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Rechercher",
"Search Settings": "Paramètres de recherche",
@@ -395,6 +413,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "Mauvais réseau, en attente de synchronisation ...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Catégories de courses",
"Shopping_Category": "Catégorie de courses",
@@ -419,6 +438,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "Certains paramètres cosmétiques peuvent être modifiés par un administrateur de l'espace et seront prioritaires sur les paramètres des utilisateurs pour cet espace.",
"Split": "",
@@ -426,6 +446,7 @@
"StartDate": "Date de début",
"Starting_Day": "Jour de début de la semaine",
"Step": "Étape",
"StepHelp": "",
"Step_Name": "Nom de létape",
"Step_Type": "Type détape",
"Step_start_time": "Heure de début de létape",
@@ -439,6 +460,8 @@
"Sunday": "",
"Supermarket": "Supermarché",
"SupermarketCategoriesOnly": "Catégories de supermarché uniquement",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Nom du supermarché",
"Supermarkets": "Supermarchés",
"System": "",
@@ -463,6 +486,8 @@
"Undo": "annuler",
"Unit": "Unité",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Alias pour les unités",
"Unit_Replace": "Remplacer l'Unité",
"Units": "Unités",
@@ -487,10 +512,13 @@
"Use_Plural_Unit_Always": "Toujours utiliser la forme plurielle pour les unités",
"Use_Plural_Unit_Simple": "Utiliser la forme plurielle pour les unités de manière dynamique",
"User": "Utilisateur",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Nom dutilisateur",
"Users": "Utilisateurs",
"Valid Until": "Valide jusquau",
"View": "Voir",
"ViewLogHelp": "",
"View_Recipes": "Voir les recettes",
"Viewed": "",
"Waiting": "Attente",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "חשבון",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "העברת כל המרכיבים למיקום המתאים ביותר.",
"Automate": "אוטומט",
"Automation": "אוטומטציה",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "חזור",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "סימניה",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "עברית",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "העתקה",
@@ -104,6 +108,7 @@
"CustomThemeHelp": "העלאה של קובץ CSS מותאם אישית תדרוס את העיצוב של הערכת נושא שנבחרה.",
"Data_Import_Info": "שפר את המרחב שלך ע\"י ייבוא רשימת משאבים קהילתית כמו מאכלים, ערכים ועוד.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "סוג מידע",
"Date": "תאריך",
"Day": "יום",
@@ -167,6 +172,7 @@
"First": "",
"First_name": "שם פרטי",
"Food": "אוכל",
"FoodHelp": "",
"FoodInherit": "ערכי מזון",
"FoodNotOnHand": "אין {food} ברשותך.",
"FoodOnHand": "יש {food} ברשותך.",
@@ -210,6 +216,7 @@
"Ingredient Editor": "עורך המרכיב",
"Ingredient Overview": "סקירת רכיב",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "רכיב זה ברשימת הקניות.",
"Ingredients": "מרכיבים",
"Inherit": "ירושה",
@@ -221,11 +228,13 @@
"Instructions": "הוראות",
"InstructionsEditHelp": "",
"Internal": "פנימי",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "הזמנות",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "מילת מפתח",
"KeywordHelp": "",
"Keyword_Alias": "שם כינוי למילת מפתח",
"Keywords": "מילות מפתח",
"Language": "שפה",
@@ -244,7 +253,9 @@
"ManageSubscription": "",
"Manage_Books": "נהל ספרים",
"Manage_Emails": "נהל כתובות דואר אלקטרוני",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "תוכנית ארוחה",
"Meal_Plan_Days": "תכנון אוכל עתידי",
"Meal_Type": "סוג אוכל",
@@ -324,6 +335,7 @@
"Planned": "מתוכנן",
"Planner": "מתכנן",
"Planner_Settings": "הגדרות מתכנן",
"Planning&Shopping": "",
"Plural": "רבים",
"Postpone": "",
"PostponedUntil": "",
@@ -340,7 +352,9 @@
"Properties_Food_Amount": "הגדרות כמות אוכל",
"Properties_Food_Unit": "הגדרות יחידת אוכל",
"Property": "נכס",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "עורך ערכים",
"Protected": "מוגן",
"Proteins": "פרוטאינים",
@@ -354,6 +368,9 @@
"Ratings": "דירוג",
"Recently_Viewed": "נצפו לאחרונה",
"Recipe": "מתכון",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "ספר מתכון",
"Recipe_Image": "תמונת מתכון",
@@ -374,6 +391,7 @@
"Save/Load": "",
"Save_and_View": "שמור וצפה",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "חיפוש",
"Search Settings": "חיפוש הגדרות",
@@ -396,6 +414,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "בעיית תקשורת, מחכה לסנכון...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "קטגוריות קניות",
"Shopping_Category": "קטגוריית קניות",
@@ -420,6 +439,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "חלק מהגדרות הקוסמטיות יכולות להיות מעודכנות על ידי מנהל המרחב וידרסו את הגדרות הקליינט עבור מרחב זה.",
"Split": "",
@@ -427,6 +447,7 @@
"StartDate": "תאריך התחלה",
"Starting_Day": "יום תחילת השבוע",
"Step": "צעד",
"StepHelp": "",
"Step_Name": "שם צעד",
"Step_Type": "סוג צעד",
"Step_start_time": "זמן התחלת הצעד",
@@ -441,6 +462,8 @@
"Sunday": "",
"Supermarket": "סופר מרקט",
"SupermarketCategoriesOnly": "קטגוריות סופרמרקט בלבד",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "שם סופרמרקט",
"Supermarkets": "סופרמרקטים",
"System": "",
@@ -465,6 +488,8 @@
"Undo": "שחזר",
"Unit": "ערך",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "שם כינוי ליחידה",
"Unit_Replace": "החלף יחידה",
"Units": "יחידות",
@@ -489,10 +514,13 @@
"Use_Plural_Unit_Always": "תמיד השתמש ברבים ליחידות",
"Use_Plural_Unit_Simple": "השתמש ברבים ליחידות בצורה דינאמית",
"User": "משתמש",
"UserFileHelp": "",
"UserHelp": "",
"Username": "שם משתמש",
"Users": "משתמשים",
"Valid Until": "פעיל עד",
"View": "תצוגה",
"ViewLogHelp": "",
"View_Recipes": "הצג מתכונים",
"Viewed": "",
"Waiting": "המתנה",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Fiók",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Az összes összetevőt helyezze át a legmegfelelőbb lépéshez.",
"Automate": "Automatizálás",
"Automation": "Automatizálás",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Vissza",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Könyvjelző",
"BookmarkletHelp1": "",
@@ -72,6 +75,7 @@
"Conversion": "Konverzió",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Másolás",
@@ -95,6 +99,7 @@
"Custom Filter": "Egyéni szűrő",
"Data_Import_Info": "Bővítse Terét alapanyagok, mértékegységek és egyebek közösség által összeállított listájának importálásával, hogy ezzel is javítsa a receptgyűjteményét.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Adattípus",
"Date": "Dátum",
"Day": "Nap",
@@ -150,6 +155,7 @@
"First": "",
"First_name": "Keresztnév",
"Food": "Alapanyag",
"FoodHelp": "",
"FoodInherit": "",
"FoodNotOnHand": "Önnek {food} nincs készleten.",
"FoodOnHand": "Önnek {food} van készleten.",
@@ -193,6 +199,7 @@
"Ingredient Editor": "Hozzávalók szerkesztője",
"Ingredient Overview": "Hozzávalók áttekintése",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Ez a hozzávaló szerepel a bevásárlólistán.",
"Ingredients": "Hozzávalók",
"Inherit": "",
@@ -203,11 +210,13 @@
"Instructions": "Elkészítés",
"InstructionsEditHelp": "",
"Internal": "Belső",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Meghívók",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Kulcsszó",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "Kulcsszavak",
"Language": "Nyelv",
@@ -225,7 +234,9 @@
"ManageSubscription": "",
"Manage_Books": "Könyvek kezelése",
"Manage_Emails": "Levelezés kezelése",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Menüterv",
"Meal_Plan_Days": "Jövőbeni menütervek",
"Meal_Type": "Étkezés",
@@ -300,6 +311,7 @@
"Planned": "Tervezett",
"Planner": "Tervező",
"Planner_Settings": "Tervező beállításai",
"Planning&Shopping": "",
"Plural": "Többes szám",
"Postpone": "",
"PostponedUntil": "",
@@ -315,7 +327,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "Tulajdonság",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Védett",
"Proteins": "Fehérjék",
@@ -329,6 +343,9 @@
"Ratings": "Értékelések",
"Recently_Viewed": "Nemrég megtekintett",
"Recipe": "Recept",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Szakácskönyv",
"Recipe_Image": "Receptkép",
@@ -349,6 +366,7 @@
"Save/Load": "",
"Save_and_View": "Mentés & megtekintés",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Keresés",
"Search Settings": "Keresési beállítások",
@@ -370,6 +388,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Vásárlási kategóriák",
"Shopping_Category": "Vásárlási kategória",
@@ -390,12 +409,14 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "Ossza fel az összes sort különálló lépésekbe.",
"StartDate": "Kezdés dátuma",
"Starting_Day": "A hét kezdőnapja",
"Step": "Lépés",
"StepHelp": "",
"Step_Name": "Lépés neve",
"Step_Type": "Lépés típusa",
"Step_start_time": "A lépés kezdési ideje",
@@ -409,6 +430,8 @@
"Sunday": "",
"Supermarket": "Szupermarket",
"SupermarketCategoriesOnly": "Csak a szupermarket kategóriák",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Szupermarket neve",
"Supermarkets": "Szupermarketek",
"System": "",
@@ -430,6 +453,8 @@
"Undefined": "Meghatározatlan",
"Unit": "Mennyiségi egység",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Unit_Replace": "Mértékegység helyettesítés",
"Units": "Mennyiségi egységek",
@@ -452,10 +477,13 @@
"Use_Plural_Unit_Always": "Mindig többes számot használjon az mértékegységhez",
"Use_Plural_Unit_Simple": "A mértékegység többes számának dinamikus beállítása",
"User": "Felhasználó",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Felhasználónév",
"Users": "Felhasználók",
"Valid Until": "Érvényes",
"View": "Nézet",
"ViewLogHelp": "",
"View_Recipes": "Receptek megjelenítése",
"Viewed": "",
"Waiting": "Várakozás",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -17,10 +18,12 @@
"AllRecipes": "",
"AppImportSubtitle": "",
"Automate": "Ավտոմատացնել",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -38,6 +41,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "",
@@ -48,6 +52,7 @@
"CreatedBy": "",
"Ctrl+K": "",
"Database": "",
"DatabaseHelp": "",
"Date": "",
"Default": "",
"Delete": "",
@@ -81,6 +86,7 @@
"FinishedAt": "",
"First": "",
"Food": "Սննդամթերք",
"FoodHelp": "",
"Friday": "",
"GettingStarted": "",
"HeaderWarning": "",
@@ -99,9 +105,12 @@
"Information": "Տեղեկություն",
"Ingredient": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"Ingredients": "",
"InstructionsEditHelp": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"KeywordHelp": "",
"Keywords": "",
"Last": "",
"Link": "",
@@ -112,7 +121,9 @@
"Logout": "",
"ManageSubscription": "",
"Manage_Books": "Կարգավորել Գրքերը",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Ճաշացուցակ",
"Merge": "Միացնել",
"MergeAutomateHelp": "",
@@ -144,6 +155,7 @@
"Owner": "",
"Parent": "Ծնող",
"PerPage": "",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -153,7 +165,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Proteins": "",
"RandomOrder": "",
@@ -162,6 +176,9 @@
"Rating": "",
"Recently_Viewed": "Վերջերս դիտած",
"Recipe": "Բաղադրատոմս",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Բաղադրատոմսերի գիրք",
"Recipe_Image": "Բաղադրատոմսի նկար",
@@ -178,6 +195,7 @@
"Save/Load": "",
"Save_and_View": "Պահպանել և Դիտել",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "",
"SelectAll": "",
@@ -194,6 +212,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Category": "Գնումների կատեգորիա",
"Shopping_list": "Գնումների ցուցակ",
@@ -208,9 +227,11 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Step": "",
"StepHelp": "",
"Step_start_time": "Քայլի սկսելու ժամանակը",
"Steps": "",
"StepsOverview": "",
@@ -218,6 +239,8 @@
"Success": "",
"Sunday": "",
"Supermarket": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"System": "",
"Table": "",
"Table_of_Contents": "Բովանդակություն",
@@ -228,6 +251,8 @@
"Today": "",
"Tuesday": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Up": "",
"Update": "",
"UpgradeNow": "",
@@ -239,7 +264,10 @@
"Use_Plural_Food_Simple": "",
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"UserFileHelp": "",
"UserHelp": "",
"View": "Դիտել",
"ViewLogHelp": "",
"View_Recipes": "Դիտել բաղադրատոմսերը",
"Viewed": "",
"Waiting": "",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "",
"Actions": "",
@@ -29,10 +30,12 @@
"Auto_Planner": "",
"Automate": "",
"Automation": "Automatis",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -64,6 +67,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Salin",
@@ -86,6 +90,7 @@
"Current_Period": "",
"Custom Filter": "",
"Database": "",
"DatabaseHelp": "",
"Date": "Tanggal",
"Day": "",
"Days": "",
@@ -139,6 +144,7 @@
"First": "",
"First_name": "",
"Food": "",
"FoodHelp": "",
"FoodInherit": "",
"FoodNotOnHand": "",
"FoodOnHand": "",
@@ -180,6 +186,7 @@
"Ingredient Editor": "Editor Bahan",
"Ingredient Overview": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "",
"Ingredients": "bahan-bahan",
"Inherit": "",
@@ -189,11 +196,13 @@
"Instructions": "",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "",
"Key_Ctrl": "",
"Key_Shift": "",
"Keyword": "",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "Kata Kunci",
"Language": "",
@@ -210,7 +219,9 @@
"ManageSubscription": "",
"Manage_Books": "Kelola Buku",
"Manage_Emails": "",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "rencana makan",
"Meal_Plan_Days": "",
"Meal_Type": "",
@@ -280,6 +291,7 @@
"Planned": "",
"Planner": "",
"Planner_Settings": "",
"Planning&Shopping": "",
"Postpone": "",
"PostponedUntil": "",
"Preferences": "",
@@ -292,7 +304,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Terlindung",
"Proteins": "Protein",
@@ -306,6 +320,9 @@
"Ratings": "",
"Recently_Viewed": "baru saja dilihat",
"Recipe": "",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "",
"Recipe_Image": "Gambar Resep",
@@ -326,6 +343,7 @@
"Save/Load": "",
"Save_and_View": "Simpan & Lihat",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Mencari",
"Search Settings": "Pengaturan Pencarian",
@@ -347,6 +365,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Kategori Belanja",
"Shopping_Category": "Kategori Belanja",
@@ -367,10 +386,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "",
"Step": "Melangkah",
"StepHelp": "",
"Step_Name": "Nama Langkah",
"Step_Type": "Tipe Langkah",
"Step_start_time": "Langkah waktu mulai",
@@ -385,6 +406,8 @@
"Sunday": "",
"Supermarket": "Supermarket",
"SupermarketCategoriesOnly": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "",
"System": "",
@@ -406,6 +429,8 @@
"Undefined": "",
"Unit": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Units": "",
"Unrated": "",
@@ -420,10 +445,13 @@
"Use_Fractions_Help": "",
"Use_Kj": "",
"User": "",
"UserFileHelp": "",
"UserHelp": "",
"Username": "",
"Users": "",
"Valid Until": "",
"View": "Melihat",
"ViewLogHelp": "",
"View_Recipes": "Lihat Resep",
"Viewed": "",
"Waiting": "Menunggu",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "",
"Automate": "",
"Automation": "",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "",
@@ -104,6 +108,7 @@
"CustomThemeHelp": "",
"Data_Import_Info": "",
"Database": "",
"DatabaseHelp": "",
"Datatype": "",
"Date": "",
"Day": "",
@@ -166,6 +171,7 @@
"First": "",
"First_name": "",
"Food": "",
"FoodHelp": "",
"FoodInherit": "",
"FoodNotOnHand": "",
"FoodOnHand": "",
@@ -209,6 +215,7 @@
"Ingredient Editor": "",
"Ingredient Overview": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "",
"Ingredients": "",
"Inherit": "",
@@ -220,11 +227,13 @@
"Instructions": "",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "",
"Key_Ctrl": "",
"Key_Shift": "",
"Keyword": "",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "",
"Language": "",
@@ -243,7 +252,9 @@
"ManageSubscription": "",
"Manage_Books": "",
"Manage_Emails": "",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "",
"Meal_Plan_Days": "",
"Meal_Type": "",
@@ -323,6 +334,7 @@
"Planned": "",
"Planner": "",
"Planner_Settings": "",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -339,7 +351,9 @@
"Properties_Food_Amount": "",
"Properties_Food_Unit": "",
"Property": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "",
"Proteins": "",
@@ -353,6 +367,9 @@
"Ratings": "",
"Recently_Viewed": "",
"Recipe": "",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "",
"Recipe_Image": "",
@@ -373,6 +390,7 @@
"Save/Load": "",
"Save_and_View": "",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "",
"Search Settings": "",
@@ -395,6 +413,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "",
"Shopping_Category": "",
@@ -418,6 +437,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "",
"Split": "",
@@ -425,6 +445,7 @@
"StartDate": "",
"Starting_Day": "",
"Step": "",
"StepHelp": "",
"Step_Name": "",
"Step_Type": "",
"Step_start_time": "",
@@ -439,6 +460,8 @@
"Sunday": "",
"Supermarket": "",
"SupermarketCategoriesOnly": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "",
"System": "",
@@ -463,6 +486,8 @@
"Undo": "",
"Unit": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Unit_Replace": "",
"Units": "",
@@ -487,10 +512,13 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "",
"UserFileHelp": "",
"UserHelp": "",
"Username": "",
"Users": "",
"Valid Until": "",
"View": "",
"ViewLogHelp": "",
"View_Recipes": "",
"Viewed": "",
"Waiting": "",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Account",
"Actions": "",
@@ -33,10 +34,12 @@
"Auto_Sort_Help": "Sposta tutti gli ingredienti allo step più adatto.",
"Automate": "Automatizza",
"Automation": "Automazione",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Segnalibro",
"BookmarkletHelp1": "",
@@ -68,6 +71,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Copia",
@@ -90,6 +94,7 @@
"Current_Period": "Periodo attuale",
"Custom Filter": "Filtro personalizzato",
"Database": "",
"DatabaseHelp": "",
"Date": "Data",
"Day": "Giorno",
"Days": "Giorni",
@@ -144,6 +149,7 @@
"First": "",
"First_name": "Nome",
"Food": "Alimento",
"FoodHelp": "",
"FoodInherit": "Campi ereditabili dagli Alimenti",
"FoodNotOnHand": "Non hai {food} a disposizione.",
"FoodOnHand": "Hai {food} a disposizione.",
@@ -185,6 +191,7 @@
"Ingredient Editor": "Editor Ingredienti",
"Ingredient Overview": "Panoramica Ingredienti",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Questo ingrediente è nella tua lista della spesa.",
"Ingredients": "Ingredienti",
"Inherit": "Eredita",
@@ -194,11 +201,13 @@
"Instructions": "Istruzioni",
"InstructionsEditHelp": "",
"Internal": "Interno",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Inviti",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Maiusc",
"Keyword": "Parola chiave",
"KeywordHelp": "",
"Keyword_Alias": "Alias Parola Chiave",
"Keywords": "Parole chiave",
"Language": "Lingua",
@@ -215,7 +224,9 @@
"ManageSubscription": "",
"Manage_Books": "Gestisci Libri",
"Manage_Emails": "Gestisci email",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Piano alimentare",
"Meal_Plan_Days": "Piani alimentari futuri",
"Meal_Type": "Tipo di pasto",
@@ -287,6 +298,7 @@
"Planned": "Pianificato",
"Planner": "Planner",
"Planner_Settings": "Impostazioni planner",
"Planning&Shopping": "",
"Plural": "Plurale",
"Postpone": "",
"PostponedUntil": "",
@@ -300,7 +312,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Protetto",
"Proteins": "Proteine",
@@ -314,6 +328,9 @@
"Ratings": "Valutazioni",
"Recently_Viewed": "Visualizzato di recente",
"Recipe": "Ricetta",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Libro di Ricette",
"Recipe_Image": "Immagine ricetta",
@@ -334,6 +351,7 @@
"Save/Load": "",
"Save_and_View": "Salva & Mostra",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Cerca",
"Search Settings": "Impostazioni di ricerca",
@@ -355,6 +373,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Categorie di spesa",
"Shopping_Category": "Categoria Spesa",
@@ -375,11 +394,13 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "Divide tutte le righe in step separati.",
"Starting_Day": "Giorno di inizio della settimana",
"Step": "Step",
"StepHelp": "",
"Step_Name": "Nome dello Step",
"Step_Type": "Tipo di Step",
"Step_start_time": "Ora di inizio dello Step",
@@ -394,6 +415,8 @@
"Sunday": "",
"Supermarket": "Supermercato",
"SupermarketCategoriesOnly": "Solo categorie supermercati",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Nome supermercato",
"Supermarkets": "Supermercati",
"System": "",
@@ -415,6 +438,8 @@
"Undefined": "Non definito",
"Unit": "Unità di misura",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Alias Unità",
"Units": "Unità di misura",
"Unpin": "Non fissare",
@@ -435,10 +460,13 @@
"Use_Plural_Unit_Always": "Usa sempre il plurale per le unità di misura",
"Use_Plural_Unit_Simple": "Usa dinamicamente il plurale per le unità di misura",
"User": "Utente",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Nome utente",
"Users": "Utenti",
"Valid Until": "Valido fino",
"View": "Mostra",
"ViewLogHelp": "",
"View_Recipes": "Mostra ricette",
"Viewed": "",
"Waiting": "Attesa",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "",
"Automate": "",
"Automation": "",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -72,6 +75,7 @@
"Conversion": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "",
@@ -96,6 +100,7 @@
"Custom Filter": "",
"Data_Import_Info": "",
"Database": "",
"DatabaseHelp": "",
"Datatype": "",
"Date": "",
"Day": "",
@@ -152,6 +157,7 @@
"First": "",
"First_name": "",
"Food": "",
"FoodHelp": "",
"FoodInherit": "",
"FoodNotOnHand": "",
"FoodOnHand": "",
@@ -195,6 +201,7 @@
"Ingredient Editor": "Ingredientų redaktorius",
"Ingredient Overview": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "",
"Ingredients": "",
"Inherit": "",
@@ -205,11 +212,13 @@
"Instructions": "",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "",
"Key_Ctrl": "",
"Key_Shift": "",
"Keyword": "",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "",
"Language": "",
@@ -227,7 +236,9 @@
"ManageSubscription": "",
"Manage_Books": "Tvarkyti knygas",
"Manage_Emails": "",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Maisto planas",
"Meal_Plan_Days": "",
"Meal_Type": "",
@@ -304,6 +315,7 @@
"Planned": "",
"Planner": "",
"Planner_Settings": "",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -319,7 +331,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "",
"Proteins": "",
@@ -333,6 +347,9 @@
"Ratings": "",
"Recently_Viewed": "Neseniai Žiūrėta",
"Recipe": "",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "",
"Recipe_Image": "Recepto nuotrauka",
@@ -353,6 +370,7 @@
"Save/Load": "",
"Save_and_View": "Išsaugoti ir peržiūrėti",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "",
"Search Settings": "",
@@ -374,6 +392,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "",
"Shopping_Category": "",
@@ -394,12 +413,14 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "",
"StartDate": "",
"Starting_Day": "",
"Step": "",
"StepHelp": "",
"Step_Name": "Žingsnio pavadinimas",
"Step_Type": "Žingsnio tipas",
"Step_start_time": "Žingsnio pradžios laikas",
@@ -414,6 +435,8 @@
"Sunday": "",
"Supermarket": "",
"SupermarketCategoriesOnly": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "",
"System": "",
@@ -436,6 +459,8 @@
"Undefined": "",
"Unit": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Unit_Replace": "",
"Units": "",
@@ -459,10 +484,13 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "",
"UserFileHelp": "",
"UserHelp": "",
"Username": "",
"Users": "",
"Valid Until": "",
"View": "",
"ViewLogHelp": "",
"View_Recipes": "Žiūrėti receptus",
"Viewed": "",
"Waiting": "",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "",
"Actions": "",
@@ -33,10 +34,12 @@
"Auto_Sort_Help": "Flytt alle ingredienser til det mest passende steget.",
"Automate": "Automatiser",
"Automation": "Automatiser",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -70,6 +73,7 @@
"Conversion": "Omregn enhet",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopier",
@@ -93,6 +97,7 @@
"Current_Period": "Gjeldende periode",
"Custom Filter": "Egendefinert Filter",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Data-type",
"Date": "Dato",
"Day": "Dag",
@@ -148,6 +153,7 @@
"First": "",
"First_name": "Fornavn",
"Food": "Matretter",
"FoodHelp": "",
"FoodInherit": "Arvbare felt for matvarer",
"FoodNotOnHand": "Du har ikke {food} på lager.",
"FoodOnHand": "Du har {food} på lager.",
@@ -190,6 +196,7 @@
"Ingredient Editor": "Ingrediens Behandler",
"Ingredient Overview": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Denne ingrediensen er i handlekurven din.",
"Ingredients": "Ingredienser",
"Inherit": "Arve",
@@ -200,11 +207,13 @@
"Instructions": "Instruksjoner",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Invitasjoner",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Nøkkelord",
"KeywordHelp": "",
"Keyword_Alias": "Nøkkelord Alias",
"Keywords": "Nøkkelord",
"Language": "Språk",
@@ -222,7 +231,9 @@
"ManageSubscription": "",
"Manage_Books": "Administrer bøker",
"Manage_Emails": "Administrer e-poster",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Måltidsplan",
"Meal_Plan_Days": "Fremtidige måltidsplaner",
"Meal_Type": "Måltidstype",
@@ -296,6 +307,7 @@
"Planned": "",
"Planner": "Planlegger",
"Planner_Settings": "Planleggingsinstilliger",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -311,7 +323,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "Egenskap",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Beskyttet",
"Proteins": "Protein",
@@ -325,6 +339,9 @@
"Ratings": "",
"Recently_Viewed": "Nylig vist",
"Recipe": "Oppskrift",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Oppskriftsbok",
"Recipe_Image": "Oppskriftsbilde",
@@ -345,6 +362,7 @@
"Save/Load": "",
"Save_and_View": "Lagre og vis",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Søk",
"Search Settings": "Søk Instillinger",
@@ -366,6 +384,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Butikk Kategorier",
"Shopping_Category": "Butikk Kategori",
@@ -386,11 +405,13 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "",
"Starting_Day": "Dag uken skal state på",
"Step": "Steg",
"StepHelp": "",
"Step_Name": "Trinn navn",
"Step_Type": "Trinn type",
"Step_start_time": "Trinn starttid",
@@ -405,6 +426,8 @@
"Sunday": "",
"Supermarket": "Butikk",
"SupermarketCategoriesOnly": "Kun Butikkategorier",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Butikk Navn",
"Supermarkets": "Butikker",
"System": "",
@@ -426,6 +449,8 @@
"Undefined": "Udefinert",
"Unit": "Enhet",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Enhet Alias",
"Units": "Enhet",
"Unpin": "Løsne",
@@ -448,10 +473,13 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "Bruker",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Brukernavn",
"Users": "Brukere",
"Valid Until": "",
"View": "Visning",
"ViewLogHelp": "",
"View_Recipes": "Vis oppskrifter",
"Viewed": "",
"Waiting": "Venter",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Account",
"Actions": "",
@@ -34,11 +35,13 @@
"Auto_Sort_Help": "Verplaats alle ingrediënten naar de best passende stap.",
"Automate": "Automatiseer",
"Automation": "Automatisering",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Terug",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Bladwijzer",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "Omrekening",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopie",
@@ -97,6 +101,7 @@
"Custom Filter": "Aangepast filter",
"Data_Import_Info": "Verbeter je Space door een door de community samengestelde lijst van voedingsmiddelen, eenheden en meer te importeren om je receptenverzameling te verbeteren.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Datatype",
"Date": "Datum",
"Day": "Dag",
@@ -152,6 +157,7 @@
"First": "",
"First_name": "Voornaam",
"Food": "Ingrediënt",
"FoodHelp": "",
"FoodInherit": "Eten erfbare velden",
"FoodNotOnHand": "Je hebt {food} niet op voorraad.",
"FoodOnHand": "Je hebt {fookd} op voorraad.",
@@ -194,6 +200,7 @@
"Ingredient Editor": "Ingrediënten editor",
"Ingredient Overview": "Ingrediëntenlijst",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Dit ingrediënt staat op je boodschappenlijst.",
"Ingredients": "Ingrediënten",
"Inherit": "Erf",
@@ -204,11 +211,13 @@
"Instructions": "Instructies",
"InstructionsEditHelp": "",
"Internal": "Interne",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Uitnodigingen",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Etiket",
"KeywordHelp": "",
"Keyword_Alias": "Etiket Alias",
"Keywords": "Etiketten",
"Language": "Taal",
@@ -226,7 +235,9 @@
"ManageSubscription": "",
"Manage_Books": "Beheer boeken",
"Manage_Emails": "E-mail beheren",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Maaltijdplan",
"Meal_Plan_Days": "Toekomstige maaltijdplannen",
"Meal_Type": "Maaltype",
@@ -300,6 +311,7 @@
"Planned": "Gepland",
"Planner": "Planner",
"Planner_Settings": "Planner instellingen",
"Planning&Shopping": "",
"Plural": "Meervoud",
"Postpone": "",
"PostponedUntil": "",
@@ -315,7 +327,9 @@
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"Property": "Eigenschap",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Beschermd",
"Proteins": "Eiwitten",
@@ -329,6 +343,9 @@
"Ratings": "Waardering",
"Recently_Viewed": "Recent bekeken",
"Recipe": "Recept",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Kookboek",
"Recipe_Image": "Afbeelding Recept",
@@ -349,6 +366,7 @@
"Save/Load": "",
"Save_and_View": "Sla op & Bekijk",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Zoeken",
"Search Settings": "Zoekinstellingen",
@@ -370,6 +388,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Boodschappen categorieën",
"Shopping_Category": "Boodschappencategorie",
@@ -390,11 +409,13 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "Splits alle rijen in aparte stappen.",
"Starting_Day": "Eerste dag van de week",
"Step": "Stap",
"StepHelp": "",
"Step_Name": "Stap Naam",
"Step_Type": "Stap Type",
"Step_start_time": "Starttijd stap",
@@ -409,6 +430,8 @@
"Sunday": "",
"Supermarket": "Supermarkt",
"SupermarketCategoriesOnly": "Alleen supermarkt categorieën",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Naam supermarkt",
"Supermarkets": "Supermarkten",
"System": "",
@@ -430,6 +453,8 @@
"Undefined": "Ongedefinieerd",
"Unit": "Eenheid",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Eenheid Alias",
"Units": "Eenheden",
"Unpin": "Pin losmaken",
@@ -452,10 +477,13 @@
"Use_Plural_Unit_Always": "Gebruik altijd de meervoudsvorm voor eenheden",
"Use_Plural_Unit_Simple": "Gebruik meervoudsvorm voor eenheden dynamisch",
"User": "Gebruiker",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Gebruikersnaam",
"Users": "Gebruikers",
"Valid Until": "Geldig tot",
"View": "Bekijk",
"ViewLogHelp": "",
"View_Recipes": "Bekijk Recepten",
"Viewed": "",
"Waiting": "Wachten",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Konto",
"Actions": "",
@@ -34,11 +35,13 @@
"Auto_Sort_Help": "Przenieś wszystkie składniki do najlepiej dopasowanego kroku.",
"Automate": "Automatyzacja",
"Automation": "Automatyzacja",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Z powrotem",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Skryptozakładka",
"BookmarkletHelp1": "",
@@ -74,6 +77,7 @@
"Conversion": "Konwersja",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopiuj",
@@ -105,6 +109,7 @@
"CustomThemeHelp": "Zastąp style wybranego motywu, przesyłając własny plik CSS.",
"Data_Import_Info": "Wzbogać swoją Przestrzeń, importując wyselekcjonowaną przez społeczność listę żywności, jednostek i nie tylko, aby ulepszyć swoją kolekcję przepisów.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Typ danych",
"Date": "Data",
"Day": "Dzień",
@@ -168,6 +173,7 @@
"First": "",
"First_name": "Imię",
"Food": "Żywność",
"FoodHelp": "",
"FoodInherit": "Pola dziedziczone w żywności",
"FoodNotOnHand": "Nie posiadasz {food}.",
"FoodOnHand": "Posiadasz {food}.",
@@ -211,6 +217,7 @@
"Ingredient Editor": "Edytor składników",
"Ingredient Overview": "Przegląd składników",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Ten składnik znajduje się na Twojej liście zakupów.",
"Ingredients": "Składniki",
"Inherit": "Dziedziczenie",
@@ -222,11 +229,13 @@
"Instructions": "Instrukcje",
"InstructionsEditHelp": "",
"Internal": "Wewnętrzne",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Zaprasza",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Słowo kluczowe",
"KeywordHelp": "",
"Keyword_Alias": "Alias słowa kluczowego",
"Keywords": "Słowa kluczowe",
"Language": "Język",
@@ -245,7 +254,9 @@
"ManageSubscription": "",
"Manage_Books": "Zarządzaj książkami",
"Manage_Emails": "Zarządzaj e-mailami",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Plan posiłków",
"Meal_Plan_Days": "Przyszłe plany posiłków",
"Meal_Type": "Rodzaj posiłku",
@@ -325,6 +336,7 @@
"Planned": "Zaplanowane",
"Planner": "Terminarz",
"Planner_Settings": "Ustawienia terminarza",
"Planning&Shopping": "",
"Plural": "Liczba mnoga",
"Postpone": "",
"PostponedUntil": "",
@@ -341,7 +353,9 @@
"Properties_Food_Amount": "Właściwości ilości żywności",
"Properties_Food_Unit": "Właściwości jednostek żywności",
"Property": "Właściwość",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Edytor właściwości",
"Protected": "Chroniony",
"Proteins": "Białka",
@@ -355,6 +369,9 @@
"Ratings": "Oceny",
"Recently_Viewed": "Ostatnio oglądane",
"Recipe": "Przepis",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Książka z przepisami",
"Recipe_Image": "Obrazek dla przepisu",
@@ -375,6 +392,7 @@
"Save/Load": "",
"Save_and_View": "Zapisz i wyświetl",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Szukaj",
"Search Settings": "Ustawienia wyszukiwania",
@@ -397,6 +415,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "Słaba sieć, oczekiwanie na synchronizację...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Kategorie zakupów",
"Shopping_Category": "Kategoria zakupów",
@@ -421,6 +440,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "Administratorzy przestrzeni mogą zmienić niektóre ustawienia kosmetyczne, które zastąpią ustawienia klienta dla tej przestrzeni.",
"Split": "",
@@ -428,6 +448,7 @@
"StartDate": "Data początkowa",
"Starting_Day": "Dzień rozpoczęcia tygodnia",
"Step": "Krok",
"StepHelp": "",
"Step_Name": "Nazwa kroku",
"Step_Type": "Typ kroku",
"Step_start_time": "Czas rozpoczęcia kroku",
@@ -442,6 +463,8 @@
"Sunday": "",
"Supermarket": "Supermarket",
"SupermarketCategoriesOnly": "Tylko kategorie supermarketów",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Nazwa supermarketu",
"Supermarkets": "Supermarkety",
"System": "",
@@ -466,6 +489,8 @@
"Undo": "Cofnij",
"Unit": "Jednostka",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Alias jednostek",
"Unit_Replace": "Zastąp jednostkę",
"Units": "Jednostki",
@@ -490,10 +515,13 @@
"Use_Plural_Unit_Always": "Zawsze używaj liczby mnogiej dla jednostki",
"Use_Plural_Unit_Simple": "Dynamicznie używaj liczby mnogiej dla jednostki",
"User": "Użytkownik",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Nazwa użytkownika",
"Users": "Użytkownicy",
"Valid Until": "Ważne do",
"View": "Pogląd",
"ViewLogHelp": "",
"View_Recipes": "Przeglądaj przepisy",
"Viewed": "",
"Waiting": "Oczekiwanie",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -28,10 +29,12 @@
"Auto_Sort_Help": "Mover todos os ingredientes para o passo mais indicado.",
"Automate": "Automatizar",
"Automation": "Automação",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -59,6 +62,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Copiar",
@@ -80,6 +84,7 @@
"Current_Period": "Período atual",
"Custom Filter": "",
"Database": "",
"DatabaseHelp": "",
"Date": "Data",
"Decimals": "Casas decimais",
"Default": "",
@@ -126,6 +131,7 @@
"FinishedAt": "",
"First": "",
"Food": "Comida",
"FoodHelp": "",
"FoodInherit": "Campos herdados por comida",
"FoodNotOnHand": "Não têm {food} disponível.",
"FoodOnHand": "Tem {food} disponível.",
@@ -157,6 +163,7 @@
"Ingredient": "",
"Ingredient Editor": "Editor de Ingredientes",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Este ingrediente está na sua lista de compras.",
"Ingredients": "Ingredientes",
"Inherit": "Herdado",
@@ -167,10 +174,12 @@
"Instructions": "Instruções",
"InstructionsEditHelp": "",
"Internal": "Interno",
"InviteLinkHelp": "",
"Invite_Link": "",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Palavra Chave",
"KeywordHelp": "",
"Keyword_Alias": "Alcunha da palavra-chave",
"Keywords": "Palavras-chave",
"Language": "Linguagem",
@@ -185,7 +194,9 @@
"Make_Ingredient": "Fazer ingrediente",
"ManageSubscription": "",
"Manage_Books": "Gerenciar Livros",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Plano de Refeição",
"Meal_Plan_Days": "Planos de alimentação futuros",
"Meal_Type": "Tipo de refeição",
@@ -249,6 +260,7 @@
"Planned": "Planeado",
"Planner": "Planeador",
"Planner_Settings": "Definições do planeador",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -262,7 +274,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Protegido",
"Proteins": "Proteínas",
@@ -276,6 +290,9 @@
"Ratings": "Avaliações",
"Recently_Viewed": "Vistos Recentemente",
"Recipe": "Receita",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Livro de Receitas",
"Recipe_Image": "Imagem da Receita",
@@ -295,6 +312,7 @@
"Save/Load": "",
"Save_and_View": "Gravar & Ver",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Pesquisar",
"Search Settings": "Definições de Pesquisa",
@@ -313,6 +331,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Categorias de Compras",
"Shopping_Category": "Categoria de Compras",
@@ -332,10 +351,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "Dia de início da semana",
"Step": "Passo",
"StepHelp": "",
"Step_Name": "Nome do Passo",
"Step_Type": "Tipo do passo",
"Step_start_time": "Hora de Inicio do passo",
@@ -348,6 +369,8 @@
"Sunday": "",
"Supermarket": "Supermercado",
"SupermarketCategoriesOnly": "Apenas categorias do supermercado",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "Supermercados",
"System": "",
@@ -368,6 +391,8 @@
"Undefined": "Não definido",
"Unit": "Unidade",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Alcunha da unidade",
"Units": "Unidades",
"Unrated": "Sem classificação",
@@ -385,7 +410,10 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "Utilizador",
"UserFileHelp": "",
"UserHelp": "",
"View": "Vista",
"ViewLogHelp": "",
"View_Recipes": "Ver Receitas",
"Viewed": "",
"Waiting": "Em espera",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Conta",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Mover todos os ingredientes para o passo mais indicado.",
"Automate": "Automatizar",
"Automation": "Automação",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Voltar",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -72,6 +75,7 @@
"Conversion": "Conversão",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Copiar",
@@ -102,6 +106,7 @@
"CustomThemeHelp": "Substituir estilos do tema selecionado fazendo upload de um arquivo CSS personalizado.",
"Data_Import_Info": "Enriqueça seu espaço importando uma lista comunitariamente curada de alimentos, unidades e mais para melhorar sua coleção de receitas.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Tipo Dado",
"Date": "Data",
"Day": "Dia",
@@ -162,6 +167,7 @@
"First": "",
"First_name": "Primeiro Nome",
"Food": "Comida",
"FoodHelp": "",
"FoodInherit": "Campos herdados por alimento",
"FoodNotOnHand": "Não tem {food} disponível.",
"FoodOnHand": "Tem {food} disponível.",
@@ -204,6 +210,7 @@
"Ingredient Editor": "Editor de Ingrediente",
"Ingredient Overview": "Ingredientes - Visão Geral",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Este ingrediente está na sua lista de compras.",
"Ingredients": "Ingredientes",
"Inherit": "Herdado",
@@ -215,11 +222,13 @@
"Instructions": "Instruções",
"InstructionsEditHelp": "",
"Internal": "Interno",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Convites",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Palavra-chave",
"KeywordHelp": "",
"Keyword_Alias": "Apelido da palavra-chave",
"Keywords": "Palavras-chave",
"Language": "Idioma",
@@ -237,7 +246,9 @@
"ManageSubscription": "",
"Manage_Books": "Gerenciar Livros",
"Manage_Emails": "Gerenciar Emails",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Plano de Refeição",
"Meal_Plan_Days": "Planos de refeição futuros",
"Meal_Type": "Tipo de Comida",
@@ -312,6 +323,7 @@
"Planned": "Planejado",
"Planner": "Planejamento",
"Planner_Settings": "Configurações do Planejamento",
"Planning&Shopping": "",
"Plural": "Plural",
"Postpone": "",
"PostponedUntil": "",
@@ -328,7 +340,9 @@
"Properties_Food_Amount": "Quantidade de Alimento das Propriedades",
"Properties_Food_Unit": "Unidade de Alimento das Propriedades",
"Property": "Propriedade",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Editor de Propriedades",
"Protected": "Protegido",
"Proteins": "Proteínas",
@@ -342,6 +356,9 @@
"Ratings": "Classificações",
"Recently_Viewed": "Visto recentemente",
"Recipe": "Receita",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Livro de Receitas",
"Recipe_Image": "Imagem da receita",
@@ -362,6 +379,7 @@
"Save/Load": "",
"Save_and_View": "Salvar e Visualizar",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Buscar",
"Search Settings": "Buscar Configuração",
@@ -384,6 +402,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "Rede ruim, aguardando sincronização...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Categorias de Mercado",
"Shopping_Category": "Categoria de Mercado",
@@ -406,11 +425,13 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"StartDate": "Data Início",
"Starting_Day": "Dia de início da semana",
"Step": "Etapa",
"StepHelp": "",
"Step_Name": "Nome da etapa",
"Step_Type": "Tipo de etapa",
"Step_start_time": "Hora de início",
@@ -424,6 +445,8 @@
"Sunday": "",
"Supermarket": "Supermercado",
"SupermarketCategoriesOnly": "Somente Categorias do Supermercado",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Nome do Supermercado",
"Supermarkets": "Supermercados",
"System": "",
@@ -445,6 +468,8 @@
"Undo": "Desfazer",
"Unit": "Unidade",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Apelido da Unidade",
"Unit_Replace": "Substituir Unidade",
"Units": "Unidades",
@@ -466,10 +491,13 @@
"Use_Plural_Unit_Always": "Sempre usar forma plural para unidade",
"Use_Plural_Unit_Simple": "Dinamicamente usar forma plural para unidade",
"User": "Usuário",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Nome do Usuário",
"Users": "Usuários",
"Valid Until": "Válido Até",
"View": "Visualizar",
"ViewLogHelp": "",
"View_Recipes": "Ver Receitas",
"Viewed": "",
"Waiting": "Espera",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Cont",
"Actions": "",
@@ -33,10 +34,12 @@
"Auto_Sort_Help": "Mutați toate ingredientele la cel mai potrivit pas.",
"Automate": "Automatizat",
"Automation": "Automatizare",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Marcaj",
"BookmarkletHelp1": "",
@@ -69,6 +72,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Copie",
@@ -92,6 +96,7 @@
"Current_Period": "Perioada curentă",
"Custom Filter": "Filtru personalizat",
"Database": "",
"DatabaseHelp": "",
"Date": "Dată",
"Day": "Zi",
"Days": "Zile",
@@ -146,6 +151,7 @@
"First": "",
"First_name": "Prenume",
"Food": "Mâncare",
"FoodHelp": "",
"FoodInherit": "Câmpuri moștenite de alimente",
"FoodNotOnHand": "Nu aveți {food} la îndemână.",
"FoodOnHand": "Aveți {food} la îndemână.",
@@ -188,6 +194,7 @@
"Ingredient Editor": "Editor de ingrediente",
"Ingredient Overview": "Prezentare generală a ingredientelor",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Acest ingredient se află în lista de cumpărături.",
"Ingredients": "Ingrediente",
"Inherit": "Moștenire",
@@ -198,11 +205,13 @@
"Instructions": "Instrucțiuni",
"InstructionsEditHelp": "",
"Internal": "Intern",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Invită",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Cuvânt cheie",
"KeywordHelp": "",
"Keyword_Alias": "Pseudonim cuvânt cheie",
"Keywords": "Cuvinte cheie",
"Language": "Limba",
@@ -219,7 +228,9 @@
"ManageSubscription": "",
"Manage_Books": "Gestionarea cărților",
"Manage_Emails": "Gestionarea e-mailurilor",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Plan de alimentare",
"Meal_Plan_Days": "Planuri de alimentație pe viitor",
"Meal_Type": "Tipul mesei",
@@ -291,6 +302,7 @@
"Planned": "Planificate",
"Planner": "Planificator",
"Planner_Settings": "Setări planificator",
"Planning&Shopping": "",
"Plural": "Plural",
"Postpone": "",
"PostponedUntil": "",
@@ -304,7 +316,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Protejat",
"Proteins": "Proteine",
@@ -318,6 +332,9 @@
"Ratings": "Evaluări",
"Recently_Viewed": "Vizualizate recent",
"Recipe": "Rețetă",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Carte de rețete",
"Recipe_Image": "Imagine a rețetei",
@@ -338,6 +355,7 @@
"Save/Load": "",
"Save_and_View": "Salvare și vizionare",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Căutare",
"Search Settings": "Setări de căutare",
@@ -359,6 +377,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Categorii de cumpărături",
"Shopping_Category": "Categorie de cumpărături",
@@ -379,11 +398,13 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Split_All_Steps": "Împărțiți toate rândurile în pași separați.",
"Starting_Day": "Ziua de început a săptămânii",
"Step": "Pas",
"StepHelp": "",
"Step_Name": "Nume pas",
"Step_Type": "Tip pas",
"Step_start_time": "Pasule de începere a orei",
@@ -398,6 +419,8 @@
"Sunday": "",
"Supermarket": "Supermarket",
"SupermarketCategoriesOnly": "Numai categorii de supermarket-uri",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Numele supermarketului",
"Supermarkets": "Supermarket-uri",
"System": "",
@@ -419,6 +442,8 @@
"Undefined": "Nedefinit",
"Unit": "Unitate",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Pseudonim unitate",
"Units": "Unități",
"Unpin": "Anularea fixării",
@@ -439,10 +464,13 @@
"Use_Plural_Unit_Always": "Utilizarea formei plurale pentru unitate întotdeauna",
"Use_Plural_Unit_Simple": "Utilizarea dinamică a formei plurale pentru unitate",
"User": "Utilizator",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Nume utilizator",
"Users": "Utilizatori",
"Valid Until": "Valabil până la",
"View": "Vizualizare",
"ViewLogHelp": "",
"View_Recipes": "Vizionare rețete",
"Viewed": "",
"Waiting": "Așteptare",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -27,10 +28,12 @@
"Auto_Planner": "Автопланировщик",
"Automate": "Автоматизировать",
"Automation": "Автоматизация",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -54,6 +57,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Копировать",
@@ -72,6 +76,7 @@
"Current_Period": "Текущий период",
"Custom Filter": "Пользовательский фильтр",
"Database": "",
"DatabaseHelp": "",
"Date": "Дата",
"Default": "",
"DelayFor": "Отложить на {hours} часов",
@@ -116,6 +121,7 @@
"FinishedAt": "",
"First": "",
"Food": "Еда",
"FoodHelp": "",
"FoodInherit": "Наследуемые поля продуктов питания",
"FoodNotOnHand": "{food} отсутствует в наличии.",
"FoodOnHand": "{food} у вас в наличии.",
@@ -149,6 +155,7 @@
"Ingredient": "",
"Ingredient Editor": "Редактор ингредиентов",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Этот ингредиент в вашем списке покупок.",
"Ingredients": "Ингредиенты",
"Inherit": "Наследовать",
@@ -157,10 +164,12 @@
"Instructions": "Инструкции",
"InstructionsEditHelp": "",
"Internal": "Внутренний",
"InviteLinkHelp": "",
"Invite_Link": "",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Ключевое слово",
"KeywordHelp": "",
"Keyword_Alias": "Ключевые слова",
"Keywords": "Ключевые слова",
"Last": "",
@@ -174,7 +183,9 @@
"Make_Ingredient": "Создание инградиента",
"ManageSubscription": "",
"Manage_Books": "Управление книгами",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Планирование блюд",
"Meal_Plan_Days": "Планы питания на будущее",
"Meal_Type": "Тип питания",
@@ -238,6 +249,7 @@
"Planned": "Запланировано",
"Planner": "Планировщик",
"Planner_Settings": "Настройки Планировщика",
"Planning&Shopping": "",
"Postpone": "",
"PostponedUntil": "",
"Preferences": "",
@@ -248,7 +260,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Защищено",
"Proteins": "Белки",
@@ -261,6 +275,9 @@
"Ratings": "Рейтинги",
"Recently_Viewed": "Недавно просмотренные",
"Recipe": "Рецепт",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Книга рецептов",
"Recipe_Image": "Изображение рецепта",
@@ -280,6 +297,7 @@
"Save/Load": "",
"Save_and_View": "Сохранить и показать",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Поиск",
"Search Settings": "Искать настройки",
@@ -298,6 +316,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Категории покупок",
"Shopping_Category": "Категория покупок",
@@ -317,10 +336,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "Начальный день недели",
"Step": "Шаг",
"StepHelp": "",
"Step_Name": "Имя шага",
"Step_Type": "Тип шага",
"Step_start_time": "Время начала шага",
@@ -331,6 +352,8 @@
"Sunday": "",
"Supermarket": "Супермаркет",
"SupermarketCategoriesOnly": "Только категории супермаркетов",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"Supermarkets": "Супермаркеты",
"System": "",
"Table": "",
@@ -349,6 +372,8 @@
"Undefined": "Неизвестно",
"Unit": "Единица измерения",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Единицы измерения",
"Units": "Единицы",
"Unrated": "Без рейтинга",
@@ -360,7 +385,10 @@
"UrlListSubtitle": "",
"Url_Import": "Импорт гиперссылки",
"User": "Пользователь",
"UserFileHelp": "",
"UserHelp": "",
"View": "Просмотр",
"ViewLogHelp": "",
"View_Recipes": "Просмотр рецепта",
"Viewed": "",
"Waiting": "Ожидание",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -26,10 +27,12 @@
"Auto_Sort_Help": "Vse sestavine prestavi v najprimernejši korak.",
"Automate": "Avtomatiziraj",
"Automation": "Avtomatizacija",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -55,6 +58,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopiraj",
@@ -72,6 +76,7 @@
"Current_Period": "Trenutno obdobje",
"Data_Import_Info": "Izboljšajte svoj prostor z uvozom seznama živil, enot in drugega, ker je pripravila skupnost, ter s tem izboljšajte svojo zbirko receptov.",
"Database": "",
"DatabaseHelp": "",
"Date": "Datum",
"Default": "",
"DelayFor": "Zamakni za {hours} ur",
@@ -116,6 +121,7 @@
"FinishedAt": "",
"First": "",
"Food": "Hrana",
"FoodHelp": "",
"FoodInherit": "Podedovana polja hrane",
"FoodNotOnHand": "Nimaš {food} v roki.",
"FoodOnHand": "Imaš {food} v roki.",
@@ -145,6 +151,7 @@
"Ingredient": "",
"Ingredient Editor": "Urejevalnik Sestavin",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Ta sestavina je v tvojem nakupovalnem listku.",
"Ingredients": "Sestavine",
"Inherit": "Podeduj",
@@ -153,9 +160,11 @@
"Instruction_Replace": "Zamenjaj Navodila",
"Instructions": "Navodila",
"InstructionsEditHelp": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"KeywordHelp": "",
"Keyword_Alias": "Vzdevek ključne besede",
"Keywords": "Ključne besede",
"Last": "",
@@ -170,7 +179,9 @@
"Make_Ingredient": "Ustvari sestavino",
"ManageSubscription": "",
"Manage_Books": "Upravljaj knjige",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Načrt obroka",
"Meal_Plan_Days": "Načrt za prihodnje obroke",
"Meal_Type": "Tip obroka",
@@ -229,6 +240,7 @@
"Plan_Show_How_Many_Periods": "Koliko obdobij prikažem",
"Planner": "Planer",
"Planner_Settings": "Nastavitve planerja",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -242,7 +254,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Proteins": "Beljakovine",
"QuickEntry": "Hitri vnos",
@@ -252,6 +266,9 @@
"Rating": "Ocena",
"Recently_Viewed": "Nazadnje videno",
"Recipe": "Recept",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Knjiga receptov",
"Recipe_Image": "Slika recepta",
@@ -270,6 +287,7 @@
"Save/Load": "",
"Save_and_View": "Shrani in poglej",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Iskanje",
"Search Settings": "Išči nastavitev",
@@ -287,6 +305,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Kategorije nakupa",
"Shopping_Category": "Kategorija nakupa",
@@ -306,10 +325,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "Začetni dan v tednu",
"Step": "Korak",
"StepHelp": "",
"Step_Name": "Ime koraka",
"Step_Type": "Tip koraka",
"Step_start_time": "Začetni čas koraka",
@@ -321,6 +342,8 @@
"Sunday": "",
"Supermarket": "Supermarket",
"SupermarketCategoriesOnly": "Prikaži samo trgovinske kategorije",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Ime trgovine",
"System": "",
"Table": "",
@@ -339,6 +362,8 @@
"Undefined": "Nedefiniran",
"Unit": "Enota",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Vzdevek enote",
"Unrated": "Neocenjeno",
"Up": "",
@@ -354,7 +379,10 @@
"Use_Plural_Food_Simple": "",
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"UserFileHelp": "",
"UserHelp": "",
"View": "Pogled",
"ViewLogHelp": "",
"View_Recipes": "Preglej recepte",
"Viewed": "",
"Waiting": "Čakanje",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Konto",
"Actions": "",
@@ -34,11 +35,13 @@
"Auto_Sort_Help": "Flytta alla ingredienser till det bästa passande steget.",
"Automate": "Automatisera",
"Automation": "Automatisering",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Tillbaka",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Bokmärke",
"BookmarkletHelp1": "",
@@ -74,6 +77,7 @@
"Conversion": "Omvandling",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopiera",
@@ -105,6 +109,7 @@
"CustomThemeHelp": "Skriv över nuvarande tema genom att ladda upp en anpassad CSS-fil.",
"Data_Import_Info": "Förbättra din samling genom att importera en framtagen lista av livsmedel, enheter och mer för att förbättra din recept-samling.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Datatyp",
"Date": "Datum",
"Day": "Dag",
@@ -168,6 +173,7 @@
"First": "",
"First_name": "Förnamn",
"Food": "Livsmedel",
"FoodHelp": "",
"FoodInherit": "Ärftliga livsmedels fält",
"FoodNotOnHand": "Du har inte {food} hemma.",
"FoodOnHand": "Du har {food} hemma.",
@@ -211,6 +217,7 @@
"Ingredient Editor": "Ingrediensredigerare",
"Ingredient Overview": "Ingrediensöversikt",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Denna ingrediens finns i din inköpslista.",
"Ingredients": "Ingredienser",
"Inherit": "Ärva",
@@ -222,11 +229,13 @@
"Instructions": "Instruktioner",
"InstructionsEditHelp": "",
"Internal": "Intern",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Inbjudningar",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Nyckelord",
"KeywordHelp": "",
"Keyword_Alias": "Nyckelord alias",
"Keywords": "Nyckelord",
"Language": "Språk",
@@ -245,7 +254,9 @@
"ManageSubscription": "",
"Manage_Books": "Hantera böcker",
"Manage_Emails": "Hantera mejladresser",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Måltidsplanering",
"Meal_Plan_Days": "Framtida måltidsplaner",
"Meal_Type": "Måltidstyp",
@@ -325,6 +336,7 @@
"Planned": "Planerad",
"Planner": "Planerare",
"Planner_Settings": "Planerare inställningar",
"Planning&Shopping": "",
"Plural": "Plural",
"Postpone": "",
"PostponedUntil": "",
@@ -341,7 +353,9 @@
"Properties_Food_Amount": "Egenskaper Livsmedel Mängd",
"Properties_Food_Unit": "Egenskaper Livsmedel Enhet",
"Property": "Egendom",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Egendom redigerare",
"Protected": "Skyddad",
"Proteins": "Protein",
@@ -355,6 +369,9 @@
"Ratings": "Betyg",
"Recently_Viewed": "Nyligen visade",
"Recipe": "Recept",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Receptbok",
"Recipe_Image": "Receptbild",
@@ -375,6 +392,7 @@
"Save/Load": "",
"Save_and_View": "Spara & visa",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Sök",
"Search Settings": "Sökinställningar",
@@ -397,6 +415,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "Dålig uppkoppling, inväntar synkronisering...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Shopping kategorier",
"Shopping_Category": "Shopping kategori",
@@ -421,6 +440,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "Vissa kosmetiska inställningar kan ändras av hushålls-administratörer och skriver över klientinställningar för det hushållet.",
"Split": "",
@@ -428,6 +448,7 @@
"StartDate": "Startdatum",
"Starting_Day": "Startdag i veckan",
"Step": "Steg",
"StepHelp": "",
"Step_Name": "Stegets namn",
"Step_Type": "Stegets typ",
"Step_start_time": "Steg starttid",
@@ -442,6 +463,8 @@
"Sunday": "",
"Supermarket": "Mataffär",
"SupermarketCategoriesOnly": "Endast mataffärskategorier",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Mataffärens namn",
"Supermarkets": "Mataffärer",
"System": "",
@@ -466,6 +489,8 @@
"Undo": "Ångra",
"Unit": "Enhet",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Enhetsalias",
"Unit_Replace": "Ersätt enhet",
"Units": "Enheter",
@@ -490,10 +515,13 @@
"Use_Plural_Unit_Always": "Använd alltid pluralform för enhet",
"Use_Plural_Unit_Simple": "Använd pluralform för enhet dynamiskt",
"User": "Användare",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Användarnamn",
"Users": "Användare",
"Valid Until": "Giltig till",
"View": "Visa",
"ViewLogHelp": "",
"View_Recipes": "Visa recept",
"Viewed": "",
"Waiting": "Väntan",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "Hesap",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "Tüm malzemeleri en uygun adıma taşı.",
"Automate": "Otomatikleştir",
"Automation": "Otomasyon",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "Geri",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "Yer İmi",
"BookmarkletHelp1": "",
@@ -73,6 +76,7 @@
"Conversion": "Dönüşüm",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Kopyala",
@@ -104,6 +108,7 @@
"CustomThemeHelp": "Özel bir CSS dosyası yükleyerek seçilen temanın stillerini geçersiz kılın.",
"Data_Import_Info": "Tarif koleksiyonunuzu geliştirmek için topluluk tarafından oluşturulmuş yiyecek, birim ve daha fazlasını olduğu listeleri içeri aktararak Alanlarınızı genişletin.",
"Database": "",
"DatabaseHelp": "",
"Datatype": "Veri tipi",
"Date": "Tarih",
"Day": "Gün",
@@ -167,6 +172,7 @@
"First": "",
"First_name": "İsim",
"Food": "Yiyecek",
"FoodHelp": "",
"FoodInherit": "Yiyeceğin Devralınabileceği Alanlar",
"FoodNotOnHand": "Elinizde {food} yok.",
"FoodOnHand": "Elinizde {food} var.",
@@ -210,6 +216,7 @@
"Ingredient Editor": "Malzeme Düzenleyici",
"Ingredient Overview": "Malzeme Genel Bakış",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Bu malzeme alışveriş listenizde.",
"Ingredients": "Malzemeler",
"Inherit": "Devral",
@@ -221,11 +228,13 @@
"Instructions": "Talimatlar",
"InstructionsEditHelp": "",
"Internal": "Dahili",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "Davetler",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "Anahtar Kelime",
"KeywordHelp": "",
"Keyword_Alias": "Anahtar Kelime Takma Adı",
"Keywords": "Anahtar Kelimeler",
"Language": "Dil",
@@ -244,7 +253,9 @@
"ManageSubscription": "",
"Manage_Books": "Kitapları Yönet",
"Manage_Emails": "E-postaları Yönet",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "Yemek Planı",
"Meal_Plan_Days": "Gelecek yemek planları",
"Meal_Type": "Yemek türü",
@@ -324,6 +335,7 @@
"Planned": "Planlanan",
"Planner": "Planlayıcı",
"Planner_Settings": "Planlayıcı ayarları",
"Planning&Shopping": "",
"Plural": "Çoğul",
"Postpone": "",
"PostponedUntil": "",
@@ -340,7 +352,9 @@
"Properties_Food_Amount": "Özellikler Yiyecek Miktar",
"Properties_Food_Unit": "Özellikler Yiyecek Birim",
"Property": "Özellik",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "Özellik Editörü",
"Protected": "Korumalı",
"Proteins": "Proteinler",
@@ -354,6 +368,9 @@
"Ratings": "Derecelendirmeler",
"Recently_Viewed": "Son Görüntülenen",
"Recipe": "Tarif",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Yemek Tarifi Kitabı",
"Recipe_Image": "Tarif Resmi",
@@ -374,6 +391,7 @@
"Save/Load": "",
"Save_and_View": "Kaydet & Görüntüle",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Ara",
"Search Settings": "Arama Ayarları",
@@ -396,6 +414,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "Kötü bağlantı, senkronizasyon bekleniyor...",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Alışveriş Kategorileri",
"Shopping_Category": "Alışveriş Kategorisi",
@@ -420,6 +439,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "Bazı kozmetik ayarlar alan yöneticileri tarafından değiştirilebilir ve o alanın istemci ayarlarını geçersiz kılar.",
"Split": "",
@@ -427,6 +447,7 @@
"StartDate": "Başlangıç Tarihi",
"Starting_Day": "Haftanın başlangıç günü",
"Step": "Adım",
"StepHelp": "",
"Step_Name": "Adım Adı",
"Step_Type": "Adım Tipi",
"Step_start_time": "Adım başlangıç zamanı",
@@ -441,6 +462,8 @@
"Sunday": "",
"Supermarket": "Market",
"SupermarketCategoriesOnly": "Yalnızca Süpermarket Kategorileri",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "Süpermarket Adı",
"Supermarkets": "Marketler",
"System": "",
@@ -465,6 +488,8 @@
"Undo": "Geri Al",
"Unit": "Birim",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "Birim Takma Adı",
"Unit_Replace": "Birim Değiştir",
"Units": "Birimler",
@@ -489,10 +514,13 @@
"Use_Plural_Unit_Always": "Birimler için her zaman çoğul biçimi seç",
"Use_Plural_Unit_Simple": "Birim için dinamik olarak çoğul biçimi kullanın",
"User": "Kullanıcı",
"UserFileHelp": "",
"UserHelp": "",
"Username": "Kullanıcı Adı",
"Users": "Kullanıcılar",
"Valid Until": "Geçerlilik Tarihi",
"View": "Görüntüle",
"ViewLogHelp": "",
"View_Recipes": "Tarifleri Görüntüle",
"Viewed": "",
"Waiting": "Bekleniyor",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -30,10 +31,12 @@
"Auto_Sort_Help": "Перемістити всі інгредієнти до більш підходящого кроку.",
"Automate": "Автоматично",
"Automation": "Автоматизація",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "",
"BookmarkletHelp1": "",
@@ -63,6 +66,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "Копіювати",
@@ -84,6 +88,7 @@
"Current_Period": "Теперішній Період",
"Custom Filter": "",
"Database": "",
"DatabaseHelp": "",
"Date": "Дата",
"Decimals": "Десятки",
"Default": "",
@@ -133,6 +138,7 @@
"FinishedAt": "",
"First": "",
"Food": "Їжа",
"FoodHelp": "",
"FoodInherit": "Пола Успадкованої Їжі",
"FoodNotOnHand": "У вас немає {food} на руках.",
"FoodOnHand": "Ви маєте {food} на руках.",
@@ -171,6 +177,7 @@
"Ingredient": "",
"Ingredient Editor": "Редактор Інгредієнтів",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "Цей інгредієнт є в вашому списку покупок.",
"Ingredients": "Інгредієнти",
"Inherit": "Успадкувати",
@@ -181,10 +188,12 @@
"Instructions": "Інструкції",
"InstructionsEditHelp": "",
"Internal": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "",
"KeywordHelp": "",
"Keyword_Alias": "",
"Keywords": "Ключові слова",
"Language": "Мова",
@@ -199,7 +208,9 @@
"Make_Ingredient": "",
"ManageSubscription": "",
"Manage_Books": "Управління Книжкою",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "План Харчування",
"Meal_Plan_Days": "Майбутній план харчування",
"Meal_Type": "Тип страви",
@@ -267,6 +278,7 @@
"Planned": "",
"Planner": "Планувальний",
"Planner_Settings": "Налаштування планувальника",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -280,7 +292,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Protected": "Захищено",
"Proteins": "Білки",
@@ -294,6 +308,9 @@
"Ratings": "",
"Recently_Viewed": "Нещодавно переглянуті",
"Recipe": "Рецепт",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "Книга Рецептів",
"Recipe_Image": "Зображення Рецепту",
@@ -314,6 +331,7 @@
"Save/Load": "",
"Save_and_View": "Зберегти і Подивитися",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "Пошук",
"Search Settings": "Налаштування Пошуку",
@@ -333,6 +351,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "Категорії Покупок",
"Shopping_Category": "Категорія Покупок",
@@ -353,10 +372,12 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Starting_Day": "Початковий день тижня",
"Step": "Крок",
"StepHelp": "",
"Step_Name": "Ім'я Кроку",
"Step_Type": "Тип Кроку",
"Step_start_time": "Час початку кроку",
@@ -369,6 +390,8 @@
"Sunday": "",
"Supermarket": "Супермаркет",
"SupermarketCategoriesOnly": "Тільки Категорії Супермаркету",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "",
"Supermarkets": "",
"System": "",
@@ -390,6 +413,8 @@
"Undefined": "Невідомо",
"Unit": "Одиниця",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "",
"Units": "",
"Unrated": "Без рейтингу",
@@ -407,7 +432,10 @@
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"User": "",
"UserFileHelp": "",
"UserHelp": "",
"View": "",
"ViewLogHelp": "",
"View_Recipes": "Подивитися Рецепт",
"Viewed": "",
"Waiting": "Очікування",

View File

@@ -2,6 +2,7 @@
"AI": "",
"AIImportSubtitle": "",
"API": "API",
"AccessTokenHelp": "",
"Access_Token": "",
"Account": "账户",
"Actions": "",
@@ -33,11 +34,13 @@
"Auto_Sort_Help": "将所有食材移动到最恰当的步骤。",
"Automate": "自动化",
"Automation": "自动化",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"Back": "后退",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"Bookmarklet": "书签",
"BookmarkletHelp1": "",
@@ -72,6 +75,7 @@
"Conversion": "转换",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "复制",
@@ -102,6 +106,7 @@
"CustomThemeHelp": "通过上传自定义 CSS 文件覆盖所选主题的样式。",
"Data_Import_Info": "通过导入社区精选的食物、单位等列表来增强您的空间,以提升您的食谱收藏。",
"Database": "",
"DatabaseHelp": "",
"Datatype": "数据类型",
"Date": "日期",
"Day": "天",
@@ -163,6 +168,7 @@
"First": "",
"First_name": "名",
"Food": "食物",
"FoodHelp": "",
"FoodInherit": "食物可继承的字段",
"FoodNotOnHand": "你还没有 {food}。",
"FoodOnHand": "你手上有 {food}。",
@@ -206,6 +212,7 @@
"Ingredient Editor": "食材编辑器",
"Ingredient Overview": "食材概述",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"IngredientInShopping": "此食材已在购物清单中。",
"Ingredients": "食材",
"Inherit": "继承",
@@ -217,11 +224,13 @@
"Instructions": "说明",
"InstructionsEditHelp": "",
"Internal": "内部",
"InviteLinkHelp": "",
"Invite_Link": "",
"Invites": "邀请",
"Key_Ctrl": "Ctrl",
"Key_Shift": "Shift",
"Keyword": "关键词",
"KeywordHelp": "",
"Keyword_Alias": "关键词别名",
"Keywords": "关键词",
"Language": "语言",
@@ -240,7 +249,9 @@
"ManageSubscription": "",
"Manage_Books": "管理书籍",
"Manage_Emails": "管理电子邮件",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "用餐计划",
"Meal_Plan_Days": "未来的用餐计划",
"Meal_Type": "用餐类型",
@@ -319,6 +330,7 @@
"Planned": "计划",
"Planner": "计划者",
"Planner_Settings": "计划者设置",
"Planning&Shopping": "",
"Plural": "复数",
"Postpone": "",
"PostponedUntil": "",
@@ -335,7 +347,9 @@
"Properties_Food_Amount": "食物数量属性",
"Properties_Food_Unit": "食品单位属性",
"Property": "属性",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "属性编辑器",
"Protected": "受保护的",
"Proteins": "蛋白质",
@@ -349,6 +363,9 @@
"Ratings": "等级",
"Recently_Viewed": "最近浏览",
"Recipe": "食谱",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Book": "食谱书",
"Recipe_Image": "食谱图像",
@@ -369,6 +386,7 @@
"Save/Load": "",
"Save_and_View": "保存并查看",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "搜索",
"Search Settings": "搜索设置",
@@ -391,6 +409,7 @@
"ShopNow": "",
"ShoppingBackgroundSyncWarning": "网络状况不佳,正在等待进行同步……",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"Shopping_Categories": "购物类别",
"Shopping_Category": "购物类别",
@@ -414,6 +433,7 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Space_Cosmetic_Settings": "空间管理员可以更改某些装饰设置,并将覆盖该空间的客户端设置。",
"Split": "",
@@ -421,6 +441,7 @@
"StartDate": "开始日期",
"Starting_Day": "一周中的第一天",
"Step": "步骤",
"StepHelp": "",
"Step_Name": "步骤名",
"Step_Type": "步骤类型",
"Step_start_time": "步骤开始时间",
@@ -435,6 +456,8 @@
"Sunday": "",
"Supermarket": "超市",
"SupermarketCategoriesOnly": "仅限超市类别",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"SupermarketName": "超市名",
"Supermarkets": "超市",
"System": "",
@@ -457,6 +480,8 @@
"Undo": "撤销",
"Unit": "单位",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Unit_Alias": "单位别名",
"Unit_Replace": "单位替换",
"Units": "单位",
@@ -480,10 +505,13 @@
"Use_Plural_Unit_Always": "单位总是使用复数形式",
"Use_Plural_Unit_Simple": "动态使用单位的复数形式",
"User": "用户",
"UserFileHelp": "",
"UserHelp": "",
"Username": "用户名",
"Users": "用户",
"Valid Until": "有效期限",
"View": "查看",
"ViewLogHelp": "",
"View_Recipes": "查看食谱",
"Viewed": "",
"Waiting": "等待",

View File

@@ -1,6 +1,7 @@
{
"AI": "",
"AIImportSubtitle": "",
"AccessTokenHelp": "",
"Access_Token": "",
"Actions": "",
"Activity": "",
@@ -14,10 +15,12 @@
"Admin": "",
"AllRecipes": "",
"AppImportSubtitle": "",
"AutomationHelp": "",
"Available": "",
"AvailableCategories": "",
"BaseUnit": "",
"BaseUnitHelp": "",
"Basics": "",
"Book": "",
"BookmarkletHelp1": "",
"BookmarkletHelp2": "",
@@ -35,6 +38,7 @@
"Continue": "",
"ConversionsHelp": "",
"CookLog": "",
"CookLogHelp": "",
"Cooked": "",
"Copied": "",
"Copy": "",
@@ -43,6 +47,7 @@
"CreatedBy": "",
"Ctrl+K": "",
"Database": "",
"DatabaseHelp": "",
"Date": "",
"Default": "",
"Delete": "",
@@ -69,6 +74,7 @@
"Files": "",
"FinishedAt": "",
"First": "",
"FoodHelp": "",
"Friday": "",
"GettingStarted": "",
"HeaderWarning": "",
@@ -84,9 +90,12 @@
"Information": "",
"Ingredient": "",
"IngredientEditorHelp": "",
"IngredientHelp": "",
"Ingredients": "",
"InstructionsEditHelp": "",
"InviteLinkHelp": "",
"Invite_Link": "",
"KeywordHelp": "",
"Keywords": "",
"Last": "",
"Link": "",
@@ -97,7 +106,9 @@
"Logout": "",
"ManageSubscription": "",
"Manage_Books": "管理書籍",
"MealPlanHelp": "",
"MealPlanShoppingHelp": "",
"MealTypeHelp": "",
"Meal_Plan": "膳食計劃",
"MergeAutomateHelp": "",
"Messages": "",
@@ -119,6 +130,7 @@
"Order": "",
"Owner": "",
"PerPage": "",
"Planning&Shopping": "",
"Plural": "",
"Postpone": "",
"PostponedUntil": "",
@@ -128,7 +140,9 @@
"Profile": "",
"PropertiesFoodHelp": "",
"Properties_Food_Unit": "",
"PropertyHelp": "",
"PropertyType": "",
"PropertyTypeHelp": "",
"Property_Editor": "",
"Proteins": "",
"RandomOrder": "",
@@ -136,6 +150,9 @@
"RateLimitHelp": "",
"Rating": "",
"Recently_Viewed": "",
"RecipeBookEntryHelp": "",
"RecipeBookHelp": "",
"RecipeHelp": "",
"RecipeStepsHelp": "",
"Recipe_Image": "食譜圖片",
"Recipes_per_page": "每頁食譜",
@@ -150,6 +167,7 @@
"Save/Load": "",
"Save_and_View": "儲存並查看",
"SavedSearch": "",
"SavedSearchHelp": "",
"ScalableNumber": "",
"Search": "",
"SelectAll": "",
@@ -166,6 +184,7 @@
"ShopLater": "",
"ShopNow": "",
"ShoppingListEntry": "",
"ShoppingListEntryHelp": "",
"ShoppingListRecipe": "",
"ShowMealPlanOnStartPage": "",
"Show_as_header": "顯示為標題",
@@ -178,9 +197,11 @@
"SpaceLimitReached": "",
"SpaceMemberHelp": "",
"SpaceMembers": "",
"SpaceMembersHelp": "",
"SpaceSettings": "",
"Split": "",
"Step": "",
"StepHelp": "",
"Step_start_time": "步驟開始時間",
"Steps": "",
"StepsOverview": "",
@@ -188,6 +209,8 @@
"Success": "",
"Sunday": "",
"Supermarket": "",
"SupermarketCategoryHelp": "",
"SupermarketHelp": "",
"System": "",
"Table": "",
"Table_of_Contents": "目錄",
@@ -198,6 +221,8 @@
"Today": "",
"Tuesday": "",
"UnitConversion": "",
"UnitConversionHelp": "",
"UnitHelp": "",
"Up": "",
"Update": "",
"UpgradeNow": "",
@@ -209,6 +234,9 @@
"Use_Plural_Food_Simple": "",
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"UserFileHelp": "",
"UserHelp": "",
"ViewLogHelp": "",
"View_Recipes": "",
"Viewed": "",
"Waiting": "",

View File

@@ -0,0 +1,74 @@
<template>
<v-container>
<v-breadcrumbs density="compact">
<v-breadcrumbs-item :to="{name: 'DatabasePage'}">{{ $t('Database') }}</v-breadcrumbs-item>
</v-breadcrumbs>
<v-row>
<v-col>
<v-card prepend-icon="fa-solid fa-folder-tree" :title="$t('Database')">
<template #subtitle>
<div class="text-wrap">
{{ $t('DatabaseHelp') }}
</div>
</template>
</v-card>
</v-col>
</v-row>
<v-row>
<v-col>
<h2>{{ $t('Basics') }}</h2>
</v-col>
</v-row>
<v-row dense>
<database-model-col model="Food"></database-model-col>
<database-model-col model="Unit"></database-model-col>
<database-model-col model="Keyword"></database-model-col>
<database-model-col model="PropertyType"></database-model-col>
</v-row>
<v-row>
<v-col>
<h2>{{ $t('Planning&Shopping') }}</h2>
</v-col>
</v-row>
<v-row dense>
<database-model-col model="Supermarket"></database-model-col>
<database-model-col model="SupermarketCategory"></database-model-col>
<database-model-col model="MealType"></database-model-col>
</v-row>
<v-row>
<v-col>
<h2>{{ $t('Miscellaneous') }}</h2>
</v-col>
</v-row>
<v-row dense>
<database-model-col model="UnitConversion"></database-model-col>
<database-model-col model="Automation"></database-model-col>
<database-model-col model="UserFile"></database-model-col>
<database-model-col model="CustomFilter"></database-model-col>
<database-link-col :to="{name: 'IngredientEditorPage'}"
prepend-icon="fa-solid fa-table-list"
:title="$t('Ingredient Editor')"
:subtitle="$t('IngredientEditorHelp')">
</database-link-col>
</v-row>
</v-container>
</template>
<script setup lang="ts">
import DatabaseModelCol from "@/components/display/DatabaseModelCol.vue";
import DatabaseLinkCol from "@/components/display/DatabaseLinkCol.vue";
</script>
<style scoped>
</style>

View File

@@ -10,7 +10,7 @@
</v-card>
</v-col>
</v-row>
<v-row>
<v-row dense>
<v-col>
<component :is="editorComponent" :item-id="id" @delete="objectDeleted" @create="(obj: any) => objectCreated(obj)"></component>
</v-col>

View File

@@ -2,30 +2,29 @@
<v-container>
<v-row>
<v-col>
<span class="text-h4">
<v-btn icon="fa-solid fa-caret-down" variant="tonal">
<i class="fa-solid fa-caret-down"></i>
<v-menu activator="parent">
<v-list>
<v-list-item
v-for="m in getListModels()"
@click="changeModel(m)"
:active="m.name == genericModel.model.name"
>
<template #prepend><v-icon :icon="m.icon"></v-icon> </template>
{{ $t(m.localizationKey) }}
</v-list-item>
</v-list>
</v-menu>
</v-btn>
<i :class="genericModel.model.icon"></i>
{{ $t(genericModel.model.localizationKey) }}</span>
<v-btn class="float-right" icon="$create" color="create">
<i class="fa-solid fa-plus"></i>
<model-edit-dialog :close-after-create="false" :model="model"
@create="loadItems({page: tablePage, itemsPerPage: useUserPreferenceStore().deviceSettings.general_tableItemsPerPage, search: searchQuery})"></model-edit-dialog>
</v-btn>
<v-card>
<v-card-text class="pt-2 pb-2">
<v-btn variant="flat" @click="router.go(-1)" prepend-icon="fa-solid fa-arrow-left">{{ $t('Back') }}</v-btn>
</v-card-text>
</v-card>
</v-col>
</v-row>
<v-row dense>
<v-col>
<v-card :prepend-icon="genericModel.model.icon" :title="$t(genericModel.model.localizationKey)">
<template #subtitle v-if="TFood.localizationKeyDescription">
<div class="text-wrap">
{{ $t(TFood.localizationKeyDescription) }}
</div>
</template>
<template #append>
<v-btn class="float-right" icon="$create" color="create">
<i class="fa-solid fa-plus"></i>
<model-edit-dialog :close-after-create="false" :model="model"
@create="loadItems({page: tablePage, itemsPerPage: useUserPreferenceStore().deviceSettings.general_tableItemsPerPage, search: searchQuery})"></model-edit-dialog>
</v-btn>
</template>
</v-card>
</v-col>
</v-row>
<v-row>
@@ -85,7 +84,7 @@ import {
EditorSupportedModels,
GenericModel,
getGenericModelFromString, getListModels,
Model,
Model, TFood,
} from "@/types/Models";
import {VDataTable} from "vuetify/components";
import {useUrlSearchParams} from "@vueuse/core";
@@ -171,7 +170,7 @@ function loadItems(options: VDataTableUpdateOptions) {
if (tablePage.value != options.page) {
tablePage.value = options.page
}
if(route.query.page == undefined){
if (route.query.page == undefined) {
router.replace({name: 'ModelListPage', params: {model: props.model}, query: {page: options.page}})
} else {
router.push({name: 'ModelListPage', params: {model: props.model}, query: {page: options.page}})

View File

@@ -86,6 +86,7 @@ type ModelTableHeaders = {
export type Model = {
name: string,
localizationKey: string,
localizationKeyDescription: string,
icon: string,
toStringKeys: Array<string>,
@@ -164,6 +165,7 @@ export type EditorSupportedTypes =
export const TFood = {
name: 'Food',
localizationKey: 'Food',
localizationKeyDescription: 'FoodHelp',
icon: 'fa-solid fa-carrot',
isPaginated: true,
@@ -183,6 +185,7 @@ registerModel(TFood)
export const TUnit = {
name: 'Unit',
localizationKey: 'Unit',
localizationKeyDescription: 'UnitHelp',
icon: 'fa-solid fa-scale-balanced',
isPaginated: true,
@@ -201,6 +204,7 @@ registerModel(TUnit)
export const TKeyword = {
name: 'Keyword',
localizationKey: 'Keyword',
localizationKeyDescription: 'KeywordHelp',
icon: 'fa-solid fa-tags',
isPaginated: true,
@@ -218,6 +222,7 @@ registerModel(TKeyword)
export const TRecipe = {
name: 'Recipe',
localizationKey: 'Recipe',
localizationKeyDescription: 'RecipeHelp',
icon: 'fa-solid fa-book',
isPaginated: true,
@@ -235,6 +240,7 @@ registerModel(TRecipe)
export const TStep = {
name: 'Step',
localizationKey: 'Step',
localizationKeyDescription: 'StepHelp',
icon: 'fa-solid fa-list',
isPaginated: true,
@@ -252,6 +258,7 @@ registerModel(TStep)
export const TIngredient = {
name: 'Ingredient',
localizationKey: 'Ingredient',
localizationKeyDescription: 'IngredientHelp',
icon: 'fa-solid fa-jar',
isPaginated: true,
@@ -269,6 +276,7 @@ registerModel(TIngredient)
export const TMealType = {
name: 'MealType',
localizationKey: 'Meal_Type',
localizationKeyDescription: 'MealTypeHelp',
icon: 'fa-solid fa-utensils',
isPaginated: true,
@@ -284,6 +292,7 @@ registerModel(TMealType)
export const TMealPlan = {
name: 'MealPlan',
localizationKey: 'Meal_Plan',
localizationKeyDescription: 'MealPlanHelp',
icon: 'fa-solid fa-calendar-days',
isPaginated: true,
@@ -302,6 +311,7 @@ registerModel(TMealPlan)
export const TRecipeBook = {
name: 'RecipeBook',
localizationKey: 'Recipe_Book',
localizationKeyDescription: 'RecipeBookHelp',
icon: 'fa-solid fa-book-bookmark',
isPaginated: true,
@@ -319,6 +329,7 @@ registerModel(TRecipeBook)
export const TRecipeBookEntry = {
name: 'RecipeBookEntry',
localizationKey: 'Recipe_Book',
localizationKeyDescription: 'RecipeBookEntryHelp',
icon: 'fa-solid fa-book-bookmark',
isPaginated: true,
@@ -337,6 +348,7 @@ registerModel(TRecipeBookEntry)
export const TCustomFilter = {
name: 'CustomFilter',
localizationKey: 'SavedSearch',
localizationKeyDescription: 'SavedSearchHelp',
icon: 'fa-solid fa-filter',
isPaginated: true,
@@ -352,6 +364,7 @@ registerModel(TCustomFilter)
export const TUser = {
name: 'User',
localizationKey: 'User',
localizationKeyDescription: 'UserHelp',
icon: 'fa-solid fa-user',
disableCreate: true,
@@ -373,6 +386,7 @@ registerModel(TUser)
export const TSupermarket = {
name: 'Supermarket',
localizationKey: 'Supermarket',
localizationKeyDescription: 'SupermarketHelp',
icon: 'fa-solid fa-store',
isPaginated: true,
@@ -388,6 +402,7 @@ registerModel(TSupermarket)
export const TSupermarketCategory = {
name: 'SupermarketCategory',
localizationKey: 'Category',
localizationKeyDescription: 'SupermarketCategoryHelp',
icon: 'fa-solid fa-boxes-stacked',
isPaginated: true,
@@ -404,6 +419,7 @@ registerModel(TSupermarketCategory)
export const TShoppingListEntry = {
name: 'ShoppingListEntry',
localizationKey: 'ShoppingListEntry',
localizationKeyDescription: 'ShoppingListEntryHelp',
icon: 'fa-solid fa-list-check',
disableListView: true,
@@ -422,6 +438,7 @@ registerModel(TShoppingListEntry)
export const TPropertyType = {
name: 'PropertyType',
localizationKey: 'Property',
localizationKeyDescription: 'PropertyTypeHelp',
icon: 'fa-solid fa-database',
isPaginated: true,
@@ -437,6 +454,7 @@ registerModel(TPropertyType)
export const TProperty = {
name: 'Property',
localizationKey: 'Property',
localizationKeyDescription: 'PropertyHelp',
icon: 'fa-solid fa-database',
disableListView: true,
@@ -454,6 +472,7 @@ registerModel(TProperty)
export const TUnitConversion = {
name: 'UnitConversion',
localizationKey: 'UnitConversion',
localizationKeyDescription: 'UnitConversionHelp',
icon: 'fa-solid fa-exchange-alt',
isPaginated: true,
@@ -473,6 +492,7 @@ registerModel(TUnitConversion)
export const TUserFile = {
name: 'UserFile',
localizationKey: 'File',
localizationKeyDescription: 'UserFileHelp',
icon: 'fa-solid fa-file',
isPaginated: true,
@@ -488,6 +508,7 @@ registerModel(TUserFile)
export const TAutomation = {
name: 'Automation',
localizationKey: 'Automation',
localizationKeyDescription: 'AutomationHelp',
icon: 'fa-solid fa-robot',
isPaginated: true,
@@ -504,6 +525,7 @@ registerModel(TAutomation)
export const TCookLog = {
name: 'CookLog',
localizationKey: 'CookLog',
localizationKeyDescription: 'CookLogHelp',
icon: 'fa-solid fa-table-list',
isPaginated: true,
@@ -520,6 +542,7 @@ registerModel(TCookLog)
export const TViewLog = {
name: 'ViewLog',
localizationKey: 'History',
localizationKeyDescription: 'ViewLogHelp',
icon: 'fa-solid fa-clock-rotate-left',
isPaginated: true,
@@ -536,6 +559,7 @@ registerModel(TViewLog)
export const TAccessToken = {
name: 'AccessToken',
localizationKey: 'Access_Token',
localizationKeyDescription: 'AccessTokenHelp',
icon: 'fa-solid fa-key',
disableListView: true,
@@ -553,6 +577,7 @@ registerModel(TAccessToken)
export const TUserSpace = {
name: 'UserSpace',
localizationKey: 'SpaceMembers',
localizationKeyDescription: 'SpaceMembersHelp',
icon: 'fa-solid fa-users',
disableListView: true,
@@ -571,6 +596,7 @@ registerModel(TUserSpace)
export const TInviteLink = {
name: 'InviteLink',
localizationKey: 'Invite_Link',
localizationKeyDescription: 'InviteLinkHelp',
icon: 'fa-solid fa-link',
disableListView: true,
@@ -589,6 +615,7 @@ registerModel(TInviteLink)
export const TFoodInheritField = {
name: 'FoodInheritField',
localizationKey: 'FoodInherit',
localizationKeyDescription: 'food_inherit_info',
icon: 'fa-solid fa-list',
disableListView: true,