mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-20 21:43:36 -07:00
Merge branch 'dev' of https://github.com/hay-kot/mealie into feature/editor-improvements
This commit is contained in:
commit
38b620a876
41 changed files with 5763 additions and 195 deletions
|
@ -10,6 +10,12 @@ To deploy docker on your local network it is highly recommended to use docker to
|
||||||
- linux/arm/v7
|
- linux/arm/v7
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
|
|
||||||
|
!!! tip "Fix for linux/arm/v7 container on Raspberry Pi 4: 'Fatal Python error: init_interp_main: can't initialize time'"
|
||||||
|
Update the host RP4 using [instructions](linuxserver/docker-papermerge#4 (comment)), summarized here:
|
||||||
|
```shell
|
||||||
|
wget http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.1-1_armhf.deb
|
||||||
|
sudo dpkg -i libseccomp2_2.5.1-1_armhf.deb
|
||||||
|
```
|
||||||
|
|
||||||
## Quick Start - Docker CLI
|
## Quick Start - Docker CLI
|
||||||
Deployment with the Docker CLI can be done with `docker run` and specify the database type, in this case `sqlite`, setting the exposed port `9925`, mounting the current directory, and pull the latest image. After the image is up an running you can navigate to http://your.ip.addres:9925 and you'll should see mealie up and running!
|
Deployment with the Docker CLI can be done with `docker run` and specify the database type, in this case `sqlite`, setting the exposed port `9925`, mounting the current directory, and pull the latest image. After the image is up an running you can navigate to http://your.ip.addres:9925 and you'll should see mealie up and running!
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<h2 class="mt-1 mb-1">{{ $t("settings.homepage.home-page") }}</h2>
|
<h2 class="mt-1 mb-1">{{ $t("settings.homepage.home-page") }}</h2>
|
||||||
<v-row align="center" justify="center" dense class="mb-n7 pb-n5">
|
<v-row align="center" justify="center" dense class="mb-n7 pb-n5">
|
||||||
<v-col cols="1">
|
|
||||||
<LanguageMenu @select-lang="writeLang" :site-settings="true" />
|
|
||||||
</v-col>
|
|
||||||
<v-col cols="12" sm="3" md="2">
|
<v-col cols="12" sm="3" md="2">
|
||||||
<v-switch
|
<v-switch
|
||||||
v-model="settings.showRecent"
|
v-model="settings.showRecent"
|
||||||
|
@ -119,6 +116,25 @@
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
<v-card-text>
|
||||||
|
<h2 class="mt-1 mb-4">{{$t('settings.locale-settings')}}</h2>
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="1">
|
||||||
|
<LanguageMenu @select-lang="writeLang" :site-settings="true" />
|
||||||
|
</v-col>
|
||||||
|
<v-col sm="3">
|
||||||
|
<v-select
|
||||||
|
dense
|
||||||
|
prepend-icon="mdi-calendar-week-begin"
|
||||||
|
v-model="settings.firstDayOfWeek"
|
||||||
|
:items="allDays"
|
||||||
|
item-text="name"
|
||||||
|
item-value="value"
|
||||||
|
:label="$t('settings.first-day-of-week')"
|
||||||
|
/>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<v-btn color="success" @click="saveSettings" class="mr-2">
|
<v-btn color="success" @click="saveSettings" class="mr-2">
|
||||||
|
@ -145,6 +161,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
settings: {
|
settings: {
|
||||||
language: "en",
|
language: "en",
|
||||||
|
firstDayOfWeek: 0,
|
||||||
showRecent: null,
|
showRecent: null,
|
||||||
cardsPerSection: null,
|
cardsPerSection: null,
|
||||||
categories: [],
|
categories: [],
|
||||||
|
@ -158,11 +175,42 @@ export default {
|
||||||
allCategories() {
|
allCategories() {
|
||||||
return this.$store.getters.getAllCategories;
|
return this.$store.getters.getAllCategories;
|
||||||
},
|
},
|
||||||
|
allDays() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: this.$t('general.sunday'),
|
||||||
|
value: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('general.monday'),
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('general.tuesday'),
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('general.wednesday'),
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('general.thursday'),
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('general.friday'),
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('general.saturday'),
|
||||||
|
value: 6,
|
||||||
|
}
|
||||||
|
];
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
writeLang(val) {
|
writeLang(val) {
|
||||||
this.$store.commit("setLang", val);
|
|
||||||
this.settings.language = val;
|
this.settings.language = val;
|
||||||
},
|
},
|
||||||
deleteCategoryfromDatabase(category) {
|
deleteCategoryfromDatabase(category) {
|
||||||
|
@ -176,6 +224,9 @@ export default {
|
||||||
},
|
},
|
||||||
async saveSettings() {
|
async saveSettings() {
|
||||||
await api.siteSettings.update(this.settings);
|
await api.siteSettings.update(this.settings);
|
||||||
|
this.$store.dispatch("setLang", {
|
||||||
|
currentVueComponent: this,
|
||||||
|
language: this.settings.language });
|
||||||
this.getOptions();
|
this.getOptions();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -31,11 +31,11 @@
|
||||||
v-on="on"
|
v-on="on"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</template>
|
</template>
|
||||||
<v-date-picker
|
<DatePicker
|
||||||
v-model="startDate"
|
v-model="startDate"
|
||||||
no-title
|
no-title
|
||||||
@input="menu2 = false"
|
@input="menu2 = false"
|
||||||
></v-date-picker>
|
/>
|
||||||
</v-menu>
|
</v-menu>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" lg="6" md="6" sm="12">
|
<v-col cols="12" lg="6" md="6" sm="12">
|
||||||
|
@ -59,11 +59,11 @@
|
||||||
v-on="on"
|
v-on="on"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</template>
|
</template>
|
||||||
<v-date-picker
|
<DatePicker
|
||||||
v-model="endDate"
|
v-model="endDate"
|
||||||
no-title
|
no-title
|
||||||
@input="menu2 = false"
|
@input="menu2 = false"
|
||||||
></v-date-picker>
|
/>
|
||||||
</v-menu>
|
</v-menu>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
@ -87,12 +87,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const CREATE_EVENT = "created";
|
const CREATE_EVENT = "created";
|
||||||
|
import DatePicker from "../UI/DatePicker";
|
||||||
import { api } from "@/api";
|
import { api } from "@/api";
|
||||||
import utils from "@/utils";
|
import utils from "@/utils";
|
||||||
import MealPlanCard from "./MealPlanCard";
|
import MealPlanCard from "./MealPlanCard";
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
MealPlanCard,
|
MealPlanCard,
|
||||||
|
DatePicker,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
31
frontend/src/components/UI/DatePicker.vue
Normal file
31
frontend/src/components/UI/DatePicker.vue
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<template>
|
||||||
|
<v-date-picker
|
||||||
|
:first-day-of-week="firstDayOfWeek"
|
||||||
|
v-on="$listeners"
|
||||||
|
></v-date-picker>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { api } from "@/api";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
firstDayOfWeek: 0,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getOptions();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
async getOptions() {
|
||||||
|
const settings = await api.siteSettings.get();
|
||||||
|
this.firstDayOfWeek = settings.firstDayOfWeek;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
|
@ -47,7 +47,7 @@ export default {
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
name: "English",
|
name: "English",
|
||||||
value: "en",
|
value: "en-US",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
@ -72,7 +72,9 @@ export default {
|
||||||
if (this.siteSettings) {
|
if (this.siteSettings) {
|
||||||
this.$emit(SELECT_EVENT, selectedLanguage);
|
this.$emit(SELECT_EVENT, selectedLanguage);
|
||||||
} else {
|
} else {
|
||||||
this.$store.commit("setLang", selectedLanguage);
|
this.$store.dispatch("setLang", {
|
||||||
|
currentVueComponent: this,
|
||||||
|
language: selectedLanguage });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
258
frontend/src/locales/messages/af-ZA.json
Normal file
258
frontend/src/locales/messages/af-ZA.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/ar-SA.json
Normal file
258
frontend/src/locales/messages/ar-SA.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/ca-ES.json
Normal file
258
frontend/src/locales/messages/ca-ES.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/cs-CZ.json
Normal file
258
frontend/src/locales/messages/cs-CZ.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,7 +6,7 @@
|
||||||
"new-recipe": {
|
"new-recipe": {
|
||||||
"from-url": "Fra URL",
|
"from-url": "Fra URL",
|
||||||
"recipe-url": "URL på opskrift",
|
"recipe-url": "URL på opskrift",
|
||||||
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
"url-form-hint": "Kopiér og indsæt et link fra din foretrukne opskrifts hjemmeside",
|
||||||
"error-message": "Der opstod en fejl under indlæsning af opskriften. Tjek loggen og debug/last_recipe.json for at fejlsøge problemet.",
|
"error-message": "Der opstod en fejl under indlæsning af opskriften. Tjek loggen og debug/last_recipe.json for at fejlsøge problemet.",
|
||||||
"bulk-add": "Bulk Tilføj",
|
"bulk-add": "Bulk Tilføj",
|
||||||
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Indsæt dine opskriftsdata. \nHver linje behandles som et element på en liste"
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Indsæt dine opskriftsdata. \nHver linje behandles som et element på en liste"
|
||||||
|
@ -31,30 +31,37 @@
|
||||||
"enabled": "Aktiveret",
|
"enabled": "Aktiveret",
|
||||||
"download": "Hent",
|
"download": "Hent",
|
||||||
"import": "Importere",
|
"import": "Importere",
|
||||||
"options": "Options",
|
"options": "Indstillinger",
|
||||||
"templates": "Templates",
|
"templates": "Skabeloner",
|
||||||
"recipes": "Recipes",
|
"recipes": "Opskrifter",
|
||||||
"themes": "Themes",
|
"themes": "Temaer",
|
||||||
"confirm": "Confirm",
|
"confirm": "Bekræft",
|
||||||
"sort": "Sort",
|
"sort": "Sorter",
|
||||||
"recent": "Recent",
|
"recent": "Seneste",
|
||||||
"sort-alphabetically": "A-Z",
|
"sort-alphabetically": "A-Å",
|
||||||
"reset": "Reset",
|
"reset": "Nulstil",
|
||||||
"filter": "Filter",
|
"filter": "Filtrer",
|
||||||
"yes": "Yes",
|
"yes": "Ja",
|
||||||
"no": "No",
|
"no": "Nej",
|
||||||
"token": "Token",
|
"token": "Token",
|
||||||
"field-required": "Field Required",
|
"field-required": "Felt påkrævet",
|
||||||
"apply": "Apply",
|
"apply": "Anvend",
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(Current)",
|
||||||
"users": "Users",
|
"users": "Brugere",
|
||||||
"groups": "Groups",
|
"groups": "Grupper",
|
||||||
"about": "About"
|
"sunday": "Søndag",
|
||||||
|
"monday": "Mandag",
|
||||||
|
"tuesday": "Tirsdag",
|
||||||
|
"wednesday": "Onsdag",
|
||||||
|
"thursday": "Torsdag",
|
||||||
|
"friday": "Fredag",
|
||||||
|
"saturday": "Lørdag",
|
||||||
|
"about": "Om"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
"home-page": "Home Page",
|
"home-page": "Startside",
|
||||||
"all-recipes": "All Recipes",
|
"all-recipes": "Alle Opskrifter",
|
||||||
"recent": "Recent"
|
"recent": "Seneste"
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"stay-logged-in": "Forbliv logget ind",
|
"stay-logged-in": "Forbliv logget ind",
|
||||||
|
@ -62,25 +69,25 @@
|
||||||
"password": "Adgangskode",
|
"password": "Adgangskode",
|
||||||
"sign-in": "Log ind",
|
"sign-in": "Log ind",
|
||||||
"sign-up": "Opret bruger",
|
"sign-up": "Opret bruger",
|
||||||
"logout": "Logout",
|
"logout": "Log ud",
|
||||||
"full-name": "Full Name",
|
"full-name": "Fulde navn",
|
||||||
"user-group": "User Group",
|
"user-group": "Brugergruppe",
|
||||||
"user-password": "User Password",
|
"user-password": "Adgangskode",
|
||||||
"admin": "Admin",
|
"admin": "Administrator",
|
||||||
"user-id": "User ID",
|
"user-id": "Bruger ID",
|
||||||
"user-id-with-value": "User ID: {id}",
|
"user-id-with-value": "Bruger ID: {id}",
|
||||||
"group": "Group",
|
"group": "Gruppe",
|
||||||
"new-user": "New User",
|
"new-user": "Ny bruger",
|
||||||
"edit-user": "Edit User",
|
"edit-user": "Rediger bruger",
|
||||||
"create-user": "Create User",
|
"create-user": "Opret bruger",
|
||||||
"confirm-user-deletion": "Confirm User Deletion",
|
"confirm-user-deletion": "Bekræft Sletning Af Bruger",
|
||||||
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
"are-you-sure-you-want-to-delete-the-user": "Er du sikker på, at du vil slette brugeren <b>{activeName} med ID: {activeId}<b/>?",
|
||||||
"confirm-group-deletion": "Confirm Group Deletion",
|
"confirm-group-deletion": "Bekræft Sletning Af Gruppe",
|
||||||
"total-users": "Total Users",
|
"total-users": "Antal brugere",
|
||||||
"total-mealplans": "Total MealPlans",
|
"total-mealplans": "Antal Madplaner",
|
||||||
"webhooks-enabled": "Webhooks Enabled",
|
"webhooks-enabled": "Webhooks Aktiveret",
|
||||||
"webhook-time": "Webhook Time",
|
"webhook-time": "Webhook Tid",
|
||||||
"create-group": "Create Group",
|
"create-group": "Opret Gruppe",
|
||||||
"sign-up-links": "Sign Up Links",
|
"sign-up-links": "Sign Up Links",
|
||||||
"create-link": "Create Link",
|
"create-link": "Create Link",
|
||||||
"link-name": "Link Name",
|
"link-name": "Link Name",
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "Manage Users",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Custom Pages",
|
"custom-pages": "Custom Pages",
|
||||||
"new-page": "New Page",
|
"new-page": "New Page",
|
||||||
"edit-page": "Edit Page",
|
"edit-page": "Edit Page",
|
||||||
|
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Neueste)",
|
"current-parenthesis": "(Neueste)",
|
||||||
"users": "Benutzer",
|
"users": "Benutzer",
|
||||||
"groups": "Gruppen",
|
"groups": "Gruppen",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
"about": "Über"
|
"about": "Über"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Benutzer verwalten",
|
"manage-users": "Benutzer verwalten",
|
||||||
"migrations": "Migrationen",
|
"migrations": "Migrationen",
|
||||||
"profile": "Profil",
|
"profile": "Profil",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Benutzerdefinierte Seiten",
|
"custom-pages": "Benutzerdefinierte Seiten",
|
||||||
"new-page": "Neue Seite",
|
"new-page": "Neue Seite",
|
||||||
"edit-page": "Seite bearbeiten",
|
"edit-page": "Seite bearbeiten",
|
||||||
|
|
258
frontend/src/locales/messages/el-GR.json
Normal file
258
frontend/src/locales/messages/el-GR.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(Current)",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
"about": "About"
|
"about": "About"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "Manage Users",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Custom Pages",
|
"custom-pages": "Custom Pages",
|
||||||
"new-page": "New Page",
|
"new-page": "New Page",
|
||||||
"edit-page": "Edit Page",
|
"edit-page": "Edit Page",
|
||||||
|
|
249
frontend/src/locales/messages/es-ES.json
Normal file
249
frontend/src/locales/messages/es-ES.json
Normal file
|
@ -0,0 +1,249 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "Página no encontrada",
|
||||||
|
"take-me-home": "Volver a inicio"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Importar una receta",
|
||||||
|
"recipe-url": "URL de la receta",
|
||||||
|
"url-form-hint": "Copia y pega un enlace de tu página de recetas favorita",
|
||||||
|
"error-message": "Parece que ha habido un error al analizar el enlace. Mira los logs y depura/última_receta.json para ver qué ha ido mal",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Subir",
|
||||||
|
"submit": "Enviar",
|
||||||
|
"name": "Nombre",
|
||||||
|
"settings": "Ajustes",
|
||||||
|
"close": "Cerrar",
|
||||||
|
"save": "Guardar",
|
||||||
|
"image-file": "Imagen",
|
||||||
|
"update": "Actualizar",
|
||||||
|
"edit": "Editar",
|
||||||
|
"delete": "Borrar",
|
||||||
|
"select": "Seleccionar",
|
||||||
|
"random": "Aleatorio",
|
||||||
|
"new": "Nuevo",
|
||||||
|
"create": "Crear",
|
||||||
|
"cancel": "Cancelar",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Activado",
|
||||||
|
"download": "Descargar",
|
||||||
|
"import": "Importar",
|
||||||
|
"options": "Opciones",
|
||||||
|
"templates": "Plantillas",
|
||||||
|
"recipes": "Recetas",
|
||||||
|
"themes": "Temas",
|
||||||
|
"confirm": "Confirmar",
|
||||||
|
"sort": "Ordenar",
|
||||||
|
"recent": "Recientes",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reiniciar",
|
||||||
|
"filter": "Filtrar",
|
||||||
|
"yes": "Sí",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Campo requerido",
|
||||||
|
"apply": "Aplicar",
|
||||||
|
"current-parenthesis": "(Actual)",
|
||||||
|
"users": "Usuarios",
|
||||||
|
"groups": "Grupos",
|
||||||
|
"about": "Sobre"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Página de inicio",
|
||||||
|
"all-recipes": "Todas las recetas",
|
||||||
|
"recent": "Recientes"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "¿Permanecer conectado?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Contraseña",
|
||||||
|
"sign-in": "Iniciar sesión",
|
||||||
|
"sign-up": "Crear una cuenta",
|
||||||
|
"logout": "Cerrar sesión",
|
||||||
|
"full-name": "Nombre",
|
||||||
|
"user-group": "Grupo de usuario",
|
||||||
|
"user-password": "Contraseña",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "ID de usuario",
|
||||||
|
"user-id-with-value": "ID de usuario: {id}",
|
||||||
|
"group": "Grupo",
|
||||||
|
"new-user": "Nuevo usuario",
|
||||||
|
"edit-user": "Editar usuario",
|
||||||
|
"create-user": "Crear usuario",
|
||||||
|
"confirm-user-deletion": "Confirmar eliminación de usuario",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "¿Seguro que quieres borrar el usuario <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirmar eliminación de grupo",
|
||||||
|
"total-users": "Usuarios totales",
|
||||||
|
"total-mealplans": "Planes de comida totales",
|
||||||
|
"webhooks-enabled": "Webhooks activados",
|
||||||
|
"webhook-time": "Webhook hora",
|
||||||
|
"create-group": "Crear grupo",
|
||||||
|
"sign-up-links": "Enlaces de invitación",
|
||||||
|
"create-link": "Crear enlace",
|
||||||
|
"link-name": "Nombre de enlace",
|
||||||
|
"group-id-with-value": "ID de grupo: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "¿Seguro que quieres eliminar <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Nombre del grupo",
|
||||||
|
"confirm-link-deletion": "Confirmar borrado de enlace",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "¿Seguro que quieres borrar el enlace <b>{link}<b/>?",
|
||||||
|
"link-id": "ID del enlace",
|
||||||
|
"users": "Usuarios",
|
||||||
|
"groups": "Grupos",
|
||||||
|
"could-not-validate-credentials": "No se han podido validar los credenciales",
|
||||||
|
"login": "Iniciar sesión",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Los grupos solo los pueden poner los administradores",
|
||||||
|
"upload-photo": "Subir foto",
|
||||||
|
"reset-password": "Reiniciar la contraseña",
|
||||||
|
"current-password": "Contraseña actual",
|
||||||
|
"new-password": "Nueva contraseña",
|
||||||
|
"confirm-password": "Confirmar contraseña",
|
||||||
|
"password-must-match": "Las contraseñas deben coincidir",
|
||||||
|
"e-mail-must-be-valid": "El correo debe ser válido",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Usa al menos 8 carácteres para la contraseña"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Lista de la compra",
|
||||||
|
"dinner-this-week": "Cena de esta semana",
|
||||||
|
"meal-planner": "Planificador de comida",
|
||||||
|
"dinner-today": "Cena de hoy",
|
||||||
|
"planner": "Planificador",
|
||||||
|
"edit-meal-plan": "Editar menú",
|
||||||
|
"meal-plans": "Menús",
|
||||||
|
"create-a-new-meal-plan": "Crear un nuevo menú",
|
||||||
|
"start-date": "Fecha de inicio",
|
||||||
|
"end-date": "Fecha de fin",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Solamente las recetas con estas categorías serán usadas en los menús"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Descripción",
|
||||||
|
"ingredients": "Ingredientes",
|
||||||
|
"categories": "Categorias",
|
||||||
|
"tags": "Etiquetas",
|
||||||
|
"instructions": "Instrucciones",
|
||||||
|
"step-index": "Paso: {step}",
|
||||||
|
"recipe-name": "Nombre de la receta",
|
||||||
|
"servings": "Raciones",
|
||||||
|
"ingredient": "Ingredientes",
|
||||||
|
"notes": "Notas",
|
||||||
|
"note": "Nota",
|
||||||
|
"original-url": "URL original",
|
||||||
|
"view-recipe": "Ver receta",
|
||||||
|
"title": "Título",
|
||||||
|
"total-time": "Tiempo total",
|
||||||
|
"prep-time": "Tiempo de preparación",
|
||||||
|
"perform-time": "Tiempo de cocinado",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No se admiten espacios en blanco",
|
||||||
|
"delete-recipe": "Borrar receta",
|
||||||
|
"delete-confirmation": "¿Seguro que quieres borrar la receta?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Buscar Mealie",
|
||||||
|
"search-placeholder": "Buscar...",
|
||||||
|
"max-results": "Resultados máximos",
|
||||||
|
"category-filter": "Filtrar por categorías",
|
||||||
|
"tag-filter": "Filtrar por etiquetas",
|
||||||
|
"include": "Incluir",
|
||||||
|
"exclude": "Excluir",
|
||||||
|
"and": "Y",
|
||||||
|
"or": "O",
|
||||||
|
"search": "Buscar"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "Opciones generales",
|
||||||
|
"change-password": "Cambiar contraseña",
|
||||||
|
"admin-settings": "Ajustes de admin",
|
||||||
|
"local-api": "API local",
|
||||||
|
"language": "Idioma",
|
||||||
|
"add-a-new-theme": "Añadir un nuevo tema",
|
||||||
|
"set-new-time": "Añadir nueva hora",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Última",
|
||||||
|
"explore-the-docs": "Explorar la wiki",
|
||||||
|
"contribute": "Contribuir",
|
||||||
|
"backup-and-exports": "Copia de seguridad",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Copias de seguridad disponibles",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Nombre del tema",
|
||||||
|
"theme-settings": "Ajustes del tema",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Modo oscuro",
|
||||||
|
"theme-is-required": "El tema es necesario",
|
||||||
|
"primary": "Primario",
|
||||||
|
"secondary": "Secundario",
|
||||||
|
"accent": "Énfasis",
|
||||||
|
"success": "Éxito",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Advertencia",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Valores por defecto",
|
||||||
|
"light": "Claro",
|
||||||
|
"dark": "Oscuro",
|
||||||
|
"theme": "Tema",
|
||||||
|
"saved-color-theme": "Guardar color del tema",
|
||||||
|
"delete-theme": "Borrar tema",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "¿Seguro que quieres borrar el tema?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Falta el nombre del tema"
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "Una nueva versión de Mealie está disponible, <a {aContents}> visita el repositorio </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Importar Recetas",
|
||||||
|
"import-themes": "Importar temas",
|
||||||
|
"import-settings": "Importar ajustes",
|
||||||
|
"create-heading": "Crear una copia de seguridad",
|
||||||
|
"backup-tag": "Etiqueta de copia de seguridad",
|
||||||
|
"full-backup": "Copia de seguridad entera",
|
||||||
|
"partial-backup": "Copia de seguridad parcial",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Importado correctamente",
|
||||||
|
"failed-imports": "Importación fallida"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Página de inicio",
|
||||||
|
"all-categories": "Todas las categorías",
|
||||||
|
"show-recent": "Ver recientes",
|
||||||
|
"home-page-sections": "Selecciones de página de inicio"
|
||||||
|
},
|
||||||
|
"site-settings": "Ajustes",
|
||||||
|
"manage-users": " Gestionar usuarios",
|
||||||
|
"migrations": "Migraciones",
|
||||||
|
"profile": "Perifl",
|
||||||
|
"custom-pages": "Páginas customizadas",
|
||||||
|
"new-page": "Nueva página",
|
||||||
|
"edit-page": "Editar página",
|
||||||
|
"page-name": "Nombre de página"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Migrar recetas",
|
||||||
|
"failed-imports": "Importación fallida",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Importación exitosa",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/fi-FI.json
Normal file
258
frontend/src/locales/messages/fi-FI.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Actuel)",
|
"current-parenthesis": "(Actuel)",
|
||||||
"users": "Utilisateurs",
|
"users": "Utilisateurs",
|
||||||
"groups": "Groupes",
|
"groups": "Groupes",
|
||||||
|
"sunday": "Dimanche",
|
||||||
|
"monday": "Lundi",
|
||||||
|
"tuesday": "Mardi",
|
||||||
|
"wednesday": "Mercredi",
|
||||||
|
"thursday": "Jeudi",
|
||||||
|
"friday": "Vendredi",
|
||||||
|
"saturday": "Samedi",
|
||||||
"about": "À propos"
|
"about": "À propos"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Utilisateurs",
|
"manage-users": "Utilisateurs",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profil",
|
"profile": "Profil",
|
||||||
|
"locale-settings": "Paramètres régionaux",
|
||||||
|
"first-day-of-week": "Premier jour de la semaine",
|
||||||
"custom-pages": "Pages personnalisées",
|
"custom-pages": "Pages personnalisées",
|
||||||
"new-page": "Nouvelle page",
|
"new-page": "Nouvelle page",
|
||||||
"edit-page": "Modifier la page",
|
"edit-page": "Modifier la page",
|
||||||
|
|
258
frontend/src/locales/messages/he-IL.json
Normal file
258
frontend/src/locales/messages/he-IL.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/hu-HU.json
Normal file
258
frontend/src/locales/messages/hu-HU.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/it-IT.json
Normal file
258
frontend/src/locales/messages/it-IT.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/ja-JP.json
Normal file
258
frontend/src/locales/messages/ja-JP.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/ko-KR.json
Normal file
258
frontend/src/locales/messages/ko-KR.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/nl-NL.json
Normal file
258
frontend/src/locales/messages/nl-NL.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/no-NO.json
Normal file
258
frontend/src/locales/messages/no-NO.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(Current)",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
"about": "About"
|
"about": "About"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "Manage Users",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Custom Pages",
|
"custom-pages": "Custom Pages",
|
||||||
"new-page": "New Page",
|
"new-page": "New Page",
|
||||||
"edit-page": "Edit Page",
|
"edit-page": "Edit Page",
|
||||||
|
|
258
frontend/src/locales/messages/pt-BR.json
Normal file
258
frontend/src/locales/messages/pt-BR.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(Current)",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
"about": "About"
|
"about": "About"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "Manage Users",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Custom Pages",
|
"custom-pages": "Custom Pages",
|
||||||
"new-page": "New Page",
|
"new-page": "New Page",
|
||||||
"edit-page": "Edit Page",
|
"edit-page": "Edit Page",
|
||||||
|
|
258
frontend/src/locales/messages/ro-RO.json
Normal file
258
frontend/src/locales/messages/ro-RO.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/ru-RU.json
Normal file
258
frontend/src/locales/messages/ru-RU.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/sr-SP.json
Normal file
258
frontend/src/locales/messages/sr-SP.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(Current)",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
"about": "About"
|
"about": "About"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "Manage Users",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Custom Pages",
|
"custom-pages": "Custom Pages",
|
||||||
"new-page": "New Page",
|
"new-page": "New Page",
|
||||||
"edit-page": "Edit Page",
|
"edit-page": "Edit Page",
|
||||||
|
|
258
frontend/src/locales/messages/tr-TR.json
Normal file
258
frontend/src/locales/messages/tr-TR.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/uk-UA.json
Normal file
258
frontend/src/locales/messages/uk-UA.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
258
frontend/src/locales/messages/vi-VN.json
Normal file
258
frontend/src/locales/messages/vi-VN.json
Normal file
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"404": {
|
||||||
|
"page-not-found": "404 Page Not Found",
|
||||||
|
"take-me-home": "Take me Home"
|
||||||
|
},
|
||||||
|
"new-recipe": {
|
||||||
|
"from-url": "Import a Recipe",
|
||||||
|
"recipe-url": "Recipe URL",
|
||||||
|
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
||||||
|
"error-message": "Looks like there was an error parsing the URL. Check the log and debug/last_recipe.json to see what went wrong.",
|
||||||
|
"bulk-add": "Bulk Add",
|
||||||
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Paste in your recipe data. Each line will be treated as an item in a list"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"upload": "Upload",
|
||||||
|
"submit": "Submit",
|
||||||
|
"name": "Name",
|
||||||
|
"settings": "Settings",
|
||||||
|
"close": "Close",
|
||||||
|
"save": "Save",
|
||||||
|
"image-file": "Image File",
|
||||||
|
"update": "Update",
|
||||||
|
"edit": "Edit",
|
||||||
|
"delete": "Delete",
|
||||||
|
"select": "Select",
|
||||||
|
"random": "Random",
|
||||||
|
"new": "New",
|
||||||
|
"create": "Create",
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"ok": "OK",
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"download": "Download",
|
||||||
|
"import": "Import",
|
||||||
|
"options": "Options",
|
||||||
|
"templates": "Templates",
|
||||||
|
"recipes": "Recipes",
|
||||||
|
"themes": "Themes",
|
||||||
|
"confirm": "Confirm",
|
||||||
|
"sort": "Sort",
|
||||||
|
"recent": "Recent",
|
||||||
|
"sort-alphabetically": "A-Z",
|
||||||
|
"reset": "Reset",
|
||||||
|
"filter": "Filter",
|
||||||
|
"yes": "Yes",
|
||||||
|
"no": "No",
|
||||||
|
"token": "Token",
|
||||||
|
"field-required": "Field Required",
|
||||||
|
"apply": "Apply",
|
||||||
|
"current-parenthesis": "(Current)",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "About"
|
||||||
|
},
|
||||||
|
"page": {
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-recipes": "All Recipes",
|
||||||
|
"recent": "Recent"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"stay-logged-in": "Stay logged in?",
|
||||||
|
"email": "Email",
|
||||||
|
"password": "Password",
|
||||||
|
"sign-in": "Sign in",
|
||||||
|
"sign-up": "Sign up",
|
||||||
|
"logout": "Logout",
|
||||||
|
"full-name": "Full Name",
|
||||||
|
"user-group": "User Group",
|
||||||
|
"user-password": "User Password",
|
||||||
|
"admin": "Admin",
|
||||||
|
"user-id": "User ID",
|
||||||
|
"user-id-with-value": "User ID: {id}",
|
||||||
|
"group": "Group",
|
||||||
|
"new-user": "New User",
|
||||||
|
"edit-user": "Edit User",
|
||||||
|
"create-user": "Create User",
|
||||||
|
"confirm-user-deletion": "Confirm User Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||||
|
"confirm-group-deletion": "Confirm Group Deletion",
|
||||||
|
"total-users": "Total Users",
|
||||||
|
"total-mealplans": "Total MealPlans",
|
||||||
|
"webhooks-enabled": "Webhooks Enabled",
|
||||||
|
"webhook-time": "Webhook Time",
|
||||||
|
"create-group": "Create Group",
|
||||||
|
"sign-up-links": "Sign Up Links",
|
||||||
|
"create-link": "Create Link",
|
||||||
|
"link-name": "Link Name",
|
||||||
|
"group-id-with-value": "Group ID: {groupID}",
|
||||||
|
"are-you-sure-you-want-to-delete-the-group": "Are you sure you want to delete <b>{groupName}<b/>?",
|
||||||
|
"group-name": "Group Name",
|
||||||
|
"confirm-link-deletion": "Confirm Link Deletion",
|
||||||
|
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||||
|
"link-id": "Link ID",
|
||||||
|
"users": "Users",
|
||||||
|
"groups": "Groups",
|
||||||
|
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||||
|
"login": "Login",
|
||||||
|
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
||||||
|
"upload-photo": "Upload Photo",
|
||||||
|
"reset-password": "Reset Password",
|
||||||
|
"current-password": "Current Password",
|
||||||
|
"new-password": "New Password",
|
||||||
|
"confirm-password": "Confirm Password",
|
||||||
|
"password-must-match": "Password must match",
|
||||||
|
"e-mail-must-be-valid": "E-mail must be valid",
|
||||||
|
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
||||||
|
},
|
||||||
|
"meal-plan": {
|
||||||
|
"shopping-list": "Shopping List",
|
||||||
|
"dinner-this-week": "Dinner This Week",
|
||||||
|
"meal-planner": "Meal Planner",
|
||||||
|
"dinner-today": "Dinner Today",
|
||||||
|
"planner": "Planner",
|
||||||
|
"edit-meal-plan": "Edit Meal Plan",
|
||||||
|
"meal-plans": "Meal Plans",
|
||||||
|
"create-a-new-meal-plan": "Create a New Meal Plan",
|
||||||
|
"start-date": "Start Date",
|
||||||
|
"end-date": "End Date",
|
||||||
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
||||||
|
},
|
||||||
|
"recipe": {
|
||||||
|
"description": "Description",
|
||||||
|
"ingredients": "Ingredients",
|
||||||
|
"categories": "Categories",
|
||||||
|
"tags": "Tags",
|
||||||
|
"instructions": "Instructions",
|
||||||
|
"step-index": "Step: {step}",
|
||||||
|
"recipe-name": "Recipe Name",
|
||||||
|
"servings": "Servings",
|
||||||
|
"ingredient": "Ingredient",
|
||||||
|
"notes": "Notes",
|
||||||
|
"note": "Note",
|
||||||
|
"original-url": "Original URL",
|
||||||
|
"view-recipe": "View Recipe",
|
||||||
|
"title": "Title",
|
||||||
|
"total-time": "Total Time",
|
||||||
|
"prep-time": "Prep Time",
|
||||||
|
"perform-time": "Cook Time",
|
||||||
|
"api-extras": "API Extras",
|
||||||
|
"object-key": "Object Key",
|
||||||
|
"object-value": "Object Value",
|
||||||
|
"new-key-name": "New Key Name",
|
||||||
|
"add-key": "Add Key",
|
||||||
|
"key-name-required": "Key Name Required",
|
||||||
|
"no-white-space-allowed": "No White Space Allowed",
|
||||||
|
"delete-recipe": "Delete Recipe",
|
||||||
|
"delete-confirmation": "Are you sure you want to delete this recipe?"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"search-mealie": "Search Mealie",
|
||||||
|
"search-placeholder": "Search...",
|
||||||
|
"max-results": "Max Results",
|
||||||
|
"category-filter": "Category Filter",
|
||||||
|
"tag-filter": "Tag Filter",
|
||||||
|
"include": "Include",
|
||||||
|
"exclude": "Exclude",
|
||||||
|
"and": "And",
|
||||||
|
"or": "Or",
|
||||||
|
"search": "Search"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"general-settings": "General Settings",
|
||||||
|
"change-password": "Change Password",
|
||||||
|
"admin-settings": "Admin Settings",
|
||||||
|
"local-api": "Local API",
|
||||||
|
"language": "Language",
|
||||||
|
"add-a-new-theme": "Add a New Theme",
|
||||||
|
"set-new-time": "Set New Time",
|
||||||
|
"current": "Version:",
|
||||||
|
"latest": "Latest",
|
||||||
|
"explore-the-docs": "Explore the Docs",
|
||||||
|
"contribute": "Contribute",
|
||||||
|
"backup-and-exports": "Backups",
|
||||||
|
"backup-info": "Backups are exported in standard JSON format along with all the images stored on the file system. In your backup folder you'll find a .zip file that contains all of the recipe JSON and images from the database. Additionally, if you selected a markdown file, those will also be stored in the .zip file. To import a backup, it must be located in your backups folder. Automated backups are done each day at 3:00 AM.",
|
||||||
|
"available-backups": "Available Backups",
|
||||||
|
"theme": {
|
||||||
|
"theme-name": "Theme Name",
|
||||||
|
"theme-settings": "Theme Settings",
|
||||||
|
"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": "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.",
|
||||||
|
"dark-mode": "Dark Mode",
|
||||||
|
"theme-is-required": "Theme is required",
|
||||||
|
"primary": "Primary",
|
||||||
|
"secondary": "Secondary",
|
||||||
|
"accent": "Accent",
|
||||||
|
"success": "Success",
|
||||||
|
"info": "Info",
|
||||||
|
"warning": "Warning",
|
||||||
|
"error": "Error",
|
||||||
|
"default-to-system": "Default to system",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark",
|
||||||
|
"theme": "Theme",
|
||||||
|
"saved-color-theme": "Saved Color Theme",
|
||||||
|
"delete-theme": "Delete Theme",
|
||||||
|
"are-you-sure-you-want-to-delete-this-theme": "Are you sure you want to delete this theme?",
|
||||||
|
"choose-how-mealie-looks-to-you-set-your-theme-preference-to-follow-your-system-settings-or-choose-to-use-the-light-or-dark-theme": "Choose how Mealie looks to you. Set your theme preference to follow your system settings, or choose to use the light or dark theme.",
|
||||||
|
"theme-name-is-required": "Theme Name is required."
|
||||||
|
},
|
||||||
|
"webhooks": {
|
||||||
|
"meal-planner-webhooks": "Meal Planner Webhooks",
|
||||||
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||||
|
"test-webhooks": "Test Webhooks",
|
||||||
|
"webhook-url": "Webhook URL"
|
||||||
|
},
|
||||||
|
"new-version-available": "A New Version of Mealie is Available, <a {aContents}> Visit the Repo </a>",
|
||||||
|
"backup": {
|
||||||
|
"import-recipes": "Import Recipes",
|
||||||
|
"import-themes": "Import Themes",
|
||||||
|
"import-settings": "Import Settings",
|
||||||
|
"create-heading": "Create a Backup",
|
||||||
|
"backup-tag": "Backup Tag",
|
||||||
|
"full-backup": "Full Backup",
|
||||||
|
"partial-backup": "Partial Backup",
|
||||||
|
"backup-restore-report": "Backup Restore Report",
|
||||||
|
"successfully-imported": "Successfully Imported",
|
||||||
|
"failed-imports": "Failed Imports"
|
||||||
|
},
|
||||||
|
"homepage": {
|
||||||
|
"card-per-section": "Card Per Section",
|
||||||
|
"homepage-categories": "Homepage Categories",
|
||||||
|
"home-page": "Home Page",
|
||||||
|
"all-categories": "All Categories",
|
||||||
|
"show-recent": "Show Recent",
|
||||||
|
"home-page-sections": "Home Page Sections"
|
||||||
|
},
|
||||||
|
"site-settings": "Site Settings",
|
||||||
|
"manage-users": "Manage Users",
|
||||||
|
"migrations": "Migrations",
|
||||||
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
|
"custom-pages": "Custom Pages",
|
||||||
|
"new-page": "New Page",
|
||||||
|
"edit-page": "Edit Page",
|
||||||
|
"page-name": "Page Name"
|
||||||
|
},
|
||||||
|
"migration": {
|
||||||
|
"recipe-migration": "Recipe Migration",
|
||||||
|
"failed-imports": "Failed Imports",
|
||||||
|
"migration-report": "Migration Report",
|
||||||
|
"successful-imports": "Successful Imports",
|
||||||
|
"no-migration-data-available": "No Migration Data Avaiable",
|
||||||
|
"nextcloud": {
|
||||||
|
"title": "Nextcloud Cookbook",
|
||||||
|
"description": "Migrate data from a Nextcloud Cookbook intance"
|
||||||
|
},
|
||||||
|
"chowdown": {
|
||||||
|
"title": "Chowdown",
|
||||||
|
"description": "Migrate data from Chowdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,7 +6,7 @@
|
||||||
"new-recipe": {
|
"new-recipe": {
|
||||||
"from-url": "输入网址",
|
"from-url": "输入网址",
|
||||||
"recipe-url": "食谱网址",
|
"recipe-url": "食谱网址",
|
||||||
"url-form-hint": "Copy and paste a link from your favorite recipe website",
|
"url-form-hint": "从您最喜爱的食谱网站复制并粘贴链接",
|
||||||
"error-message": "貌似在解析网址时出错。请检查log和debug/last_recipe.json文件并找寻更多有关资讯。",
|
"error-message": "貌似在解析网址时出错。请检查log和debug/last_recipe.json文件并找寻更多有关资讯。",
|
||||||
"bulk-add": "批量添加",
|
"bulk-add": "批量添加",
|
||||||
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "请粘贴您的食谱资料。每行将被视为列表中的一项。"
|
"paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "请粘贴您的食谱资料。每行将被视为列表中的一项。"
|
||||||
|
@ -36,25 +36,32 @@
|
||||||
"recipes": "食谱",
|
"recipes": "食谱",
|
||||||
"themes": "布景主题",
|
"themes": "布景主题",
|
||||||
"confirm": "确定",
|
"confirm": "确定",
|
||||||
"sort": "Sort",
|
"sort": "排序",
|
||||||
"recent": "Recent",
|
"recent": "最近",
|
||||||
"sort-alphabetically": "A-Z",
|
"sort-alphabetically": "A-Z",
|
||||||
"reset": "Reset",
|
"reset": "重置",
|
||||||
"filter": "Filter",
|
"filter": "筛选",
|
||||||
"yes": "Yes",
|
"yes": "是",
|
||||||
"no": "No",
|
"no": "否",
|
||||||
"token": "Token",
|
"token": "密钥",
|
||||||
"field-required": "Field Required",
|
"field-required": "必填",
|
||||||
"apply": "Apply",
|
"apply": "应用",
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(当前)",
|
||||||
"users": "Users",
|
"users": "用户",
|
||||||
"groups": "Groups",
|
"groups": "群组",
|
||||||
"about": "About"
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
|
"about": "关于"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
"home-page": "Home Page",
|
"home-page": "主页",
|
||||||
"all-recipes": "All Recipes",
|
"all-recipes": "全部食谱",
|
||||||
"recent": "Recent"
|
"recent": "最近"
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"stay-logged-in": "保持登录状态?",
|
"stay-logged-in": "保持登录状态?",
|
||||||
|
@ -62,52 +69,52 @@
|
||||||
"password": "密码",
|
"password": "密码",
|
||||||
"sign-in": "登入",
|
"sign-in": "登入",
|
||||||
"sign-up": "注册",
|
"sign-up": "注册",
|
||||||
"logout": "Logout",
|
"logout": "登出",
|
||||||
"full-name": "Full Name",
|
"full-name": "全名",
|
||||||
"user-group": "User Group",
|
"user-group": "用户群组",
|
||||||
"user-password": "User Password",
|
"user-password": "用户密码",
|
||||||
"admin": "Admin",
|
"admin": "管理员",
|
||||||
"user-id": "User ID",
|
"user-id": "用户ID",
|
||||||
"user-id-with-value": "User ID: {id}",
|
"user-id-with-value": "用户ID: {id}",
|
||||||
"group": "Group",
|
"group": "群组",
|
||||||
"new-user": "New User",
|
"new-user": "新建用户",
|
||||||
"edit-user": "Edit User",
|
"edit-user": "编辑用户",
|
||||||
"create-user": "Create User",
|
"create-user": "创建用户",
|
||||||
"confirm-user-deletion": "Confirm User Deletion",
|
"confirm-user-deletion": "确认删除用户",
|
||||||
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
"are-you-sure-you-want-to-delete-the-user": "您确定要删除用户 <b>{activeName} ID:{activeId}<b/> 吗?",
|
||||||
"confirm-group-deletion": "Confirm Group Deletion",
|
"confirm-group-deletion": "确认删除群组",
|
||||||
"total-users": "Total Users",
|
"total-users": "用户总数",
|
||||||
"total-mealplans": "Total MealPlans",
|
"total-mealplans": "总用餐计划",
|
||||||
"webhooks-enabled": "Webhooks Enabled",
|
"webhooks-enabled": "Webhooks 启用",
|
||||||
"webhook-time": "Webhook Time",
|
"webhook-time": "Webhook时间",
|
||||||
"create-group": "Create Group",
|
"create-group": "创建群组",
|
||||||
"sign-up-links": "Sign Up Links",
|
"sign-up-links": "注册链接",
|
||||||
"create-link": "Create Link",
|
"create-link": "生成链接",
|
||||||
"link-name": "Link Name",
|
"link-name": "链接名",
|
||||||
"group-id-with-value": "Group ID: {groupID}",
|
"group-id-with-value": "群组ID: {groupID}",
|
||||||
"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": "您确定要删除<b>{groupName}<b/>吗?",
|
||||||
"group-name": "Group Name",
|
"group-name": "群组名",
|
||||||
"confirm-link-deletion": "Confirm Link Deletion",
|
"confirm-link-deletion": "确认删除链接",
|
||||||
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
"are-you-sure-you-want-to-delete-the-link": "您确定要删除链接<b>{link}<b/>吗?",
|
||||||
"link-id": "Link ID",
|
"link-id": "链接ID",
|
||||||
"users": "Users",
|
"users": "用户",
|
||||||
"groups": "Groups",
|
"groups": "群组",
|
||||||
"could-not-validate-credentials": "Could Not Validate Credentials",
|
"could-not-validate-credentials": "无法验证",
|
||||||
"login": "Login",
|
"login": "登录",
|
||||||
"groups-can-only-be-set-by-administrators": "Groups can only be set by administrators",
|
"groups-can-only-be-set-by-administrators": "群组只能由管理员设置",
|
||||||
"upload-photo": "Upload Photo",
|
"upload-photo": "上传照片",
|
||||||
"reset-password": "Reset Password",
|
"reset-password": "重置密码",
|
||||||
"current-password": "Current Password",
|
"current-password": "当前密码",
|
||||||
"new-password": "New Password",
|
"new-password": "新密码",
|
||||||
"confirm-password": "Confirm Password",
|
"confirm-password": "确认密码",
|
||||||
"password-must-match": "Password must match",
|
"password-must-match": "密码必须一致",
|
||||||
"e-mail-must-be-valid": "E-mail must be valid",
|
"e-mail-must-be-valid": "电子邮件必须有效",
|
||||||
"use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password"
|
"use-8-characters-or-more-for-your-password": "请设置密码字符为8个或更多"
|
||||||
},
|
},
|
||||||
"meal-plan": {
|
"meal-plan": {
|
||||||
"shopping-list": "Shopping List",
|
"shopping-list": "购物清单",
|
||||||
"dinner-this-week": "本周晚餐",
|
"dinner-this-week": "本周晚餐",
|
||||||
"meal-planner": "Meal Planner",
|
"meal-planner": "用餐计划",
|
||||||
"dinner-today": "今日晚餐",
|
"dinner-today": "今日晚餐",
|
||||||
"planner": "策划人",
|
"planner": "策划人",
|
||||||
"edit-meal-plan": "编辑用餐计划",
|
"edit-meal-plan": "编辑用餐计划",
|
||||||
|
@ -115,7 +122,7 @@
|
||||||
"create-a-new-meal-plan": "创建一个新的用餐计划",
|
"create-a-new-meal-plan": "创建一个新的用餐计划",
|
||||||
"start-date": "开始日期",
|
"start-date": "开始日期",
|
||||||
"end-date": "结束日期",
|
"end-date": "结束日期",
|
||||||
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Only recipes with these categories will be used in Meal Plans"
|
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "只有与这些类别相关的食谱才会被用于用餐计划"
|
||||||
},
|
},
|
||||||
"recipe": {
|
"recipe": {
|
||||||
"description": "描述",
|
"description": "描述",
|
||||||
|
@ -127,46 +134,46 @@
|
||||||
"recipe-name": "食谱名称",
|
"recipe-name": "食谱名称",
|
||||||
"servings": "份量",
|
"servings": "份量",
|
||||||
"ingredient": "材料",
|
"ingredient": "材料",
|
||||||
"notes": "贴士",
|
"notes": "笔记",
|
||||||
"note": "贴士",
|
"note": "备注",
|
||||||
"original-url": "原食谱链接",
|
"original-url": "原食谱链接",
|
||||||
"view-recipe": "查看食谱",
|
"view-recipe": "查看食谱",
|
||||||
"title": "标题",
|
"title": "标题",
|
||||||
"total-time": "总时间",
|
"total-time": "总时间",
|
||||||
"prep-time": "准备时间",
|
"prep-time": "准备时间",
|
||||||
"perform-time": "烹饪时间 / 执行时间",
|
"perform-time": "烹饪时间",
|
||||||
"api-extras": "API Extras",
|
"api-extras": "API Extras",
|
||||||
"object-key": "Object Key",
|
"object-key": "Object Key",
|
||||||
"object-value": "Object Value",
|
"object-value": "Object Value",
|
||||||
"new-key-name": "New Key Name",
|
"new-key-name": "New Key Name",
|
||||||
"add-key": "Add Key",
|
"add-key": "Add Key",
|
||||||
"key-name-required": "Key Name Required",
|
"key-name-required": "必须输入关键字",
|
||||||
"no-white-space-allowed": "No White Space Allowed",
|
"no-white-space-allowed": "不允许有空格",
|
||||||
"delete-recipe": "删除食谱",
|
"delete-recipe": "删除食谱",
|
||||||
"delete-confirmation": "您确定要删除此食谱吗?"
|
"delete-confirmation": "您确定要删除此食谱吗?"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"search-mealie": "搜索Mealie",
|
"search-mealie": "搜索Mealie",
|
||||||
"search-placeholder": "Search...",
|
"search-placeholder": "搜索...",
|
||||||
"max-results": "Max Results",
|
"max-results": "最大结果",
|
||||||
"category-filter": "Category Filter",
|
"category-filter": "分类筛选",
|
||||||
"tag-filter": "Tag Filter",
|
"tag-filter": "标签筛选",
|
||||||
"include": "Include",
|
"include": "包括",
|
||||||
"exclude": "Exclude",
|
"exclude": "排除",
|
||||||
"and": "And",
|
"and": "与",
|
||||||
"or": "Or",
|
"or": "或",
|
||||||
"search": "Search"
|
"search": "搜索"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"general-settings": "基本设置",
|
"general-settings": "基本设置",
|
||||||
"change-password": "Change Password",
|
"change-password": "更改密码",
|
||||||
"admin-settings": "Admin Settings",
|
"admin-settings": "管理设置",
|
||||||
"local-api": "Local API",
|
"local-api": "本地API",
|
||||||
"language": "语言",
|
"language": "语言",
|
||||||
"add-a-new-theme": "新增布景主题",
|
"add-a-new-theme": "新增布景主题",
|
||||||
"set-new-time": "设定新的时间",
|
"set-new-time": "设定新的时间",
|
||||||
"current": "版本号:",
|
"current": "版本号:",
|
||||||
"latest": "最新版本:",
|
"latest": "最新版本",
|
||||||
"explore-the-docs": "浏览文档",
|
"explore-the-docs": "浏览文档",
|
||||||
"contribute": "参与贡献",
|
"contribute": "参与贡献",
|
||||||
"backup-and-exports": "备份",
|
"backup-and-exports": "备份",
|
||||||
|
@ -178,13 +185,13 @@
|
||||||
"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": "从以下列表中选择一个主题或创建一个新主题。请注意,默认主题将提供给尚未设置主题首选的所有用户。",
|
"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": "从以下列表中选择一个主题或创建一个新主题。请注意,默认主题将提供给尚未设置主题首选的所有用户。",
|
||||||
"dark-mode": "暗黑模式",
|
"dark-mode": "暗黑模式",
|
||||||
"theme-is-required": "必须选择主题",
|
"theme-is-required": "必须选择主题",
|
||||||
"primary": "主要(Primary)",
|
"primary": "Primary(主要)",
|
||||||
"secondary": "次要(Secondary)",
|
"secondary": "Secondary(次要)",
|
||||||
"accent": "强调(Accent)",
|
"accent": "Accent(强调)",
|
||||||
"success": "成功(Success)",
|
"success": "Success(成功)",
|
||||||
"info": "信息(Info)",
|
"info": "Info(信息)",
|
||||||
"warning": "警告(Warning)",
|
"warning": "Warning(警告)",
|
||||||
"error": "错误(Error)",
|
"error": "Error(错误)",
|
||||||
"default-to-system": "默认为系统",
|
"default-to-system": "默认为系统",
|
||||||
"light": "浅色",
|
"light": "浅色",
|
||||||
"dark": "深色",
|
"dark": "深色",
|
||||||
|
@ -197,7 +204,7 @@
|
||||||
},
|
},
|
||||||
"webhooks": {
|
"webhooks": {
|
||||||
"meal-planner-webhooks": "用餐计划器Webhooks",
|
"meal-planner-webhooks": "用餐计划器Webhooks",
|
||||||
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "下方列出的网址将在预定日期接收到有关用餐计划的食谱资料。Webhooks将在<strong>{ time }</strong>执行",
|
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "下方列出的网址将在预定日期接收到有关用餐计划的食谱资料。Webhooks执行将在",
|
||||||
"test-webhooks": "测试Webhooks",
|
"test-webhooks": "测试Webhooks",
|
||||||
"webhook-url": "Webhook网址"
|
"webhook-url": "Webhook网址"
|
||||||
},
|
},
|
||||||
|
@ -215,21 +222,23 @@
|
||||||
"failed-imports": "导入失败"
|
"failed-imports": "导入失败"
|
||||||
},
|
},
|
||||||
"homepage": {
|
"homepage": {
|
||||||
"card-per-section": "Card Per Section",
|
"card-per-section": "Card的部分",
|
||||||
"homepage-categories": "Homepage Categories",
|
"homepage-categories": "主页分类",
|
||||||
"home-page": "Home Page",
|
"home-page": "主页",
|
||||||
"all-categories": "All Categories",
|
"all-categories": "所有分类",
|
||||||
"show-recent": "Show Recent",
|
"show-recent": "显示最近更新",
|
||||||
"home-page-sections": "Home Page Sections"
|
"home-page-sections": "主页部分"
|
||||||
},
|
},
|
||||||
"site-settings": "Site Settings",
|
"site-settings": "网站设置",
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "管理用户",
|
||||||
"migrations": "Migrations",
|
"migrations": "迁移",
|
||||||
"profile": "Profile",
|
"profile": "用户信息",
|
||||||
"custom-pages": "Custom Pages",
|
"locale-settings": "Locale settings",
|
||||||
"new-page": "New Page",
|
"first-day-of-week": "First day of the week",
|
||||||
"edit-page": "Edit Page",
|
"custom-pages": "自定义页面",
|
||||||
"page-name": "Page Name"
|
"new-page": "新建页面",
|
||||||
|
"edit-page": "编辑页面",
|
||||||
|
"page-name": "页面名称"
|
||||||
},
|
},
|
||||||
"migration": {
|
"migration": {
|
||||||
"recipe-migration": "食谱迁移",
|
"recipe-migration": "食谱迁移",
|
||||||
|
|
|
@ -49,6 +49,13 @@
|
||||||
"current-parenthesis": "(Current)",
|
"current-parenthesis": "(Current)",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
|
"sunday": "Sunday",
|
||||||
|
"monday": "Monday",
|
||||||
|
"tuesday": "Tuesday",
|
||||||
|
"wednesday": "Wednesday",
|
||||||
|
"thursday": "Thursday",
|
||||||
|
"friday": "Friday",
|
||||||
|
"saturday": "Saturday",
|
||||||
"about": "About"
|
"about": "About"
|
||||||
},
|
},
|
||||||
"page": {
|
"page": {
|
||||||
|
@ -226,6 +233,8 @@
|
||||||
"manage-users": "Manage Users",
|
"manage-users": "Manage Users",
|
||||||
"migrations": "Migrations",
|
"migrations": "Migrations",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
"locale-settings": "Locale settings",
|
||||||
|
"first-day-of-week": "First day of the week",
|
||||||
"custom-pages": "Custom Pages",
|
"custom-pages": "Custom Pages",
|
||||||
"new-page": "New Page",
|
"new-page": "New Page",
|
||||||
"edit-page": "Edit Page",
|
"edit-page": "Edit Page",
|
||||||
|
|
|
@ -28,30 +28,6 @@ export default {
|
||||||
HomePageSettings,
|
HomePageSettings,
|
||||||
CustomPageCreator,
|
CustomPageCreator,
|
||||||
},
|
},
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
langOptions: [],
|
|
||||||
selectedLang: "en",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.getOptions();
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
selectedLang() {
|
|
||||||
this.$store.commit("setLang", this.selectedLang);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getOptions() {
|
|
||||||
this.langOptions = this.$store.getters.getAllLangs;
|
|
||||||
this.selectedLang = this.$store.getters.getActiveLang;
|
|
||||||
},
|
|
||||||
removeCategory(index) {
|
|
||||||
this.value.categories.splice(index, 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -3,15 +3,14 @@ import Vuetify from "vuetify/lib";
|
||||||
|
|
||||||
Vue.use(Vuetify);
|
Vue.use(Vuetify);
|
||||||
|
|
||||||
// language IDs should match those from VueI18n with _ instead of -
|
import de from 'vuetify/es5/locale/de';
|
||||||
import de_DE from 'vuetify/es5/locale/de';
|
import en from 'vuetify/es5/locale/en';
|
||||||
import en_US from 'vuetify/es5/locale/en';
|
import fr from 'vuetify/es5/locale/fr';
|
||||||
import fr_FR from 'vuetify/es5/locale/fr';
|
import pl from 'vuetify/es5/locale/pl';
|
||||||
import pl_PL from 'vuetify/es5/locale/pl';
|
import pt from 'vuetify/es5/locale/pt';
|
||||||
import pt_PT from 'vuetify/es5/locale/pt';
|
import sv from 'vuetify/es5/locale/sv';
|
||||||
import sv_SE from 'vuetify/es5/locale/sv';
|
import zhHans from 'vuetify/es5/locale/zh-Hans';
|
||||||
import zh_CN from 'vuetify/es5/locale/zh-Hans';
|
import zhHant from 'vuetify/es5/locale/zh-Hant';
|
||||||
import zh_TW from 'vuetify/es5/locale/zh-Hant';
|
|
||||||
|
|
||||||
|
|
||||||
const vuetify = new Vuetify({
|
const vuetify = new Vuetify({
|
||||||
|
@ -42,16 +41,16 @@ const vuetify = new Vuetify({
|
||||||
},
|
},
|
||||||
lang: {
|
lang: {
|
||||||
locales: {
|
locales: {
|
||||||
de_DE,
|
'de-DE' : de,
|
||||||
en_US,
|
'en-US' : en,
|
||||||
fr_FR,
|
'fr-FR' : fr,
|
||||||
pl_PL,
|
'pl-PL' : pl,
|
||||||
pt_PT,
|
'pt-PT' : pt,
|
||||||
sv_SE,
|
'sv-SE' : sv,
|
||||||
zh_CN,
|
'zh-CN' : zhHans,
|
||||||
zh_TW
|
'zh-TW' : zhHant
|
||||||
},
|
},
|
||||||
current: 'en_US',
|
current: 'en-US',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import VueI18n from "../../i18n";
|
import VueI18n from "../../i18n";
|
||||||
|
|
||||||
const state = {
|
const state = {
|
||||||
lang: "en",
|
lang: "en-US",
|
||||||
allLangs: [
|
allLangs: [
|
||||||
{
|
{
|
||||||
name: "English",
|
name: "English",
|
||||||
|
@ -52,7 +52,12 @@ const mutations = {
|
||||||
const actions = {
|
const actions = {
|
||||||
initLang({ getters }, { currentVueComponent }) {
|
initLang({ getters }, { currentVueComponent }) {
|
||||||
VueI18n.locale = getters.getActiveLang;
|
VueI18n.locale = getters.getActiveLang;
|
||||||
currentVueComponent.$vuetify.lang.current = getters.getActiveLang.replace('-', '_');
|
currentVueComponent.$vuetify.lang.current = getters.getActiveLang;
|
||||||
|
},
|
||||||
|
setLang({ commit }, { language, currentVueComponent }) {
|
||||||
|
VueI18n.locale = language;
|
||||||
|
currentVueComponent.$vuetify.lang.current = language;
|
||||||
|
commit('setLang', language);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ import { api } from "@/api";
|
||||||
const state = {
|
const state = {
|
||||||
siteSettings: {
|
siteSettings: {
|
||||||
language: "en",
|
language: "en",
|
||||||
|
firstDayOfWeek: 0,
|
||||||
showRecent: true,
|
showRecent: true,
|
||||||
cardsPerSection: 9,
|
cardsPerSection: 9,
|
||||||
categories: [],
|
categories: [],
|
||||||
|
|
|
@ -9,6 +9,7 @@ class SiteSettings(SqlAlchemyBase, BaseMixins):
|
||||||
__tablename__ = "site_settings"
|
__tablename__ = "site_settings"
|
||||||
id = sa.Column(sa.Integer, primary_key=True)
|
id = sa.Column(sa.Integer, primary_key=True)
|
||||||
language = sa.Column(sa.String)
|
language = sa.Column(sa.String)
|
||||||
|
first_day_of_week = sa.Column(sa.Integer)
|
||||||
categories = orm.relationship(
|
categories = orm.relationship(
|
||||||
"Category",
|
"Category",
|
||||||
secondary=site_settings2categories,
|
secondary=site_settings2categories,
|
||||||
|
@ -21,12 +22,14 @@ class SiteSettings(SqlAlchemyBase, BaseMixins):
|
||||||
self,
|
self,
|
||||||
session: Session = None,
|
session: Session = None,
|
||||||
language="en",
|
language="en",
|
||||||
|
first_day_of_week: int = 0,
|
||||||
categories: list = [],
|
categories: list = [],
|
||||||
show_recent=True,
|
show_recent=True,
|
||||||
cards_per_section: int = 9,
|
cards_per_section: int = 9,
|
||||||
) -> None:
|
) -> None:
|
||||||
session.commit()
|
session.commit()
|
||||||
self.language = language
|
self.language = language
|
||||||
|
self.first_day_of_week = first_day_of_week
|
||||||
self.cards_per_section = cards_per_section
|
self.cards_per_section = cards_per_section
|
||||||
self.show_recent = show_recent
|
self.show_recent = show_recent
|
||||||
self.categories = [Category.get_ref(session=session, slug=cat.get("slug")) for cat in categories]
|
self.categories = [Category.get_ref(session=session, slug=cat.get("slug")) for cat in categories]
|
||||||
|
|
|
@ -8,6 +8,7 @@ from slugify import slugify
|
||||||
|
|
||||||
class SiteSettings(CamelModel):
|
class SiteSettings(CamelModel):
|
||||||
language: str = "en"
|
language: str = "en"
|
||||||
|
first_day_of_week: int = 0
|
||||||
show_recent: bool = True
|
show_recent: bool = True
|
||||||
cards_per_section: int = 9
|
cards_per_section: int = 9
|
||||||
categories: Optional[list[CategoryBase]] = []
|
categories: Optional[list[CategoryBase]] = []
|
||||||
|
@ -18,6 +19,7 @@ class SiteSettings(CamelModel):
|
||||||
schema_extra = {
|
schema_extra = {
|
||||||
"example": {
|
"example": {
|
||||||
"language": "en",
|
"language": "en",
|
||||||
|
"firstDayOfWeek": 0,
|
||||||
"showRecent": True,
|
"showRecent": True,
|
||||||
"categories": [
|
"categories": [
|
||||||
{"id": 1, "name": "thanksgiving", "slug": "thanksgiving"},
|
{"id": 1, "name": "thanksgiving", "slug": "thanksgiving"},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue