mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 06:23:34 -07:00
Merge branch 'dev' of https://github.com/hay-kot/mealie into feature/additional-db-uri-support
This commit is contained in:
commit
c06c691485
38 changed files with 315 additions and 131 deletions
|
@ -32,7 +32,7 @@ export const userAPI = {
|
||||||
let response = await apiReq.post(
|
let response = await apiReq.post(
|
||||||
authURLs.token,
|
authURLs.token,
|
||||||
formData,
|
formData,
|
||||||
function() { return i18n.t('user.incorrect-username-or-password'); },
|
null,
|
||||||
function() { return i18n.t('user.user-successfully-logged-in'); }
|
function() { return i18n.t('user.user-successfully-logged-in'); }
|
||||||
);
|
);
|
||||||
return response;
|
return response;
|
||||||
|
|
|
@ -98,11 +98,10 @@ export default {
|
||||||
this.clear();
|
this.clear();
|
||||||
this.$store.commit("setToken", response.data.access_token);
|
this.$store.commit("setToken", response.data.access_token);
|
||||||
this.$emit("logged-in");
|
this.$emit("logged-in");
|
||||||
|
let user = await api.users.self();
|
||||||
|
this.$store.commit("setUserData", user);
|
||||||
}
|
}
|
||||||
|
|
||||||
let user = await api.users.self();
|
|
||||||
this.$store.commit("setUserData", user);
|
|
||||||
|
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
<v-list-item-group color="primary">
|
<v-list-item-group color="primary">
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="(item, i) in recipe.recipeIngredient"
|
v-for="(item, i) in recipe.recipe_ingredient"
|
||||||
:key="i"
|
:key="i"
|
||||||
>
|
>
|
||||||
<v-list-item-content>
|
<v-list-item-content>
|
||||||
|
@ -75,8 +75,9 @@ export default {
|
||||||
this.getRawIngredients();
|
this.getRawIngredients();
|
||||||
},
|
},
|
||||||
getRawIngredients() {
|
getRawIngredients() {
|
||||||
|
this.rawIngredients = [];
|
||||||
this.ingredients.forEach(element => {
|
this.ingredients.forEach(element => {
|
||||||
this.rawIngredients.push(element.recipeIngredient);
|
this.rawIngredients.push(element.recipe_ingredient);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.rawIngredients = this.rawIngredients.flat();
|
this.rawIngredients = this.rawIngredients.flat();
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<base-dialog
|
<base-dialog
|
||||||
@submit="addAsset"
|
@submit="addAsset"
|
||||||
title="New Asset"
|
:title="$t('recipe.new-asset')"
|
||||||
:title-icon="newAsset.icon"
|
:title-icon="newAsset.icon"
|
||||||
>
|
>
|
||||||
<template v-slot:open="{ open }">
|
<template v-slot:open="{ open }">
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title class="py-2">
|
<v-card-title class="py-2">
|
||||||
<div>
|
<div>
|
||||||
Recipe Settings
|
{{$t('recipe.recipe-settings')}}
|
||||||
</div>
|
</div>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-divider class="mx-2"></v-divider>
|
<v-divider class="mx-2"></v-divider>
|
||||||
|
@ -39,14 +39,18 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
value: Object,
|
value: Object,
|
||||||
},
|
},
|
||||||
data: () => ({
|
|
||||||
labels: {
|
computed: {
|
||||||
public: "Public Recipe",
|
labels() {
|
||||||
showNutrition: "Show Nutrition Values",
|
return {
|
||||||
showAssets: "Show Assets",
|
public: this.$t('recipe.public-recipe'),
|
||||||
landscapeView: "Landscape View (Coming Soon)",
|
showNutrition: this.$t('recipe.show-nutrition-values'),
|
||||||
},
|
showAssets: this.$t('recipe.show-assets'),
|
||||||
}),
|
landscapeView: this.$t('recipe.landscape-view-coming-soon'),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
methods: {},
|
methods: {},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -23,11 +23,11 @@
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<slot name="card-actions">
|
<slot name="card-actions">
|
||||||
<v-btn text color="grey" @click="dialog = false">
|
<v-btn text color="grey" @click="dialog = false">
|
||||||
Cancel
|
{{$t('general.cancel')}}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<v-btn color="success" @click="submitEvent">
|
<v-btn color="success" @click="submitEvent">
|
||||||
Submit
|
{{$t('general.submit')}}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</slot>
|
</slot>
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
|
|
|
@ -49,7 +49,7 @@ export default {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
icon: "mdi-account",
|
icon: "mdi-account",
|
||||||
title: "Login",
|
title: this.$t('user.login'),
|
||||||
restricted: false,
|
restricted: false,
|
||||||
login: true,
|
login: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredienser",
|
"ingredients": "Ingredienser",
|
||||||
"instructions": "Instruktioner",
|
"instructions": "Instruktioner",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Bemærk",
|
"note": "Bemærk",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Opskriftens navn",
|
"recipe-name": "Opskriftens navn",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Portioner",
|
"servings": "Portioner",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Trin: {step}",
|
"step-index": "Trin: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -13,21 +13,21 @@
|
||||||
"demo": "Demo",
|
"demo": "Demo",
|
||||||
"demo-status": "Demostatus",
|
"demo-status": "Demostatus",
|
||||||
"development": "Entwicklung",
|
"development": "Entwicklung",
|
||||||
"download-log": "Download Log",
|
"download-log": "Protokoll herunterladen",
|
||||||
"download-recipe-json": "Download Recipe JSON",
|
"download-recipe-json": "Rezept JSON herunterladen",
|
||||||
"not-demo": "Keine Demo",
|
"not-demo": "Keine Demo",
|
||||||
"production": "Production",
|
"production": "Production",
|
||||||
"sqlite-file": "SQLite Datei",
|
"sqlite-file": "SQLite Datei",
|
||||||
"version": "Version"
|
"version": "Version"
|
||||||
},
|
},
|
||||||
"category": {
|
"category": {
|
||||||
"category-created": "Category created",
|
"category-created": "Kategorie angelegt",
|
||||||
"category-creation-failed": "Category creation failed",
|
"category-creation-failed": "Anlegen der Kategorie fehlgeschlagen",
|
||||||
"category-deleted": "Category Deleted",
|
"category-deleted": "Kategorie entfernt",
|
||||||
"category-deletion-failed": "Category deletion failed",
|
"category-deletion-failed": "Entfernen der Kategorie fehlgeschlagen",
|
||||||
"category-filter": "Category Filter",
|
"category-filter": "Kategoriefilter",
|
||||||
"category-update-failed": "Category update failed",
|
"category-update-failed": "Aktualisieren der Kategorie fehlgeschlagen",
|
||||||
"category-updated": "Category updated"
|
"category-updated": "Kategorie aktualisiert"
|
||||||
},
|
},
|
||||||
"general": {
|
"general": {
|
||||||
"apply": "Anwenden",
|
"apply": "Anwenden",
|
||||||
|
@ -42,11 +42,11 @@
|
||||||
"edit": "Bearbeiten",
|
"edit": "Bearbeiten",
|
||||||
"enabled": "Aktiviert",
|
"enabled": "Aktiviert",
|
||||||
"exception": "Exception",
|
"exception": "Exception",
|
||||||
"failed-count": "Failed: {count}",
|
"failed-count": "Fehlgeschlagen: {count}",
|
||||||
"failure-uploading-file": "Failure uploading file",
|
"failure-uploading-file": "Fehler beim Hochladen der Datei",
|
||||||
"field-required": "Erforderliches Feld",
|
"field-required": "Erforderliches Feld",
|
||||||
"file-folder-not-found": "File/folder not found",
|
"file-folder-not-found": "Datei/Ordner nicht gefunden",
|
||||||
"file-uploaded": "File uploaded",
|
"file-uploaded": "Datei hochgeladen",
|
||||||
"filter": "Filter",
|
"filter": "Filter",
|
||||||
"friday": "Freitag",
|
"friday": "Freitag",
|
||||||
"get": "Holen",
|
"get": "Holen",
|
||||||
|
@ -59,11 +59,11 @@
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"no": "Nein",
|
"no": "Nein",
|
||||||
"ok": "Okay",
|
"ok": "Okay",
|
||||||
"options": "Options:",
|
"options": "Optionen:",
|
||||||
"random": "Zufall",
|
"random": "Zufall",
|
||||||
"recent": "Neueste",
|
"recent": "Neueste",
|
||||||
"recipes": "Rezepte",
|
"recipes": "Rezepte",
|
||||||
"rename-object": "Rename {0}",
|
"rename-object": "{0} umbenennen",
|
||||||
"reset": "Zurücksetzen",
|
"reset": "Zurücksetzen",
|
||||||
"saturday": "Samstag",
|
"saturday": "Samstag",
|
||||||
"save": "Speichern",
|
"save": "Speichern",
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
"sort-alphabetically": "A-Z",
|
"sort-alphabetically": "A-Z",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"submit": "Einfügen",
|
"submit": "Einfügen",
|
||||||
"success-count": "Success: {count}",
|
"success-count": "Erfolgreich: {count}",
|
||||||
"sunday": "Sonntag",
|
"sunday": "Sonntag",
|
||||||
"templates": "Templates:",
|
"templates": "Templates:",
|
||||||
"themes": "Themen",
|
"themes": "Themen",
|
||||||
|
@ -87,23 +87,23 @@
|
||||||
"yes": "Ja"
|
"yes": "Ja"
|
||||||
},
|
},
|
||||||
"group": {
|
"group": {
|
||||||
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
"are-you-sure-you-want-to-delete-the-group": "Bist du dir sicher, dass du die Gruppe <b>{groupName}<b/> löschen möchtest?",
|
||||||
"cannot-delete-default-group": "Cannot delete default group",
|
"cannot-delete-default-group": "Standardgruppe kann nicht gelöscht werden",
|
||||||
"cannot-delete-group-with-users": "Cannot delete group with users",
|
"cannot-delete-group-with-users": "Gruppe mit Benutzern kann nicht gelöscht werden",
|
||||||
"confirm-group-deletion": "Confirm Group Deletion",
|
"confirm-group-deletion": "Bestätige das Löschen der Gruppe",
|
||||||
"create-group": "Create Group",
|
"create-group": "Gruppe anlegen",
|
||||||
"error-updating-group": "Error updating group",
|
"error-updating-group": "Fehler beim Aktualisieren der Gruppe",
|
||||||
"group": "Group",
|
"group": "Gruppe",
|
||||||
"group-deleted": "Group deleted",
|
"group-deleted": "Gruppe gelöscht",
|
||||||
"group-deletion-failed": "Group deletion failed",
|
"group-deletion-failed": "Löschen der Gruppe fehlgeschlagen",
|
||||||
"group-id-with-value": "Group ID: {groupID}",
|
"group-id-with-value": "Gruppenkennung: {groupID}",
|
||||||
"group-name": "Group Name",
|
"group-name": "Name der Gruppe",
|
||||||
"group-not-found": "Group not found",
|
"group-not-found": "Gruppe nicht gefunden",
|
||||||
"groups": "Groups",
|
"groups": "Gruppen",
|
||||||
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
"groups-can-only-be-set-by-administrators": "Gruppen können nur von Administratoren gesetzt werden",
|
||||||
"user-group": "User Group",
|
"user-group": "Benutzergruppe",
|
||||||
"user-group-created": "User Group Created",
|
"user-group-created": "Benutzergruppe angelegt",
|
||||||
"user-group-creation-failed": "User Group Creation Failed"
|
"user-group-creation-failed": "Anlegen der Benutzergruppe fehlgeschlagen"
|
||||||
},
|
},
|
||||||
"meal-plan": {
|
"meal-plan": {
|
||||||
"create-a-new-meal-plan": "Neuen Essensplan erstellen",
|
"create-a-new-meal-plan": "Neuen Essensplan erstellen",
|
||||||
|
@ -114,14 +114,14 @@
|
||||||
"group": "Gruppe (Beta)",
|
"group": "Gruppe (Beta)",
|
||||||
"meal-planner": "Essensplaner",
|
"meal-planner": "Essensplaner",
|
||||||
"meal-plans": "Essenspläne",
|
"meal-plans": "Essenspläne",
|
||||||
"mealplan-created": "Mealplan created",
|
"mealplan-created": "Essensplan angelegt",
|
||||||
"mealplan-creation-failed": "Mealplan creation failed",
|
"mealplan-creation-failed": "Anlegen des Essensplans fehlgeschlagen",
|
||||||
"mealplan-deleted": "Mealplan Deleted",
|
"mealplan-deleted": "Essensplan entfernt",
|
||||||
"mealplan-deletion-failed": "Mealplan deletion failed",
|
"mealplan-deletion-failed": "Entfernen des Essensplans fehlgeschlagen",
|
||||||
"mealplan-update-failed": "Mealplan update failed",
|
"mealplan-update-failed": "Aktualisieren des Essensplans fehlgeschlagen",
|
||||||
"mealplan-updated": "Mealplan Updated",
|
"mealplan-updated": "Essensplan aktualisiert",
|
||||||
"no-meal-plan-defined-yet": "No meal plan defined yet",
|
"no-meal-plan-defined-yet": "Noch kein Essensplan definiert",
|
||||||
"no-meal-planned-for-today": "No meal planned for today",
|
"no-meal-planned-for-today": "Kein Essen für heute geplant",
|
||||||
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Nur Rezepte dieser Kategorien werden in Essensplänen verwendet",
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Nur Rezepte dieser Kategorien werden in Essensplänen verwendet",
|
||||||
"planner": "Planer",
|
"planner": "Planer",
|
||||||
"quick-week": "Quick Week",
|
"quick-week": "Quick Week",
|
||||||
|
@ -133,7 +133,7 @@
|
||||||
"description": "Übertrage Daten aus Chowdown",
|
"description": "Übertrage Daten aus Chowdown",
|
||||||
"title": "Chowdown"
|
"title": "Chowdown"
|
||||||
},
|
},
|
||||||
"migration-data-removed": "Migration data removed",
|
"migration-data-removed": "Migrationsdaten entfernt",
|
||||||
"nextcloud": {
|
"nextcloud": {
|
||||||
"description": "Übertrage Daten aus einer Nextcloud Cookbook Instanz",
|
"description": "Übertrage Daten aus einer Nextcloud Cookbook Instanz",
|
||||||
"title": "Nextcloud Cookbook"
|
"title": "Nextcloud Cookbook"
|
||||||
|
@ -152,20 +152,20 @@
|
||||||
"page": {
|
"page": {
|
||||||
"all-recipes": "Alle Rezepte",
|
"all-recipes": "Alle Rezepte",
|
||||||
"home-page": "Startseite",
|
"home-page": "Startseite",
|
||||||
"new-page-created": "New page created",
|
"new-page-created": "Neue Seite angelegt",
|
||||||
"page-creation-failed": "Page creation failed",
|
"page-creation-failed": "Anlegen der Seite fehlgeschlagen",
|
||||||
"page-deleted": "Page deleted",
|
"page-deleted": "Seite entfernt",
|
||||||
"page-deletion-failed": "Page deletion failed",
|
"page-deletion-failed": "Entfernen der Seite fehlgeschlagen",
|
||||||
"page-update-failed": "Page update failed",
|
"page-update-failed": "Aktualisieren der Seite fehlgeschlagen",
|
||||||
"page-updated": "Page updated",
|
"page-updated": "Seite aktualisiert",
|
||||||
"pages-update-failed": "Pages update failed",
|
"pages-update-failed": "Aktualisieren der Seiten fehlgeschlagen",
|
||||||
"pages-updated": "Pages updated",
|
"pages-updated": "Seiten aktualisiert",
|
||||||
"recent": "Neueste"
|
"recent": "Neueste"
|
||||||
},
|
},
|
||||||
"recipe": {
|
"recipe": {
|
||||||
"add-key": "Schlüssel hinzufügen",
|
"add-key": "Schlüssel hinzufügen",
|
||||||
"api-extras": "API Extras",
|
"api-extras": "API Extras",
|
||||||
"assets": "Assets",
|
"assets": "Anlagen",
|
||||||
"calories": "Kalorien",
|
"calories": "Kalorien",
|
||||||
"calories-suffix": "Kalorien",
|
"calories-suffix": "Kalorien",
|
||||||
"carbohydrate-content": "Kohlenhydrate",
|
"carbohydrate-content": "Kohlenhydrate",
|
||||||
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Zutaten",
|
"ingredients": "Zutaten",
|
||||||
"instructions": "Anweisungen",
|
"instructions": "Anweisungen",
|
||||||
"key-name-required": "Schlüsselname benötigt",
|
"key-name-required": "Schlüsselname benötigt",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "mg",
|
"milligrams": "mg",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "Neuer Schlüsselname",
|
"new-key-name": "Neuer Schlüsselname",
|
||||||
"no-white-space-allowed": "Kein Leerzeichen erlaubt",
|
"no-white-space-allowed": "Kein Leerzeichen erlaubt",
|
||||||
"note": "Notiz",
|
"note": "Notiz",
|
||||||
|
@ -192,21 +194,25 @@
|
||||||
"perform-time": "Kochzeit",
|
"perform-time": "Kochzeit",
|
||||||
"prep-time": "Vorbereitung",
|
"prep-time": "Vorbereitung",
|
||||||
"protein-content": "Eiweiß",
|
"protein-content": "Eiweiß",
|
||||||
"recipe-created": "Recipe created",
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-created": "Rezept angelegt",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-creation-failed": "Anlegen des Rezepts fehlgeschlagen",
|
||||||
|
"recipe-deleted": "Rezept entfernt",
|
||||||
"recipe-image": "Rezeptbild",
|
"recipe-image": "Rezeptbild",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Rezeptbild aktualisiert",
|
||||||
"recipe-name": "Rezeptname",
|
"recipe-name": "Rezeptname",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-update-failed": "Aktualisieren des Rezepts fehlgeschlagen",
|
||||||
|
"recipe-updated": "Rezept aktualisiert",
|
||||||
"servings": "Portionen",
|
"servings": "Portionen",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Natrium",
|
"sodium-content": "Natrium",
|
||||||
"step-index": "Schritt {step}:",
|
"step-index": "Schritt {step}:",
|
||||||
"sugar-content": "Zucker",
|
"sugar-content": "Zucker",
|
||||||
"title": "Titel",
|
"title": "Titel",
|
||||||
"total-time": "Gesamtzeit",
|
"total-time": "Gesamtzeit",
|
||||||
"unable-to-delete-recipe": "Unable to Delete Recipe",
|
"unable-to-delete-recipe": "Rezept kann nicht gelöscht werden",
|
||||||
"view-recipe": "Rezept anschauen"
|
"view-recipe": "Rezept anschauen"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
|
@ -225,15 +231,15 @@
|
||||||
"admin-settings": "Admin Einstellungen",
|
"admin-settings": "Admin Einstellungen",
|
||||||
"available-backups": "Verfügbare Sicherungen",
|
"available-backups": "Verfügbare Sicherungen",
|
||||||
"backup": {
|
"backup": {
|
||||||
"backup-created-at-response-export_path": "Backup Created at {path}",
|
"backup-created-at-response-export_path": "Sicherung erstellt unter {path}",
|
||||||
"backup-deleted": "Backup deleted",
|
"backup-deleted": "Sicherung gelöscht",
|
||||||
"backup-tag": "Sicherungsbeschreibung",
|
"backup-tag": "Sicherungsbeschreibung",
|
||||||
"create-heading": "Sicherung erstellen",
|
"create-heading": "Sicherung erstellen",
|
||||||
"error-creating-backup-see-log-file": "Error Creating Backup. See Log File",
|
"error-creating-backup-see-log-file": "Fehler beim Erstellen der Sicherung. Siehe Protokolldatei",
|
||||||
"full-backup": "Komplettsicherung",
|
"full-backup": "Komplettsicherung",
|
||||||
"import-summary": "Import Summary",
|
"import-summary": "Zusammenfassung des Imports",
|
||||||
"partial-backup": "Teilsicherung",
|
"partial-backup": "Teilsicherung",
|
||||||
"unable-to-delete-backup": "Unable to Delete Backup."
|
"unable-to-delete-backup": "Sicherung kann nicht gelöscht werden."
|
||||||
},
|
},
|
||||||
"backup-and-exports": "Sicherungen",
|
"backup-and-exports": "Sicherungen",
|
||||||
"backup-info": "Sicherungen werden mitsamt aller Bilder im Standard-JSON-Format in das Dateisystem exportiert. In deinem Sicherungsordner findest du eine ZIP Datei, welche sämtliche JSON's deiner Rezepte und die Bilder aus der Datenbank enthält. Solltest du eine Markdown Datei auswählen werden diese ebenfalls im ZIP gespeichert. Um eine Sicherung zurückzuspielen muss die entsprechende ZIP-Datei im Sicherungsordner liegen. Automatische Sicherungen finden jeden Tag um 3 Uhr morgens statt.",
|
"backup-info": "Sicherungen werden mitsamt aller Bilder im Standard-JSON-Format in das Dateisystem exportiert. In deinem Sicherungsordner findest du eine ZIP Datei, welche sämtliche JSON's deiner Rezepte und die Bilder aus der Datenbank enthält. Solltest du eine Markdown Datei auswählen werden diese ebenfalls im ZIP gespeichert. Um eine Sicherung zurückzuspielen muss die entsprechende ZIP-Datei im Sicherungsordner liegen. Automatische Sicherungen finden jeden Tag um 3 Uhr morgens statt.",
|
||||||
|
@ -242,7 +248,7 @@
|
||||||
"custom-pages": "Benutzerdefinierte Seiten",
|
"custom-pages": "Benutzerdefinierte Seiten",
|
||||||
"edit-page": "Seite bearbeiten",
|
"edit-page": "Seite bearbeiten",
|
||||||
"first-day-of-week": "Woche beginnt am",
|
"first-day-of-week": "Woche beginnt am",
|
||||||
"group-settings-updated": "Group Settings Updated",
|
"group-settings-updated": "Gruppeneinstellungen aktualisiert",
|
||||||
"homepage": {
|
"homepage": {
|
||||||
"all-categories": "Alle Kategorien",
|
"all-categories": "Alle Kategorien",
|
||||||
"card-per-section": "Karten pro Bereich",
|
"card-per-section": "Karten pro Bereich",
|
||||||
|
@ -258,12 +264,12 @@
|
||||||
"migrations": "Migrationen",
|
"migrations": "Migrationen",
|
||||||
"new-page": "Neue Seite",
|
"new-page": "Neue Seite",
|
||||||
"page-name": "Seitenname",
|
"page-name": "Seitenname",
|
||||||
"pages": "Pages",
|
"pages": "Seiten",
|
||||||
"profile": "Profil",
|
"profile": "Profil",
|
||||||
"remove-existing-entries-matching-imported-entries": "Entferne vorhandene Einträge passend zu importierten Einträgen",
|
"remove-existing-entries-matching-imported-entries": "Entferne vorhandene Einträge passend zu importierten Einträgen",
|
||||||
"set-new-time": "Neue Zeit einstellen",
|
"set-new-time": "Neue Zeit einstellen",
|
||||||
"settings-update-failed": "Settings update failed",
|
"settings-update-failed": "Aktualisieren der Einstellungen fehlgeschlagen",
|
||||||
"settings-updated": "Settings updated",
|
"settings-updated": "Einstellungen aktualisiert",
|
||||||
"site-settings": "Seiteneinstellungen",
|
"site-settings": "Seiteneinstellungen",
|
||||||
"theme": {
|
"theme": {
|
||||||
"accent": "Akzent",
|
"accent": "Akzent",
|
||||||
|
@ -274,9 +280,9 @@
|
||||||
"default-to-system": "Standardeinstellung",
|
"default-to-system": "Standardeinstellung",
|
||||||
"delete-theme": "Thema löschen",
|
"delete-theme": "Thema löschen",
|
||||||
"error": "Fehler",
|
"error": "Fehler",
|
||||||
"error-creating-theme-see-log-file": "Error creating theme. See log file.",
|
"error-creating-theme-see-log-file": "Fehler beim Erstellen des Themas. Siehe Protokolldatei.",
|
||||||
"error-deleting-theme": "Error deleting theme",
|
"error-deleting-theme": "Fehler beim Löschen des Themas",
|
||||||
"error-updating-theme": "Error updating theme",
|
"error-updating-theme": "Fehler beim Aktualisieren des Themas",
|
||||||
"info": "Information",
|
"info": "Information",
|
||||||
"light": "Hell",
|
"light": "Hell",
|
||||||
"primary": "Primär",
|
"primary": "Primär",
|
||||||
|
@ -284,12 +290,12 @@
|
||||||
"select-a-theme-from-the-dropdown-or-create-a-new-theme-note-that-the-default-theme-will-be-served-to-all-users-who-have-not-set-a-theme-preference": "Wähle ein Thema aus der Dropdown-Liste oder erstelle ein neues. Beachte, dass das Standard-Thema auf alle Benutzer angewandt wird die keine Einstellung für ein Thema getroffen haben.",
|
"select-a-theme-from-the-dropdown-or-create-a-new-theme-note-that-the-default-theme-will-be-served-to-all-users-who-have-not-set-a-theme-preference": "Wähle ein Thema aus der Dropdown-Liste oder erstelle ein neues. Beachte, dass das Standard-Thema auf alle Benutzer angewandt wird die keine Einstellung für ein Thema getroffen haben.",
|
||||||
"success": "Erfolg",
|
"success": "Erfolg",
|
||||||
"theme": "Thema",
|
"theme": "Thema",
|
||||||
"theme-deleted": "Theme deleted",
|
"theme-deleted": "Thema gelöscht",
|
||||||
"theme-name": "Themenname",
|
"theme-name": "Themenname",
|
||||||
"theme-name-is-required": "Themenname wird benötigt.",
|
"theme-name-is-required": "Themenname wird benötigt.",
|
||||||
"theme-saved": "Theme Saved",
|
"theme-saved": "Thema gespeichert",
|
||||||
"theme-settings": "Themeneinstellungen",
|
"theme-settings": "Themeneinstellungen",
|
||||||
"theme-updated": "Theme updated",
|
"theme-updated": "Thema aktualisiert",
|
||||||
"warning": "Warnung"
|
"warning": "Warnung"
|
||||||
},
|
},
|
||||||
"toolbox": {
|
"toolbox": {
|
||||||
|
@ -310,24 +316,24 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"signup": {
|
"signup": {
|
||||||
"display-name": "Display Name",
|
"display-name": "Anzeigename",
|
||||||
"error-signing-up": "Error Signing Up",
|
"error-signing-up": "Fehler beim Registrieren",
|
||||||
"sign-up": "Sign Up",
|
"sign-up": "Registrieren",
|
||||||
"sign-up-link-created": "Sign up link created",
|
"sign-up-link-created": "Einladungslink angelegt",
|
||||||
"sign-up-link-creation-failed": "Sign up link creation failed",
|
"sign-up-link-creation-failed": "Anlegen des Einladungslinks fehlgeschlagen",
|
||||||
"sign-up-links": "Sign Up Links",
|
"sign-up-links": "Registrierungslinks",
|
||||||
"sign-up-token-deleted": "Sign Up Token Deleted",
|
"sign-up-token-deleted": "Registrierungs-Token entfernt",
|
||||||
"sign-up-token-deletion-failed": "Sign up token deletion failed",
|
"sign-up-token-deletion-failed": "Entfernen des Registrierungs-Tokens fehlgeschlagen",
|
||||||
"welcome-to-mealie": "Welcome to Mealie! To become a user of this instance you are required to have a valid invitation link. If you haven't recieved an invitation you are unable to sign-up. To recieve a link, contact the sites administrator."
|
"welcome-to-mealie": "Willkommen bei Mealie! Um ein Benutzer dieser Instanz zu werden musst du einen gültigen Einladungslink haben. Wenn du keine Einladung erhalten hast kannst du dich nicht registrieren. Wende dich an den Administrator, um einen Link zu erhalten."
|
||||||
},
|
},
|
||||||
"tag": {
|
"tag": {
|
||||||
"tag-created": "Tag created",
|
"tag-created": "Schlagwort angelegt",
|
||||||
"tag-creation-failed": "Tag creation failed",
|
"tag-creation-failed": "Anlegen des Schlagworts fehlgeschlagen",
|
||||||
"tag-deleted": "Tag deleted",
|
"tag-deleted": "Schlagwort entfernt",
|
||||||
"tag-deletion-failed": "Tag deletion failed",
|
"tag-deletion-failed": "Entfernen des Schlagworts fehlgeschlagen",
|
||||||
"tag-update-failed": "Tag update failed",
|
"tag-update-failed": "Aktualisieren des Schlagworts fehlgeschlagen",
|
||||||
"tag-updated": "Tag updated",
|
"tag-updated": "Schlagwort aktualisiert",
|
||||||
"tags": "Tags"
|
"tags": "Schlagworte"
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"admin": "Admin",
|
"admin": "Admin",
|
||||||
|
@ -343,10 +349,10 @@
|
||||||
"e-mail-must-be-valid": "E-Mail muss valide sein",
|
"e-mail-must-be-valid": "E-Mail muss valide sein",
|
||||||
"edit-user": "Benutzer bearbeiten",
|
"edit-user": "Benutzer bearbeiten",
|
||||||
"email": "E-Mail",
|
"email": "E-Mail",
|
||||||
"error-cannot-delete-super-user": "Error! Cannot Delete Super User",
|
"error-cannot-delete-super-user": "Fehler! Super Benutzer kann nicht gelöscht werden",
|
||||||
"existing-password-does-not-match": "Existing password does not match",
|
"existing-password-does-not-match": "Bestehendes Passwort stimmt nicht überein",
|
||||||
"full-name": "Vollständiger Name",
|
"full-name": "Vollständiger Name",
|
||||||
"incorrect-username-or-password": "Incorrect username or password",
|
"incorrect-username-or-password": "Ungültiger Benutzername oder Passwort",
|
||||||
"link-id": "Linkkennung",
|
"link-id": "Linkkennung",
|
||||||
"link-name": "Linkname",
|
"link-name": "Linkname",
|
||||||
"login": "Anmeldung",
|
"login": "Anmeldung",
|
||||||
|
@ -354,29 +360,29 @@
|
||||||
"new-password": "Neues Passwort",
|
"new-password": "Neues Passwort",
|
||||||
"new-user": "Neuer Benutzer",
|
"new-user": "Neuer Benutzer",
|
||||||
"password": "Passwort",
|
"password": "Passwort",
|
||||||
"password-has-been-reset-to-the-default-password": "Password has been reset to the default password",
|
"password-has-been-reset-to-the-default-password": "Passwort wurde auf das Standardpasswort zurückgesetzt",
|
||||||
"password-must-match": "Passwörter müssen übereinstimmen",
|
"password-must-match": "Passwörter müssen übereinstimmen",
|
||||||
"password-reset-failed": "Password reset failed",
|
"password-reset-failed": "Zurücksetzen des Passworts fehlgeschlagen",
|
||||||
"password-updated": "Password updated",
|
"password-updated": "Passwort aktualisiert",
|
||||||
"reset-password": "Passwort zurücksetzen",
|
"reset-password": "Passwort zurücksetzen",
|
||||||
"sign-in": "Einloggen",
|
"sign-in": "Einloggen",
|
||||||
"total-mealplans": "Alle Essenspläne",
|
"total-mealplans": "Alle Essenspläne",
|
||||||
"total-users": "Alle Benutzer",
|
"total-users": "Alle Benutzer",
|
||||||
"upload-photo": "Foto hochladen",
|
"upload-photo": "Foto hochladen",
|
||||||
"use-8-characters-or-more-for-your-password": "Benutze 8 oder mehr Zeichen für das Passwort",
|
"use-8-characters-or-more-for-your-password": "Benutze 8 oder mehr Zeichen für das Passwort",
|
||||||
"user-created": "User created",
|
"user-created": "Benutzer angelegt",
|
||||||
"user-creation-failed": "User creation failed",
|
"user-creation-failed": "Anlegen des Benutzers fehlgeschlagen",
|
||||||
"user-deleted": "User deleted",
|
"user-deleted": "Benutzer entfernt",
|
||||||
"user-id": "Benutzerkennung",
|
"user-id": "Benutzerkennung",
|
||||||
"user-id-with-value": "Benutzerkennung: {id}",
|
"user-id-with-value": "Benutzerkennung: {id}",
|
||||||
"user-password": "Benutzerpasswort",
|
"user-password": "Benutzerpasswort",
|
||||||
"user-successfully-logged-in": "User Successfully Logged In",
|
"user-successfully-logged-in": "Benutzer erfolgreich angemeldet",
|
||||||
"user-update-failed": "User update failed",
|
"user-update-failed": "Aktualisieren des Benutzers fehlgeschlagen",
|
||||||
"user-updated": "User updated",
|
"user-updated": "Benutzer aktualisiert",
|
||||||
"users": "Benutzer",
|
"users": "Benutzer",
|
||||||
"webhook-time": "Webhook Zeit",
|
"webhook-time": "Webhook Zeit",
|
||||||
"webhooks-enabled": "Webhooks aktiviert",
|
"webhooks-enabled": "Webhooks aktiviert",
|
||||||
"you-are-not-allowed-to-create-a-user": "You are not allowed to create a user",
|
"you-are-not-allowed-to-create-a-user": "Sie sind nicht berechtigt, einen Benutzer anzulegen",
|
||||||
"you-are-not-allowed-to-delete-this-user": "You are not allowed to delete this user"
|
"you-are-not-allowed-to-delete-this-user": "Sie sind nicht berechtigt, diesen Benutzer zu entfernen"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -165,7 +165,7 @@
|
||||||
"recipe": {
|
"recipe": {
|
||||||
"add-key": "Ajouter une clé",
|
"add-key": "Ajouter une clé",
|
||||||
"api-extras": "Extras API",
|
"api-extras": "Extras API",
|
||||||
"assets": "Médias",
|
"assets": "Ressources",
|
||||||
"calories": "Calories",
|
"calories": "Calories",
|
||||||
"calories-suffix": "calories",
|
"calories-suffix": "calories",
|
||||||
"carbohydrate-content": "Glucides",
|
"carbohydrate-content": "Glucides",
|
||||||
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingrédients",
|
"ingredients": "Ingrédients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Un nom de clé est requis",
|
"key-name-required": "Un nom de clé est requis",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrammes",
|
"milligrams": "milligrammes",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "Nouveau nom de clé",
|
"new-key-name": "Nouveau nom de clé",
|
||||||
"no-white-space-allowed": "Aucun espace blanc autorisé",
|
"no-white-space-allowed": "Aucun espace blanc autorisé",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Temps de cuisson",
|
"perform-time": "Temps de cuisson",
|
||||||
"prep-time": "Temps de préparation",
|
"prep-time": "Temps de préparation",
|
||||||
"protein-content": "Protéines",
|
"protein-content": "Protéines",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recette créée",
|
"recipe-created": "Recette créée",
|
||||||
"recipe-creation-failed": "La création de la recette a échoué",
|
"recipe-creation-failed": "La création de la recette a échoué",
|
||||||
"recipe-deleted": "Recette supprimée",
|
"recipe-deleted": "Recette supprimée",
|
||||||
"recipe-image": "Image de la recette",
|
"recipe-image": "Image de la recette",
|
||||||
"recipe-image-updated": "L'image de la recette a été mise à jour",
|
"recipe-image-updated": "L'image de la recette a été mise à jour",
|
||||||
"recipe-name": "Nom de la recette",
|
"recipe-name": "Nom de la recette",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "La mise à jour de la recette a échoué",
|
"recipe-update-failed": "La mise à jour de la recette a échoué",
|
||||||
"recipe-updated": "Recette mise à jour",
|
"recipe-updated": "Recette mise à jour",
|
||||||
"servings": "Portions",
|
"servings": "Portions",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Étape : {step}",
|
"step-index": "Étape : {step}",
|
||||||
"sugar-content": "Sucres",
|
"sugar-content": "Sucres",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingrediënten",
|
"ingredients": "Ingrediënten",
|
||||||
"instructions": "Instructies",
|
"instructions": "Instructies",
|
||||||
"key-name-required": "Sleutelnaam vereist",
|
"key-name-required": "Sleutelnaam vereist",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligram",
|
"milligrams": "milligram",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "Nieuwe sleutelnaam",
|
"new-key-name": "Nieuwe sleutelnaam",
|
||||||
"no-white-space-allowed": "Geen Witruimte Toegestaan",
|
"no-white-space-allowed": "Geen Witruimte Toegestaan",
|
||||||
"note": "Opmerking",
|
"note": "Opmerking",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Kook tijd",
|
"perform-time": "Kook tijd",
|
||||||
"prep-time": "Voorbereidings tijd",
|
"prep-time": "Voorbereidings tijd",
|
||||||
"protein-content": "Eiwitten",
|
"protein-content": "Eiwitten",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recept afbeelding",
|
"recipe-image": "Recept afbeelding",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Receptnaam",
|
"recipe-name": "Receptnaam",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Porties",
|
"servings": "Porties",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Zout",
|
"sodium-content": "Zout",
|
||||||
"step-index": "Stap: {step}",
|
"step-index": "Stap: {step}",
|
||||||
"sugar-content": "Suiker",
|
"sugar-content": "Suiker",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Składniki",
|
"ingredients": "Składniki",
|
||||||
"instructions": "Instrukcje",
|
"instructions": "Instrukcje",
|
||||||
"key-name-required": "Nazwa klucza jest wymagana",
|
"key-name-required": "Nazwa klucza jest wymagana",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "miligram",
|
"milligrams": "miligram",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "Nazwa nowego klucza",
|
"new-key-name": "Nazwa nowego klucza",
|
||||||
"no-white-space-allowed": "Znaki niedrukowalne są niedozwolone",
|
"no-white-space-allowed": "Znaki niedrukowalne są niedozwolone",
|
||||||
"note": "Notatka",
|
"note": "Notatka",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Czas gotowania",
|
"perform-time": "Czas gotowania",
|
||||||
"prep-time": "Czas przyrządzania",
|
"prep-time": "Czas przyrządzania",
|
||||||
"protein-content": "Białka",
|
"protein-content": "Białka",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Zdjęcie do przepisu",
|
"recipe-image": "Zdjęcie do przepisu",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Nazwa przepisu",
|
"recipe-name": "Nazwa przepisu",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Porcje",
|
"servings": "Porcje",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sód",
|
"sodium-content": "Sód",
|
||||||
"step-index": "Krok: {step}",
|
"step-index": "Krok: {step}",
|
||||||
"sugar-content": "Cukry",
|
"sugar-content": "Cukry",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredientes",
|
"ingredients": "Ingredientes",
|
||||||
"instructions": "Instruções",
|
"instructions": "Instruções",
|
||||||
"key-name-required": "Nome da Chave é Obrigatório",
|
"key-name-required": "Nome da Chave é Obrigatório",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "Novo nome da Chave",
|
"new-key-name": "Novo nome da Chave",
|
||||||
"no-white-space-allowed": "Espaço em Branco não Permitido",
|
"no-white-space-allowed": "Espaço em Branco não Permitido",
|
||||||
"note": "Nota",
|
"note": "Nota",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Tempo de Cozedura",
|
"perform-time": "Tempo de Cozedura",
|
||||||
"prep-time": "Tempo de Preparação",
|
"prep-time": "Tempo de Preparação",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Nome da Receita",
|
"recipe-name": "Nome da Receita",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Porções",
|
"servings": "Porções",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Passo: {step}",
|
"step-index": "Passo: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredienser",
|
"ingredients": "Ingredienser",
|
||||||
"instructions": "Instruktioner",
|
"instructions": "Instruktioner",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Anteckning",
|
"note": "Anteckning",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Receptets namn",
|
"recipe-name": "Receptets namn",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Portioner",
|
"servings": "Portioner",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Steg: {step}",
|
"step-index": "Steg: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "Ingredients",
|
"ingredients": "Ingredients",
|
||||||
"instructions": "Instructions",
|
"instructions": "Instructions",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "Cook Time",
|
"perform-time": "Cook Time",
|
||||||
"prep-time": "Prep Time",
|
"prep-time": "Prep Time",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "Recipe Name",
|
"recipe-name": "Recipe Name",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "Servings",
|
"servings": "Servings",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "Step: {step}",
|
"step-index": "Step: {step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "材料",
|
"ingredients": "材料",
|
||||||
"instructions": "做法",
|
"instructions": "做法",
|
||||||
"key-name-required": "必须输入关键字",
|
"key-name-required": "必须输入关键字",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "不允许有空格",
|
"no-white-space-allowed": "不允许有空格",
|
||||||
"note": "备注",
|
"note": "备注",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "烹饪时间",
|
"perform-time": "烹饪时间",
|
||||||
"prep-time": "准备时间",
|
"prep-time": "准备时间",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "食谱名称",
|
"recipe-name": "食谱名称",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "份量",
|
"servings": "份量",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "步骤:{step}",
|
"step-index": "步骤:{step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -180,7 +180,9 @@
|
||||||
"ingredients": "材料",
|
"ingredients": "材料",
|
||||||
"instructions": "做法",
|
"instructions": "做法",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "Key Name Required",
|
||||||
|
"landscape-view-coming-soon": "Landscape View (Coming Soon)",
|
||||||
"milligrams": "milligrams",
|
"milligrams": "milligrams",
|
||||||
|
"new-asset": "New Asset",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
"note": "貼士",
|
"note": "貼士",
|
||||||
|
@ -192,15 +194,19 @@
|
||||||
"perform-time": "烹飪時間 / 執行時間",
|
"perform-time": "烹飪時間 / 執行時間",
|
||||||
"prep-time": "準備時間",
|
"prep-time": "準備時間",
|
||||||
"protein-content": "Protein",
|
"protein-content": "Protein",
|
||||||
|
"public-recipe": "Public Recipe",
|
||||||
"recipe-created": "Recipe created",
|
"recipe-created": "Recipe created",
|
||||||
"recipe-creation-failed": "Recipe creation failed",
|
"recipe-creation-failed": "Recipe creation failed",
|
||||||
"recipe-deleted": "Recipe deleted",
|
"recipe-deleted": "Recipe deleted",
|
||||||
"recipe-image": "Recipe Image",
|
"recipe-image": "Recipe Image",
|
||||||
"recipe-image-updated": "Recipe image updated",
|
"recipe-image-updated": "Recipe image updated",
|
||||||
"recipe-name": "食譜名稱",
|
"recipe-name": "食譜名稱",
|
||||||
|
"recipe-settings": "Recipe Settings",
|
||||||
"recipe-update-failed": "Recipe update failed",
|
"recipe-update-failed": "Recipe update failed",
|
||||||
"recipe-updated": "Recipe updated",
|
"recipe-updated": "Recipe updated",
|
||||||
"servings": "份量",
|
"servings": "份量",
|
||||||
|
"show-assets": "Show Assets",
|
||||||
|
"show-nutrition-values": "Show Nutrition Values",
|
||||||
"sodium-content": "Sodium",
|
"sodium-content": "Sodium",
|
||||||
"step-index": "步驟:{step}",
|
"step-index": "步驟:{step}",
|
||||||
"sugar-content": "Sugar",
|
"sugar-content": "Sugar",
|
||||||
|
|
|
@ -6,35 +6,35 @@ const state = {
|
||||||
value: "en-US",
|
value: "en-US",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Danish",
|
name: "Dansk (Danish)",
|
||||||
value: "da-DK",
|
value: "da-DK",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "French",
|
name: "Français (French)",
|
||||||
value: "fr-FR",
|
value: "fr-FR",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Polish",
|
name: "Polski (Polish)",
|
||||||
value: "pl-PL",
|
value: "pl-PL",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Swedish",
|
name: "Svenska (Swedish)",
|
||||||
value: "sv-SE",
|
value: "sv-SE",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "简体中文",
|
name: "简体中文 (Chinese simplified)",
|
||||||
value: "zh-CN",
|
value: "zh-CN",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "繁體中文",
|
name: "繁體中文 (Chinese traditional)",
|
||||||
value: "zh-TW",
|
value: "zh-TW",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "German",
|
name: "Deutsch (German)",
|
||||||
value: "de-DE",
|
value: "de-DE",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Português",
|
name: "Português (Portuguese)",
|
||||||
value: "pt-PT",
|
value: "pt-PT",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue