diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 09f8f5695..b890608ff 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -20,20 +20,6 @@ --> -## What type of PR is this? - -_(REQUIRED)_ - - - -- feature -- bug -- documentation -- cleanup -- dev (Internal development) - ## What this PR does / why we need it: _(REQUIRED)_ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 10ef47fec..acbc1c120 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: exclude: ^tests/data/ - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.8.4 + rev: v0.9.0 hooks: - id: ruff - id: ruff-format diff --git a/docs/docs/documentation/getting-started/faq.md b/docs/docs/documentation/getting-started/faq.md index 5484c718a..7035f3713 100644 --- a/docs/docs/documentation/getting-started/faq.md +++ b/docs/docs/documentation/getting-started/faq.md @@ -1,164 +1,268 @@ + # Frequently Asked Questions -## How do I enable "smart" ingredient handling? +## Features and Functionality -You might have noticed that scaling up a recipe or making a shopping list doesn't by default handle the ingredients in a way you might expect. Depending on your settings, scaling up might yield things like `2 1 cup broth` instead of `2 cup broth`. And, making shopping lists from recipes that have shared ingredients can yield multiple lines of the same ingredient. **But**, Mealie has a mechanism to intelligently handle ingredients and make your day better. How? -### Set up your Foods and Units -Do the following just **once**. Doing this applies to your whole group, so be careful. +??? question "How do I enable 'smart' ingredient handling?" -1. Click on your name in the upper left corner to get to your settings -2. In the bottom right, select `Manage Data` -3. In the Management page, make sure that a little orange button says `Foods` -4. If your Foods database is empty, click `Seed` and choose your language. You should end up with a list of foods. (Wait a bit for seeding to happen, and try not to seed more than once or you will have duplicates) -5. Click the little orange `Foods` button and now choose `Units`. -6. Click `Seed` and choose your language. You should end up with a list of units (e.g. `tablespoon`) + ### How do I enable "smart" ingredient handling? -Initial seeding of Units is pretty complete, but there are many Foods in the world. You'll probably find that you need to add Foods to the database during parsing for the first several recipes. Once you have a well-populated Food database, there are API routes to parse ingredients automatically in bulk. But this is not a good idea without a very complete set of Foods. + You might have noticed that scaling up a recipe or making a shopping list doesn't by default handle the ingredients in a way you might expect. Depending on your settings, scaling up might yield things like `2 1 cup broth` instead of `2 cup broth`. And, making shopping lists from recipes that have shared ingredients can yield multiple lines of the same ingredient. **But**, Mealie has a mechanism to intelligently handle ingredients and make your day better. How? -### Set up Recipes to use Foods and Units -Do the following for each recipe you want to intelligently handle ingredients. +

Set up your Foods and Units

+ Do the following just **once**. Doing this applies to your whole group, so be careful. -1. Go to a recipe -2. Click the Edit button/icon -3. Click the Recipe Settings gear and deselect `Disable Ingredient Amounts` -4. Save -5. The ingredients should now look a little weird (`1 1 cup broth` and so on) -6. Click the Edit button/icon again -7. Scroll to the ingredients and you should see new fields for Amount, Unit, Food, and Note. The Note in particular will contain the original text of the Recipe. -8. Click `Parse` and you will be taken to the ingredient parsing page. -9. Choose your parser. The `Natural Language Parser` works very well, but you can also use the `Brute Parser`, or the `OpenAI Parser` if you've [enabled OpenAI support](./installation/backend-config.md#openai). -10. Click `Parse All`, and your ingredients should be separated out into Units and Foods based on your seeding in Step 1 above. -11. For ingredients where the Unit or Food was not found, you can click a button to accept an automatically suggested Food to add to the database. Or, manually enter the Unit/Food and hit `Enter` (or click `Create`) to add it to the database -12. When done, click `Save All` and you will be taken back to the recipe. Now the Unit and Food fields of the recipe should be filled out. + 1. Click on your name in the upper left corner to get to your settings + 2. In the bottom right, select `Manage Data` + 3. In the Management page, make sure that a little orange button says `Foods` + 4. If your Foods database is empty, click `Seed` and choose your language. You should end up with a list of foods. (Wait a bit for seeding to happen, and try not to seed more than once or you will have duplicates) + 5. Click the little orange `Foods` button and now choose `Units`. + 6. Click `Seed` and choose your language. You should end up with a list of units (e.g. `tablespoon`) -Scaling up this recipe or adding it to a Shopping List will now smartly take care of ingredient amounts and duplicate combinations. + Initial seeding of Units is pretty complete, but there are many Foods in the world. You'll probably find that you need to add Foods to the database during parsing for the first several recipes. Once you have a well-populated Food database, there are API routes to parse ingredients automatically in bulk. But this is not a good idea without a very complete set of Foods. -## Is it safe to upgrade Mealie? +

Set up Recipes to use Foods and Units

-Yes. If you are using the v1 branches (including beta), you can upgrade to the latest version of Mealie without performing a site Export/Restore. This process was required in previous versions of Mealie, however we've automated the database migration process to make it easier to upgrade. Note that if you were using the v0.5.x version, you CANNOT upgrade to the latest version automatically. You must follow the migration instructions in the documentation. + Do the following for each recipe you want to intelligently handle ingredients. -- [Migration From v0.5.x](./migrating-to-mealie-v1.md) + 1. Go to a recipe + 2. Click the Edit button/icon + 3. Click the Recipe Settings gear and deselect `Disable Ingredient Amounts` + 4. Save + 5. The ingredients should now look a little weird (`1 1 cup broth` and so on) + 6. Click the Edit button/icon again + 7. Scroll to the ingredients and you should see new fields for Amount, Unit, Food, and Note. The Note in particular will contain the original text of the Recipe. + 8. Click `Parse` and you will be taken to the ingredient parsing page. + 9. Choose your parser. The `Natural Language Parser` works very well, but you can also use the `Brute Parser`, or the `OpenAI Parser` if you've [enabled OpenAI support](./installation/backend-config.md#openai). + 10. Click `Parse All`, and your ingredients should be separated out into Units and Foods based on your seeding in Step 1 above. + 11. For ingredients where the Unit or Food was not found, you can click a button to accept an automatically suggested Food to add to the database. Or, manually enter the Unit/Food and hit `Enter` (or click `Create`) to add it to the database + 12. When done, click `Save All` and you will be taken back to the recipe. Now the Unit and Food fields of the recipe should be filled out. -## How can I change the theme? - -You can change the theme by settings the environment variables. - -- [Backend Config - Themeing](./installation/backend-config.md#themeing) - -## How can I change the login session timeout? - -Login session can be configured by setting the `TOKEN_TIME` variable on the backend container. - -- [Backend Config](./installation/backend-config.md) - -## Can I serve Mealie on a subpath? - -No. Due to limitations from the JavaScript Framework, Mealie doesn't support serving Mealie on a subpath. - -## Can I install Mealie without docker? - -Yes, you can install Mealie on your local machine. HOWEVER, it is recommended that you don't. Managing non-system versions of python, node, and npm is a pain. Moreover, updating and upgrading your system with this configuration is unsupported and will likely require manual interventions. - -## What is fuzzy search and how do I use it? -Mealie can use fuzzy search, which is robust to minor typos. For example, searching for "brocolli" will still find your recipe for "broccoli soup". But fuzzy search is only functional on a Postgres database backend. To enable fuzzy search you will need to migrate to Postgres: - -1. Backup your database and download the .zip file (same as when [migrating](./migrating-to-mealie-v1.md)) -2. Set up a [Postgres](./installation/postgres.md) instance of Mealie -3. Upload the backup .zip and click to apply it (as as migration) - -## How can I attach an image or video to a Recipe? - -Mealie's Recipe Steps and other fields support markdown syntax and therefore support images and videos. To attach an image to the recipe, you can upload it as an asset and use the provided copy button to generate the html image tag required to render the image. For videos, Mealie provides no way to host videos. You'll need to host your videos with another provider and embed them in your recipe. Generally, the video provider will provide a link to the video and the html tag required to render the video. For example, YouTube provides the following link that works inside a step. You can adjust the width and height attributes as necessary to ensure a fit. - -```html - -``` - -## How can I unlock my account? - -If your account has been locked by bad password attempts, you can use an administrator account to unlock another account. Alternatively, you can unlock all accounts via a script within the container. - -```shell -docker exec -it mealie bash - -python /app/mealie/scripts/reset_locked_users.py -``` - -## How can I change my password? - -You can change your password by going to the user profile page and clicking the "Change Password" button. Alternatively you can use the following script to change your password via the CLI if you are locked out of your account. - -```shell -docker exec -it mealie bash - -python /app/mealie/scripts/change_password.py -``` - -## I can't log in with external auth. How can I change my authentication method? - -Follow the [steps above](#how-can-i-change-my-password) for changing your password. You will be prompted if you would like to switch your authentication method back to local auth so you can log in again. - -## How do private groups, households, and recipes work? - -Managing private groups and recipes can be confusing. The following diagram and notes should help explain how they work to determine if a recipe can be shared publicly. - -- Private links that are generated from the recipe page using the `Share` button bypass all group and recipe permissions -- Private groups block all access to recipes, including those that are public, except as noted above. -- Private households, similar to private groups, block all access to recipes, except as noted above. -- Households with "Allow users outside of your group to see your recipes" disabled block all access to recipes, except as noted above. -- Private recipes block all access to the recipe from public links. This does not affect Private Links. - -```mermaid -stateDiagram-v2 - r1: Request Access - p1: Using Private Link? - p2: Is Group Private? - p3: Is Household Private? - p4: Is Recipe Private? - s1: Deny Access - n1: Allow Access + Scaling up this recipe or adding it to a Shopping List will now smartly take care of ingredient amounts and duplicate combinations. - r1 --> p1 - p1 --> p2: No - p1 --> n1: Yes +??? question "How do I enable Nutritional Values?" - p2 --> s1: Yes - p2 --> p3: No + ### How do I enable Nutritional Values? - p3 --> s1: Yes - p3 --> p4: No + Mealie can store Nutritional Information for Recipes. Please note that the values you enter are static for the recipe and no scaling is being done when changing Servings / Yield. - p4 --> s1: Yes - p4 --> n1: No -``` + Do the following to enable Nutritional Values on individual Recipes, or to modify your Household Recipe Preferences -For more information on public access, check out the [Permissions and Public Access guide](./usage/permissions-and-public-access.md). For more information on groups vs. households, check out the [Groups and Households](./features.md#groups-and-households) section in the Features guide. + **Show Nutritional Values on a Single Recipe** -## Can I use fail2ban with Mealie? -Yes, Mealie is configured to properly forward external IP addresses into the `mealie.log` logfile. Note that due to restrictions in docker, IP address forwarding only works on Linux. + 1. Go to a recipe + 2. Click the Edit button/icon + 3. Click the Recipe Settings gear and select `Show Nutritional Values` + 4. Scroll down to manually fill out the Nutritional Values + 5. Save -Your fail2ban usage should look like the following: -``` -Use datepattern : %d-%b-%y %H:%M:%S : Day-MON-Year2 24hour:Minute:Second -Use failregex line : ^ERROR:\s+Incorrect username or password from -``` + **Show Nutritional Values by default** -## Why an API? -An API allows integration into applications like [Home Assistant](https://www.home-assistant.io/) that can act as notification engines to provide custom notifications based on Meal Plan data to remind you to defrost the chicken, marinate the steak, or start the CrockPot. Additionally, you can access nearly any backend service via the API giving you total control to extend the application. To explore the API spin up your server and navigate to http://yourserver.com/docs for interactive API documentation. + 1. Click your username in the top left + 2. Click the 'Household Settings' button + 3. Under 'Household Recipe Preferences', click to select 'Show nutrition information' + 4. Click 'Update' -## Why a database? -Some users of static-site generator applications like ChowDown have expressed concerns about their data being stuck in a database. Considering this is a new project, it is a valid concern to be worried about your data. Mealie specifically addresses this concern by providing automatic daily backups that export your data in json, plain-text markdown files, and/or custom Jinja2 templates. **This puts you in control of how your data is represented** when exported from Mealie, which means you can easily migrate to any other service provided Mealie doesn't work for you. -As to why we need a database? +??? question "What is fuzzy search and how do I use it?" -- **Developer Experience:** Without a database, a lot of the work to maintain your data is taken on by the developer instead of a battle-tested platform for storing data. -- **Multi User Support:** With a solid database as backend storage for your data, Mealie can better support multi-user sites and avoid read/write access errors when multiple actions are taken at the same time. + ### What is fuzzy search and how do I use it? -## Why is there no "Keep Screen Alive" button when I access a recipe? -You've perhaps visited the Mealie Demo and noticed that it had a "Keep Screen Alive" button, but it doesn't show up in your own Mealie instance. -There are typically two possible reasons for this: -1. You're accessing your Mealie instance without using HTTPS. The Wake Lock API is only available if HTTPS is used. Read more here: https://developer.mozilla.org/en-US/docs/Web/API/Screen_Wake_Lock_API -2. You're accessing your Mealie instance on a browser which doesn't support the API. You can test this here: https://vueuse.org/core/useWakeLock/#demo + Mealie can use fuzzy search, which is robust to minor typos. For example, searching for "brocolli" will still find your recipe for "broccoli soup". But fuzzy search is only functional on a Postgres database backend. To enable fuzzy search you will need to migrate to Postgres: -Solving the above points will most likely resolve your issues. However, if you're still having problems, you are welcome to create an issue. Just remember to add that you've tried the above two options first in your description. + 1. Backup your database and download the .zip file (same as when [migrating](./migrating-to-mealie-v1.md)) + 2. Set up a [Postgres](./installation/postgres.md) instance of Mealie + 3. Upload the backup .zip and click to apply it (as as migration) + +??? question "How can I attach an image or video to a Recipe?" + + ### How can I attach an image or video to a Recipe? + + Mealie's Recipe Steps and other fields support markdown syntax and therefore support images and videos. To attach an image to the recipe, you can upload it as an asset and use the provided copy button to generate the html image tag required to render the image. For videos, Mealie provides no way to host videos. You'll need to host your videos with another provider and embed them in your recipe. Generally, the video provider will provide a link to the video and the html tag required to render the video. For example, YouTube provides the following link that works inside a step. You can adjust the width and height attributes as necessary to ensure a fit. + + ```html + + ``` + +## Customization and Configuration + +??? question "How can I change the theme?" + + ### How can I change the theme? + + You can change the theme by settings the environment variables. + + - [Backend Config - Themeing](./installation/backend-config.md#themeing) + + +??? question "How can I change the login session timeout?" + + ### How can I change the login session timeout? + + Login session can be configured by setting the `TOKEN_TIME` variable on the backend container. + + - [Backend Config](./installation/backend-config.md) + + +??? question "Can I serve Mealie on a subpath?" + + ### Can I serve Mealie on a subpath? + + No. Due to limitations from the JavaScript Framework, Mealie doesn't support serving Mealie on a subpath. + + +??? question "Can I install Mealie without docker?" + + ### Can I install Mealie without docker? + + Yes, you can install Mealie on your local machine. HOWEVER, it is recommended that you don't. Managing non-system versions of python, node, and npm is a pain. Moreover, updating and upgrading your system with this configuration is unsupported and will likely require manual interventions. + + +## Account Management + +??? question "How can I unlock my account?" + + ### How can I unlock my account? + + If your account has been locked by bad password attempts, you can use an administrator account to unlock another account. Alternatively, you can unlock all accounts via a script within the container. + + ```shell + docker exec -it mealie bash + + python /app/mealie/scripts/reset_locked_users.py + ``` + + +??? question "How can I reset admin privileges for my account?" + + ### How can I reset admin privileges for my account? + + If you've lost admin privileges and no other admin can restore them, you can use the Command Line Interface (CLI) to grant admin access. + + ```shell + docker exec -it mealie bash + + python /app/mealie/scripts/make_admin.py + ``` + + +??? question "How can I change my password?" + + ### How can I change my password? + + You can change your password by going to the user profile page and clicking the "Change Password" button. Alternatively you can use the following script to change your password via the CLI if you are locked out of your account. + + ```shell + docker exec -it mealie bash + + python /app/mealie/scripts/change_password.py + ``` + + +??? question "I can't log in with external auth. How can I change my authentication method?" + + ### I can't log in with external auth. How can I change my authentication method? + + Follow the [steps above](#how-can-i-change-my-password) for changing your password. You will be prompted if you would like to switch your authentication method back to local auth so you can log in again. + + +## Collaboration and Privacy + +??? question "How do private groups, households, and recipes work?" + + ### How do private groups, households, and recipes work? + + Managing private groups and recipes can be confusing. The following diagram and notes should help explain how they work to determine if a recipe can be shared publicly. + + - Private links that are generated from the recipe page using the `Share` button bypass all group and recipe permissions + - Private groups block all access to recipes, including those that are public, except as noted above. + - Private households, similar to private groups, block all access to recipes, except as noted above. + - Households with "Allow users outside of your group to see your recipes" disabled block all access to recipes, except as noted above. + - Private recipes block all access to the recipe from public links. This does not affect Private Links. + + ```mermaid + stateDiagram-v2 + r1: Request Access + p1: Using Private Link? + p2: Is Group Private? + p3: Is Household Private? + p4: Is Recipe Private? + s1: Deny Access + n1: Allow Access + + + r1 --> p1 + p1 --> p2: No + p1 --> n1: Yes + + p2 --> s1: Yes + p2 --> p3: No + + p3 --> s1: Yes + p3 --> p4: No + + p4 --> s1: Yes + p4 --> n1: No + ``` + + For more information on public access, check out the [Permissions and Public Access guide](./usage/permissions-and-public-access.md). For more information on groups vs. households, check out the [Groups and Households](./features.md#groups-and-households) section in the Features guide. + + +## Security and Maintenance + +??? question "Can I use fail2ban with Mealie?" + + ### Can I use fail2ban with Mealie? + + Yes, Mealie is configured to properly forward external IP addresses into the `mealie.log` logfile. Note that due to restrictions in docker, IP address forwarding only works on Linux. + + Your fail2ban usage should look like the following: + ``` + Use datepattern : %d-%b-%y %H:%M:%S : Day-MON-Year2 24hour:Minute:Second + Use failregex line : ^ERROR:\s+Incorrect username or password from + ``` + + +??? question "Is it safe to upgrade Mealie?" + + ### Is it safe to upgrade Mealie? + + Yes. If you are using the v1 branches (including beta), you can upgrade to the latest version of Mealie without performing a site Export/Restore. This process was required in previous versions of Mealie, however we've automated the database migration process to make it easier to upgrade. Note that if you were using the v0.5.x version, you CANNOT upgrade to the latest version automatically. You must follow the migration instructions in the documentation. + + - [Migration From v0.5.x](./migrating-to-mealie-v1.md) + + +## Technical Considerations + +??? question "Why an API?" + + ### Why an API? + + An API allows integration into applications like [Home Assistant](https://www.home-assistant.io/) that can act as notification engines to provide custom notifications based on Meal Plan data to remind you to defrost the chicken, marinate the steak, or start the CrockPot. Additionally, you can access nearly any backend service via the API giving you total control to extend the application. To explore the API spin up your server and navigate to http://yourserver.com/docs for interactive API documentation. + + +??? question "Why a database?" + + ### Why a database? + + Some users of static-site generator applications like ChowDown have expressed concerns about their data being stuck in a database. Considering this is a new project, it is a valid concern to be worried about your data. Mealie specifically addresses this concern by providing automatic daily backups that export your data in json, plain-text markdown files, and/or custom Jinja2 templates. **This puts you in control of how your data is represented** when exported from Mealie, which means you can easily migrate to any other service provided Mealie doesn't work for you. + + As to why we need a database? + + - **Developer Experience:** Without a database, a lot of the work to maintain your data is taken on by the developer instead of a battle-tested platform for storing data. + - **Multi User Support:** With a solid database as backend storage for your data, Mealie can better support multi-user sites and avoid read/write access errors when multiple actions are taken at the same time. + + +## Usability + +??? question "Why is there no 'Keep Screen Alive' button when I access a recipe?" + + ### Why is there no "Keep Screen Alive" button when I access a recipe? + + You've perhaps visited the Mealie Demo and noticed that it had a "Keep Screen Alive" button, but it doesn't show up in your own Mealie instance. + There are typically two possible reasons for this: + 1. You're accessing your Mealie instance without using HTTPS. The Wake Lock API is only available if HTTPS is used. Read more here: https://developer.mozilla.org/en-US/docs/Web/API/Screen_Wake_Lock_API + 2. You're accessing your Mealie instance on a browser which doesn't support the API. You can test this here: https://vueuse.org/core/useWakeLock/#demo + + Solving the above points will most likely resolve your issues. However, if you're still having problems, you are welcome to create an issue. Just remember to add that you've tried the above two options first in your description. diff --git a/docs/docs/documentation/getting-started/installation/installation-checklist.md b/docs/docs/documentation/getting-started/installation/installation-checklist.md index 70de16648..1cf2500f7 100644 --- a/docs/docs/documentation/getting-started/installation/installation-checklist.md +++ b/docs/docs/documentation/getting-started/installation/installation-checklist.md @@ -31,7 +31,7 @@ To deploy mealie on your local network, it is highly recommended to use Docker t We've gone through a few versions of Mealie v1 deployment targets. We have settled on a single container deployment, and we've begun publishing the nightly container on github containers. If you're looking to move from the old nightly (split containers _or_ the omni image) to the new nightly, there are a few things you need to do: 1. Take a backup just in case! -2. Replace the image for the API container with `ghcr.io/mealie-recipes/mealie:v2.4.1` +2. Replace the image for the API container with `ghcr.io/mealie-recipes/mealie:v2.4.2` 3. Take the external port from the frontend container and set that as the port mapped to port `9000` on the new container. The frontend is now served on port 9000 from the new container, so it will need to be mapped for you to have access. 4. Restart the container diff --git a/docs/docs/documentation/getting-started/installation/postgres.md b/docs/docs/documentation/getting-started/installation/postgres.md index ebec14c6c..dac2231c4 100644 --- a/docs/docs/documentation/getting-started/installation/postgres.md +++ b/docs/docs/documentation/getting-started/installation/postgres.md @@ -7,7 +7,7 @@ PostgreSQL might be considered if you need to support many concurrent users. In ```yaml services: mealie: - image: ghcr.io/mealie-recipes/mealie:v2.4.1 # (3) + image: ghcr.io/mealie-recipes/mealie:v2.4.2 # (3) container_name: mealie restart: always ports: diff --git a/docs/docs/documentation/getting-started/installation/sqlite.md b/docs/docs/documentation/getting-started/installation/sqlite.md index b359d494c..49d2dd6f9 100644 --- a/docs/docs/documentation/getting-started/installation/sqlite.md +++ b/docs/docs/documentation/getting-started/installation/sqlite.md @@ -11,7 +11,7 @@ SQLite is a popular, open source, self-contained, zero-configuration database th ```yaml services: mealie: - image: ghcr.io/mealie-recipes/mealie:v2.4.1 # (3) + image: ghcr.io/mealie-recipes/mealie:v2.4.2 # (3) container_name: mealie restart: always ports: diff --git a/docs/docs/overrides/api.html b/docs/docs/overrides/api.html index 00328079e..a6f596205 100644 --- a/docs/docs/overrides/api.html +++ b/docs/docs/overrides/api.html @@ -14,7 +14,7 @@
diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 32adfd4ea..0351da02a 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -48,6 +48,7 @@ markdown_extensions: - name: mermaid class: mermaid format: !!python/name:pymdownx.superfences.fence_code_format + - pymdownx.details extra_css: - assets/stylesheets/custom.css extra_javascript: diff --git a/frontend/assets/audio/kitchen_alarm.mp3 b/frontend/assets/audio/kitchen_alarm.mp3 deleted file mode 100644 index e8eadc01a..000000000 Binary files a/frontend/assets/audio/kitchen_alarm.mp3 and /dev/null differ diff --git a/frontend/components/Domain/Recipe/RecipeActionMenu.vue b/frontend/components/Domain/Recipe/RecipeActionMenu.vue index 3ad0184d0..6de10c9ee 100644 --- a/frontend/components/Domain/Recipe/RecipeActionMenu.vue +++ b/frontend/components/Domain/Recipe/RecipeActionMenu.vue @@ -34,12 +34,6 @@ - - - +
- +
diff --git a/frontend/components/Domain/Recipe/RecipeCardSection.vue b/frontend/components/Domain/Recipe/RecipeCardSection.vue index 6ca7e0a0a..98611b02c 100644 --- a/frontend/components/Domain/Recipe/RecipeCardSection.vue +++ b/frontend/components/Domain/Recipe/RecipeCardSection.vue @@ -82,6 +82,8 @@ :image="recipe.image" :tags="recipe.tags" :recipe-id="recipe.id" + + v-on="$listeners" /> @@ -105,6 +107,8 @@ :image="recipe.image" :tags="recipe.tags" :recipe-id="recipe.id" + + v-on="$listeners" /> @@ -296,6 +300,7 @@ export default defineComponent({ }, useAsyncKey()); }, 500); + function sortRecipes(sortType: string) { if (state.sortLoading || loading.value) { return; diff --git a/frontend/components/Domain/Recipe/RecipeChips.vue b/frontend/components/Domain/Recipe/RecipeChips.vue index b06d32b61..44429c1b7 100644 --- a/frontend/components/Domain/Recipe/RecipeChips.vue +++ b/frontend/components/Domain/Recipe/RecipeChips.vue @@ -9,7 +9,8 @@ color="accent" :small="small" dark - :to="`${baseRecipeRoute}?${urlPrefix}=${category.id}`" + + @click.prevent="() => $emit('item-selected', category, urlPrefix)" > {{ truncateText(category.name) }} diff --git a/frontend/components/Domain/Recipe/RecipeContextMenu.vue b/frontend/components/Domain/Recipe/RecipeContextMenu.vue index b54189251..a0a47832c 100644 --- a/frontend/components/Domain/Recipe/RecipeContextMenu.vue +++ b/frontend/components/Domain/Recipe/RecipeContextMenu.vue @@ -276,7 +276,7 @@ export default defineComponent({ delete: { title: i18n.tc("general.delete"), icon: $globals.icons.delete, - color: "error", + color: undefined, event: "delete", isPublic: false, }, @@ -383,7 +383,10 @@ export default defineComponent({ } async function deleteRecipe() { - await api.recipes.deleteOne(props.slug); + const { data } = await api.recipes.deleteOne(props.slug); + if (data?.slug) { + router.push(`/g/${groupSlug.value}`); + } context.emit("delete", props.slug); } diff --git a/frontend/components/Domain/Recipe/RecipeDataTable.vue b/frontend/components/Domain/Recipe/RecipeDataTable.vue index fbac4c101..620cdffd0 100644 --- a/frontend/components/Domain/Recipe/RecipeDataTable.vue +++ b/frontend/components/Domain/Recipe/RecipeDataTable.vue @@ -23,13 +23,13 @@ {{ item.name }} - - diff --git a/frontend/components/global/AppLoader.vue b/frontend/components/global/AppLoader.vue index c7ec8e7bc..718022ab0 100644 --- a/frontend/components/global/AppLoader.vue +++ b/frontend/components/global/AppLoader.vue @@ -8,14 +8,14 @@
- {{ small ? "" : waitingText }} + {{ (small || tiny) ? "" : waitingText }}
- {{ small ? "" : waitingTextCalculated }} + {{ (small || tiny) ? "" : waitingTextCalculated }}
@@ -31,6 +31,10 @@ export default defineComponent({ type: Boolean, default: true, }, + tiny: { + type: Boolean, + default: false, + }, small: { type: Boolean, default: false, @@ -50,6 +54,13 @@ export default defineComponent({ }, setup(props) { const size = computed(() => { + if (props.tiny) { + return { + width: 2, + icon: 0, + size: 25, + }; + } if (props.small) { return { width: 2, diff --git a/frontend/composables/recipes/use-recipe-tools.ts b/frontend/composables/recipes/use-recipe-tools.ts index 83ea7ca4c..0bddacb3c 100644 --- a/frontend/composables/recipes/use-recipe-tools.ts +++ b/frontend/composables/recipes/use-recipe-tools.ts @@ -9,7 +9,6 @@ export const useTools = function (eager = true) { id: "", name: "", slug: "", - onHand: false, }); const api = useUserApi(); diff --git a/frontend/composables/store/use-food-store.ts b/frontend/composables/store/use-food-store.ts index f377763fe..6599f2dac 100644 --- a/frontend/composables/store/use-food-store.ts +++ b/frontend/composables/store/use-food-store.ts @@ -13,7 +13,6 @@ export const useFoodData = function () { name: "", description: "", labelId: undefined, - onHand: false, }); } diff --git a/frontend/composables/store/use-tool-store.ts b/frontend/composables/store/use-tool-store.ts index d27fa20c0..e6c38d307 100644 --- a/frontend/composables/store/use-tool-store.ts +++ b/frontend/composables/store/use-tool-store.ts @@ -3,16 +3,21 @@ import { useData, useReadOnlyStore, useStore } from "../partials/use-store-facto import { RecipeTool } from "~/lib/api/types/recipe"; import { usePublicExploreApi, useUserApi } from "~/composables/api"; +interface RecipeToolWithOnHand extends RecipeTool { + onHand: boolean; +} + const store: Ref = ref([]); const loading = ref(false); const publicLoading = ref(false); export const useToolData = function () { - return useData({ + return useData({ id: "", name: "", slug: "", onHand: false, + householdsWithTool: [], }); } diff --git a/frontend/lang/messages/af-ZA.json b/frontend/lang/messages/af-ZA.json index 8ea266c69..cafc431e7 100644 --- a/frontend/lang/messages/af-ZA.json +++ b/frontend/lang/messages/af-ZA.json @@ -570,13 +570,6 @@ "increase-scale-label": "Verhoog skaal met 1", "locked": "Gesluit", "public-link": "Openbare skakel", - "timer": { - "kitchen-timer": "Kombuis timer", - "start-timer": "Begin die kombuis timer", - "pause-timer": "Onderbreek die kombuis timer", - "resume-timer": "Hervat kombuis timer", - "stop-timer": "Stop die kombuis timer" - }, "edit-timeline-event": "Wysig tydlyn gebeurtenis", "timeline": "Tydlyn", "timeline-is-empty": "Nog niks op die tydlyn nie. Probeer hierdie resep maak!", diff --git a/frontend/lang/messages/ar-SA.json b/frontend/lang/messages/ar-SA.json index 965b9bbdc..1e4f676af 100644 --- a/frontend/lang/messages/ar-SA.json +++ b/frontend/lang/messages/ar-SA.json @@ -250,60 +250,60 @@ "invite": "دعوة", "looking-to-update-your-profile": "هل ترغب في تحديث ملفك الشخصي؟", "default-recipe-preferences-description": "هذه هي الإعدادات الافتراضية عند إنشاء وصفة جديدة في مجموعتك. يمكن تغيير هذه الوصفات الفردية في قائمة إعدادات الوصفات.", - "default-recipe-preferences": "Default Recipe Preferences", + "default-recipe-preferences": "تفضيلات الوصفة الافتراضية", "group-preferences": "إعدادات المجموعة", "private-group": "مجموعة خاصة", - "private-group-description": "Setting your group to private will disable all public view options. This overrides any individual public view settings", - "enable-public-access": "Enable Public Access", - "enable-public-access-description": "Make group recipes public by default, and allow visitors to view recipes without logging-in", + "private-group-description": "سيؤدي تعيين مجموعتك إلى الخاص إلى تعطيل جميع خيارات العرض العام. وهذا يلغي أي إعدادات عرض عام فردية", + "enable-public-access": "تمكين الوصول للعموم", + "enable-public-access-description": "جعل وصفات المجموعة عامة بشكل افتراضي، والسماح للزوار بعرض الوصفات دون تسجيل الدخول", "allow-users-outside-of-your-group-to-see-your-recipes": "السماح للمستخدمين خارج مجموعتك لمشاهدة وصفاتك", - "allow-users-outside-of-your-group-to-see-your-recipes-description": "When enabled you can use a public share link to share specific recipes without authorizing the user. When disabled, you can only share recipes with users who are in your group or with a pre-generated private link", + "allow-users-outside-of-your-group-to-see-your-recipes-description": "عند التمكين يمكنك استخدام رابط المشاركة العامة لمشاركة وصفات محددة دون تفويض المستخدم. عند التعطيل، يمكنك مشاركة الوصفات فقط مع المستخدمين الموجودين في مجموعتك أو مع رابط خاص تم إنشاؤه مسبقاً", "show-nutrition-information": "عرض معلومات التغذية", - "show-nutrition-information-description": "When enabled the nutrition information will be shown on the recipe if available. If there is no nutrition information available, the nutrition information will not be shown", - "show-recipe-assets": "Show recipe assets", - "show-recipe-assets-description": "When enabled the recipe assets will be shown on the recipe if available", - "default-to-landscape-view": "Default to landscape view", - "default-to-landscape-view-description": "When enabled the recipe header section will be shown in landscape view", + "show-nutrition-information-description": "عندما يتم تمكين المعلومات الغذائية ستظهر على الوصفة إذا كانت متاحة. وفي حالة عدم توافر معلومات عن التغذية، لن تظهر المعلومات المتعلقة بالتغذية", + "show-recipe-assets": "إظهار أصول الوصفة", + "show-recipe-assets-description": "عند تمكين الوصفة، سيتم عرض أصول الوصفة على الوصفة إذا كانت متوفرة", + "default-to-landscape-view": "الافتراضي للعرض الأفقي", + "default-to-landscape-view-description": "عند تمكين قسم رأس الوصفة سوف يظهر في العرض الأفقي", "disable-users-from-commenting-on-recipes": "إيقاف المستخدمين من التعليق على الوصفات", - "disable-users-from-commenting-on-recipes-description": "Hides the comment section on the recipe page and disables commenting", - "disable-organizing-recipe-ingredients-by-units-and-food": "Disable organizing recipe ingredients by units and food", - "disable-organizing-recipe-ingredients-by-units-and-food-description": "Hides the Food, Unit, and Amount fields for ingredients and treats ingredients as plain text fields", - "general-preferences": "General Preferences", - "group-recipe-preferences": "Group Recipe Preferences", + "disable-users-from-commenting-on-recipes-description": "يخفي قسم التعليق على صفحة الوصفة ويعطل التعليق", + "disable-organizing-recipe-ingredients-by-units-and-food": "تعطيل تنظيم عناصر الوصفة حسب الوحدات والطعام", + "disable-organizing-recipe-ingredients-by-units-and-food-description": "يخفي حقول الطعام والوحدة والكمية للمكونات ويعامل المكونات كحقول نصية عادية", + "general-preferences": "الإعدادات العامة", + "group-recipe-preferences": "تفضيلات الوصفة للمجموعة", "report": "تقرير", - "report-with-id": "Report ID: {id}", - "group-management": "Group Management", - "admin-group-management": "Admin Group Management", - "admin-group-management-text": "Changes to this group will be reflected immediately.", - "group-id-value": "Group Id: {0}", - "total-households": "Total Households", - "you-must-select-a-group-before-selecting-a-household": "You must select a group before selecting a household" + "report-with-id": "معرف التقرير: {id}", + "group-management": "إدارة المجموعة", + "admin-group-management": "إدارة مجموعة المشرف", + "admin-group-management-text": "التغييرات التي ستطرأ على هذه المجموعة ستنعكس على الفور.", + "group-id-value": "معرف المجموعة: {0}", + "total-households": "مجموع المنزل", + "you-must-select-a-group-before-selecting-a-household": "يجب عليك تحديد مجموعة قبل تحديد المنزل" }, "household": { - "household": "Household", - "households": "Households", - "user-household": "User Household", - "create-household": "Create Household", - "household-name": "Household Name", - "household-group": "Household Group", - "household-management": "Household Management", - "manage-households": "Manage Households", - "admin-household-management": "Admin Household Management", - "admin-household-management-text": "Changes to this household will be reflected immediately.", - "household-id-value": "Household Id: {0}", - "private-household": "Private Household", - "private-household-description": "Setting your household to private will disable all public view options. This overrides any individual public view settings", - "lock-recipe-edits-from-other-households": "Lock recipe edits from other households", - "lock-recipe-edits-from-other-households-description": "When enabled only users in your household can edit recipes created by your household", - "household-recipe-preferences": "Household Recipe Preferences", - "default-recipe-preferences-description": "These are the default settings when a new recipe is created in your household. These can be changed for individual recipes in the recipe settings menu.", - "allow-users-outside-of-your-household-to-see-your-recipes": "Allow users outside of your household to see your recipes", - "allow-users-outside-of-your-household-to-see-your-recipes-description": "When enabled you can use a public share link to share specific recipes without authorizing the user. When disabled, you can only share recipes with users who are in your household or with a pre-generated private link", - "household-preferences": "Household Preferences" + "household": "المنزل", + "households": "المنازل", + "user-household": "منزل المستخدم", + "create-household": "إنشاء منزل", + "household-name": "اسم المنزل", + "household-group": "مجموعة المنزل", + "household-management": "إدارة المنزل", + "manage-households": "إدارة المنازل", + "admin-household-management": "إدارة مشرف المنزل", + "admin-household-management-text": "التغييرات التي ستطرأ على هذا المنزل ستنعكس على الفور.", + "household-id-value": "معرف المنزل: {0}", + "private-household": "منزل خاص", + "private-household-description": "سيؤدي تعيين المنزل إلى خاص إلى تعطيل جميع خيارات العرض العام. وهذا يلغي أي إعدادات عرض عام فردية", + "lock-recipe-edits-from-other-households": "إقفال تحرير الوصفة من المنازل الأخرى", + "lock-recipe-edits-from-other-households-description": "عند التمكين, المستخدمين فقط في أسرتك المعيشية يمكنهم تعديل الوصفات التي أنشأتها أسرتك", + "household-recipe-preferences": "تفضيلات الوصفة المنزلية", + "default-recipe-preferences-description": "هذه هي الإعدادات الافتراضية عند إنشاء وصفة جديدة في منزلك. يمكن تغيير الوصفات الفردية في قائمة إعدادات الوصفة.", + "allow-users-outside-of-your-household-to-see-your-recipes": "السماح للمستخدمين خارج منزلك بمشاهدة وصفاتك", + "allow-users-outside-of-your-household-to-see-your-recipes-description": "عند التمكين يمكنك استخدام رابط المشاركة العامة لمشاركة وصفات محددة دون تفويض المستخدم. عند التعطيل، يمكنك مشاركة الوصفات فقط مع المستخدمين الموجودين في منزلك أو مع رابط خاص تم إنشاؤه مسبقاً", + "household-preferences": "تفضيلات المنزل" }, "meal-plan": { "create-a-new-meal-plan": "إنشاء خطة وجبة جديدة", - "update-this-meal-plan": "Update this Meal Plan", + "update-this-meal-plan": "تحديث خِطَّة الوجبة الغذائية هذه", "dinner-this-week": "العشاء لهذا الأسبوع", "dinner-today": "العشاء اليوم", "dinner-tonight": "العشاء الليلة", @@ -321,95 +321,95 @@ "mealplan-settings": "اعدادات خطة الوجبات", "mealplan-update-failed": "فشل تحديث خطة الوجبات", "mealplan-updated": "تم تحديث خطة الوجبات", - "mealplan-households-description": "If no household is selected, recipes can be added from any household", - "any-category": "Any Category", - "any-tag": "Any Tag", - "any-household": "Any Household", + "mealplan-households-description": "إذا لم يتم اختيار منزل، يمكن إضافة وصفات من أي منزل", + "any-category": "أي فئة", + "any-tag": "أي وسم", + "any-household": "أي منزل", "no-meal-plan-defined-yet": "لم يتم تحديد خطة بعد", "no-meal-planned-for-today": "لم يتم تخطيط وجبة لهذا اليوم", - "numberOfDays-hint": "Number of days on page load", - "numberOfDays-label": "Default Days", + "numberOfDays-hint": "عدد الأيام عند تحميل الصفحة", + "numberOfDays-label": "الأيام الافتراضية", "only-recipes-with-these-categories-will-be-used-in-meal-plans": "فقط الوجبات التي تحتوي على التصنيفات التالية سوف تستخدم لإنشاء خطتك", "planner": "المخطط", - "quick-week": "Quick Week", + "quick-week": "أسبوع سريع", "side": "وجبة جانبية", "sides": "الوجبات الجانبية", "start-date": "تاريخ البدء", - "rule-day": "Rule Day", + "rule-day": "يوم القاعدة", "meal-type": "نوع الوجبة", "breakfast": "الإفطار", "lunch": "الغداء", "dinner": "العشاء", "type-any": "أي", "day-any": "أي", - "editor": "Editor", + "editor": "المحرر", "meal-recipe": "وصفة الوجبة", "meal-title": "عنوان الوجبة", "meal-note": "ملاحظة الوجبة", "note-only": "ملاحظة فقط", "random-meal": "وجبة عشوائية", "random-dinner": "عشاء عشوائي", - "random-side": "Random Side", - "this-rule-will-apply": "This rule will apply {dayCriteria} {mealTypeCriteria}.", + "random-side": "جانب عشوائي", + "this-rule-will-apply": "هذه القاعدة سوف تطبق على {dayCriteria} {mealTypeCriteria}.", "to-all-days": "إلى جميع الأيام", - "on-days": "on {0}s", + "on-days": "على أيام {0}", "for-all-meal-types": "لجميع أنواع الوجبات", - "for-type-meal-types": "for {0} meal types", - "meal-plan-rules": "Meal Plan Rules", + "for-type-meal-types": "لأنواع الوجبات {0}", + "meal-plan-rules": "قواعد خِطَّة وجبة الطعام", "new-rule": "قاعدة جديدة", - "meal-plan-rules-description": "You can create rules for auto selecting recipes for your meal plans. These rules are used by the server to determine the random pool of recipes to select from when creating meal plans. Note that if rules have the same day/type constraints then the rule filters will be merged. In practice, it's unnecessary to create duplicate rules, but it's possible to do so.", - "new-rule-description": "When creating a new rule for a meal plan you can restrict the rule to be applicable for a specific day of the week and/or a specific type of meal. To apply a rule to all days or all meal types you can set the rule to \"Any\" which will apply it to all the possible values for the day and/or meal type.", + "meal-plan-rules-description": "يمكنك إنشاء قواعد لاختيار الوصفات التلقائية لخطط وجبتك الغذائية. وتستخدم هذه القواعد من قبل الخادم لتحديد مجموعة عشوائية من الوصفات التي يتم اختيارها من خلال إنشاء خطط الوجبات. لاحظ أنه إذا كانت القواعد تحتوي على نفس قيود اليوم/النوع فسيتم دمج عوامل تصفية القاعدة. من الناحية العملية، ليس من الضروري إنشاء قواعد مكررة، ولكن من الممكن فعل ذلك.", + "new-rule-description": "عند إنشاء قاعدة جديدة لخطة وجبة غذائية، يمكنك تقييد القاعدة لتكون قابلة للتطبيق ليوم محدد من الأسبوع و/أو نوع محدد من الوجبات. لتطبيق قاعدة على جميع الأيام أو جميع أنواع الوجبات الغذائية يمكنك تعيين القاعدة إلى \"أي كان\" التي ستطبقها على جميع القيم الممكنة لليوم و/أو نوع الوجبة.", "recipe-rules": "قواعد الوصفات", "applies-to-all-days": "ينطبق على جميع الأيام", - "applies-on-days": "Applies on {0}s", - "meal-plan-settings": "Meal Plan Settings" + "applies-on-days": "يطبق على أيام {0}", + "meal-plan-settings": "إعدادات خِطَّة الوجبات الغذائية" }, "migration": { - "migration-data-removed": "Migration data removed", - "new-migration": "New Migration", + "migration-data-removed": "حذف بيانات الهجرة", + "new-migration": "هجرة جديدة", "no-file-selected": "لم يتمّ اختيار أيّ ملفّ", - "no-migration-data-available": "No Migration Data Available", - "previous-migrations": "Previous Migrations", + "no-migration-data-available": "لا توجد بيانات هجرة متوفرة", + "previous-migrations": "الهجرة السابقة", "recipe-migration": "نقل الوصفة", "chowdown": { - "description": "Migrate data from Chowdown", - "description-long": "Mealie natively supports the chowdown repository format. Download the code repository as a .zip file and upload it below.", - "title": "Chowdown" + "description": "نقل البيانات من \"Chowdown\"", + "description-long": "ميلي يدعم بشكل محلي تنسيق مستودع طعام. يجب تنزيل مستودع التعليمات البرمجية CODE REPOSITORY كملف مضغوط ZIP وتحميله أدناه.", + "title": "\"Chowdown\"" }, "nextcloud": { - "description": "Migrate data from a Nextcloud Cookbook instance", - "description-long": "Nextcloud recipes can be imported from a zip file that contains the data stored in Nextcloud. See the example folder structure below to ensure your recipes are able to be imported.", - "title": "Nextcloud Cookbook" + "description": "نقل البيانات من نموذج كتاب طبخ NEXTCLOUD", + "description-long": "يمكن استيراد الوصفات السحابية من مِلَفّ مضغوط ZIP يحتوي على البيانات المخزنة في Nextcloud. راجع بنية مجلد المثال أدناه للتأكد من أن وصفاتك قابلة للاستيراد.", + "title": "كتاب طبخ " }, "copymethat": { - "description-long": "Mealie can import recipes from Copy Me That. Export your recipes in HTML format, then upload the .zip below.", - "title": "Copy Me That Recipe Manager" + "description-long": "يمكن لميلي استيراد الوصفات من نسخ لي. يجب تصدير وصفاتك بتنسيق HTML، ثم تحميل ZIP أدناه.", + "title": "انسخ لي مدير الوصفة" }, "paprika": { - "description-long": "Mealie can import recipes from the Paprika application. Export your recipes from paprika, rename the export extension to .zip and upload it below.", - "title": "Paprika Recipe Manager" + "description-long": "يمكن لميلي استيراد الوصفات من تطبيق PAPRIKA. يجب تصدير وصفاتك من PAPRIKA، وإعادة تسمية امتداد التصدير إلى .ZIP وتحميله أدناه.", + "title": "مدير وصفة بابريكا" }, "mealie-pre-v1": { - "description-long": "Mealie can import recipes from the Mealie application from a pre v1.0 release. Export your recipes from your old instance, and upload the zip file below. Note that only recipes can be imported from the export.", - "title": "Mealie Pre v1.0" + "description-long": "يمكن لميلي استيراد الوصفات من تطبيق ميلي من إصدار قبل 1.0. يجب تصدير وصفاتك من نموذجك القديم، وتحميل المِلَفّ المضغوط أدناه. لاحظ أنه يمكن استيراد الوصفات فقط من التصدير.", + "title": "ميلي إصدار قبل 1.0" }, "tandoor": { - "description-long": "Mealie can import recipes from Tandoor. Export your data in the \"Default\" format, then upload the .zip below.", - "title": "Tandoor Recipes" + "description-long": "يمكن لميلي استيراد الوصفات من تندور. يجب تصدير بياناتك بالتنسيق \"الافتراضي\"، ثم يجب تحميل المِلَفّ المضغوط أدناه.", + "title": "وصفات تاندور" }, - "recipe-data-migrations": "Recipe Data Migrations", - "recipe-data-migrations-explanation": "Recipes can be migrated from another supported application to Mealie. This is a great way to get started with Mealie.", - "coming-from-another-application-or-an-even-older-version-of-mealie": "Coming from another application or an even older version of Mealie? Check out migrations and see if your data can be imported.", - "choose-migration-type": "Choose Migration Type", - "tag-all-recipes": "Tag all recipes with {tag-name} tag", - "nextcloud-text": "Nextcloud recipes can be imported from a zip file that contains the data stored in Nextcloud. See the example folder structure below to ensure your recipes are able to be imported.", + "recipe-data-migrations": "وصفة 2", + "recipe-data-migrations-explanation": "يمكن نقل الوصفات من تطبيق آخر مدعوم إلى ميلي. هذه طريقة رائعة للبدء مع ميلي.", + "coming-from-another-application-or-an-even-older-version-of-mealie": "هل تأتي من تطبيق آخر أو حتى إصدار قديم من ميلي؟ يجب التحقق من عمليات الترحيل لمعرفة ما إذا كان يمكن استيراد بياناتك.", + "choose-migration-type": "اختر نوع الترحيل", + "tag-all-recipes": "وسم جميع الوصفات باستخدام علامة {tag-name}", + "nextcloud-text": "يمكن استيراد الوصفات السحابية من مِلَفّ مضغوط Zip يحتوي على البيانات المخزنة في Nextcloud. راجع بنية مجلد المثال أدناه للتأكد من أن وصفاتك قابلة للاستيراد.", "chowdown-text": "Mealie natively supports the chowdown repository format. Download the code repository as a .zip file and upload it below.", - "recipe-1": "Recipe 1", - "recipe-2": "Recipe 2", + "recipe-1": "وصفة 1", + "recipe-2": "وصفة 2", "paprika-text": "Mealie can import recipes from the Paprika application. Export your recipes from paprika, rename the export extension to .zip and upload it below.", "mealie-text": "Mealie can import recipes from the Mealie application from a pre v1.0 release. Export your recipes from your old instance, and upload the zip file below. Note that only recipes can be imported from the export.", "plantoeat": { - "title": "Plan to Eat", + "title": "خِطَّة تناول الطعام", "description-long": "Mealie can import recipies from Plan to Eat." }, "myrecipebox": { @@ -417,44 +417,44 @@ "description-long": "Mealie can import recipes from My Recipe Box. Export your recipes in CSV format, then upload the .csv file below." }, "recipekeeper": { - "title": "Recipe Keeper", + "title": "مدير الوصفة", "description-long": "Mealie can import recipes from Recipe Keeper. Export your recipes in zip format, then upload the .zip file below." } }, "new-recipe": { - "bulk-add": "Bulk Add", + "bulk-add": "إضافة مجموعة", "error-details": "Only websites containing ld+json or microdata can be imported by Mealie. Most major recipe websites support this data structure. If your site cannot be imported but there is json data in the log, please submit a github issue with the URL and data.", "error-title": "Looks Like We Couldn't Find Anything", - "from-url": "Import a Recipe", + "from-url": "استيراد وصفة", "github-issues": "مشاكل GitHub", "google-ld-json-info": "معرف Google + معلومات json", "must-be-a-valid-url": "يجب أن يكون عنوان URL صالحًا", "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", "recipe-markup-specification": "Recipe Markup Specification", - "recipe-url": "Recipe URL", - "recipe-html-or-json": "Recipe HTML or JSON", - "upload-a-recipe": "Upload a Recipe", - "upload-individual-zip-file": "Upload an individual .zip file exported from another Mealie instance.", - "url-form-hint": "Copy and paste a link from your favorite recipe website", - "view-scraped-data": "View Scraped Data", - "trim-whitespace-description": "Trim leading and trailing whitespace as well as blank lines", - "trim-prefix-description": "Trim first character from each line", + "recipe-url": "رابط الوصفة", + "recipe-html-or-json": "وصفة HTML أو JSON", + "upload-a-recipe": "تحميل وصفة", + "upload-individual-zip-file": "تحميل مِلَفّ zip فردي تم تصديره من مثيل Malie آخر.", + "url-form-hint": "نسخ ولصق رابط من موقعك المفضل للوصفة", + "view-scraped-data": "عرض البيانات المكشوفة", + "trim-whitespace-description": "قص المسافات البيضاء البادئة واللاحقة وكذلك الأسطر الفارغة", + "trim-prefix-description": "قص الحرف الأول من كل سطر", "split-by-numbered-line-description": "Attempts to split a paragraph by matching '1)' or '1.' patterns", - "import-by-url": "Import a recipe by URL", - "create-manually": "Create a recipe manually", - "make-recipe-image": "Make this the recipe image" + "import-by-url": "استيراد وصفة عن طريق عنوان URL", + "create-manually": "إنشاء وصفة يدوياً", + "make-recipe-image": "اجعل هذه صورة الوصفة" }, "page": { - "404-page-not-found": "404 Page not found", - "all-recipes": "All Recipes", - "new-page-created": "New page created", + "404-page-not-found": "404: لم يتم العثور على الصفحة", + "all-recipes": "جميع الوصفات", + "new-page-created": "تم إنشاء الصفحة الجديدة", "page": "الصفحة", - "page-creation-failed": "Page creation failed", + "page-creation-failed": "فشل إنشاء الصفحة", "page-deleted": "تم حذف الصفحة", "page-deletion-failed": "حذف الصفحة فشل", "page-update-failed": "تحديث الصفحة فشل", "page-updated": "تم تحديث صفحة", - "pages-update-failed": "Pages update failed", + "pages-update-failed": "فشل تحديث الصفحات", "pages-updated": "Pages updated", "404-not-found": "لم يتم العثور على الصفحة. خطأ 404", "an-error-occurred": "حصل خطأ ما" @@ -500,42 +500,42 @@ "object-value": "Object Value", "original-url": "Original URL", "perform-time": "Cook Time", - "prep-time": "Prep Time", - "protein-content": "Protein", - "public-recipe": "Public Recipe", - "recipe-created": "Recipe created", - "recipe-creation-failed": "Recipe creation failed", - "recipe-deleted": "Recipe deleted", - "recipe-image": "Recipe Image", - "recipe-image-updated": "Recipe image updated", - "recipe-name": "Recipe Name", - "recipe-settings": "Recipe Settings", - "recipe-update-failed": "Recipe update failed", - "recipe-updated": "Recipe updated", - "remove-from-favorites": "Remove from Favorites", - "remove-section": "Remove Section", - "saturated-fat-content": "Saturated fat", - "save-recipe-before-use": "Save recipe before use", - "section-title": "Section Title", - "servings": "Servings", - "serves-amount": "Serves {amount}", - "share-recipe-message": "I wanted to share my {0} recipe with you.", + "prep-time": "وقت التحضير", + "protein-content": "البروتين", + "public-recipe": "وصفة عامة", + "recipe-created": "تم إنشاء الوصفة", + "recipe-creation-failed": "فشل إنشاء الوصفة", + "recipe-deleted": "تم حذف الوصفة", + "recipe-image": "صورة الوصفة", + "recipe-image-updated": "تم تحديث صورة الوصفة", + "recipe-name": "اسم الوصفة", + "recipe-settings": "إعدادات الوصفة", + "recipe-update-failed": "فشل تحديث الوصفة", + "recipe-updated": "تم تحديث الوصفة", + "remove-from-favorites": "إزالة من المفضلات", + "remove-section": "إزالة القسم", + "saturated-fat-content": "الدهون المشبعة", + "save-recipe-before-use": "حفظ الوصفة قبل الاستخدام", + "section-title": "عنوان القسم", + "servings": "حصص الطعام", + "serves-amount": "{amount} حصص", + "share-recipe-message": "أردت أن أشارككم وصفة {0} الخاصة بي.", "show-nutrition-values": "Show Nutrition Values", - "sodium-content": "Sodium", - "step-index": "Step: {step}", - "sugar-content": "Sugar", - "title": "Title", - "total-time": "Total Time", - "trans-fat-content": "Trans-fat", - "unable-to-delete-recipe": "Unable to Delete Recipe", - "unsaturated-fat-content": "Unsaturated fat", - "no-recipe": "No Recipe", - "locked-by-owner": "Locked by Owner", - "join-the-conversation": "Join the Conversation", - "add-recipe-to-mealplan": "Add Recipe to Mealplan", - "entry-type": "Entry Type", - "date-format-hint": "MM/DD/YYYY format", - "date-format-hint-yyyy-mm-dd": "YYYY-MM-DD format", + "sodium-content": "صوديوم", + "step-index": "الخطوة: {step}", + "sugar-content": "سكر", + "title": "العنوان", + "total-time": "الوقت الإجمالي", + "trans-fat-content": "الدهون المتحولة", + "unable-to-delete-recipe": "تعذر حذف الوصفة", + "unsaturated-fat-content": "دهون غير مشبعة", + "no-recipe": "لا يوجد وصفة", + "locked-by-owner": "مقفلة من قبل المالك", + "join-the-conversation": "انضم للمحادثة", + "add-recipe-to-mealplan": "إضافة الوصفة إلى خِطَّة الوجبة", + "entry-type": "نوع الإدخال", + "date-format-hint": "صيغة MM/DD/YYYYY", + "date-format-hint-yyyy-mm-dd": "صيغة YYY-MM-DD", "add-to-list": "Add to List", "add-to-plan": "Add to Plan", "add-to-timeline": "Add to Timeline", @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/bg-BG.json b/frontend/lang/messages/bg-BG.json index 52cb5876e..cf665be86 100644 --- a/frontend/lang/messages/bg-BG.json +++ b/frontend/lang/messages/bg-BG.json @@ -570,13 +570,6 @@ "increase-scale-label": "Увеличи мащаба с 1", "locked": "Заключено", "public-link": "Публична връзка", - "timer": { - "kitchen-timer": "Кухненски таймер", - "start-timer": "Стартирай таймера", - "pause-timer": "Поставяне таймера на пауза", - "resume-timer": "Възобновяване на таймера", - "stop-timer": "Спри таймера" - }, "edit-timeline-event": "Редактирай събитие", "timeline": "Хронология на събитията", "timeline-is-empty": "Няма история на събитията. Опитайте да приготвите рецептата!", diff --git a/frontend/lang/messages/ca-ES.json b/frontend/lang/messages/ca-ES.json index 819bd9a5a..21faa4ef7 100644 --- a/frontend/lang/messages/ca-ES.json +++ b/frontend/lang/messages/ca-ES.json @@ -570,13 +570,6 @@ "increase-scale-label": "Multiplica", "locked": "Bloquejat", "public-link": "Enllaç públic", - "timer": { - "kitchen-timer": "Temporitzador de cuina", - "start-timer": "Iniciar temporitzador", - "pause-timer": "Pausa el temporitzador", - "resume-timer": "Reprèn el temporitzador", - "stop-timer": "Atura el temporitzador" - }, "edit-timeline-event": "Edita l'esdeveniment de la cronologia", "timeline": "Cronologia", "timeline-is-empty": "Encara no hi ha res a la cronologia. Prova de fer aquesta recepta!", diff --git a/frontend/lang/messages/cs-CZ.json b/frontend/lang/messages/cs-CZ.json index 5b116562c..40940d3b8 100644 --- a/frontend/lang/messages/cs-CZ.json +++ b/frontend/lang/messages/cs-CZ.json @@ -259,7 +259,7 @@ "allow-users-outside-of-your-group-to-see-your-recipes": "Povolit uživatelům mimo vaši skupinu vidět vaše recepty", "allow-users-outside-of-your-group-to-see-your-recipes-description": "Pokud je tato možnost povolena, můžete použít veřejný odkaz pro sdílení konkrétních receptů bez autorizace uživatele. Pokud je tato možnost vypnutá, můžete sdílet recepty pouze s uživateli, kteří jsou ve vaší skupině, nebo s předem vygenerovaným soukromým odkazem", "show-nutrition-information": "Zobrazit nutriční informace", - "show-nutrition-information-description": "When enabled the nutrition information will be shown on the recipe if available. If there is no nutrition information available, the nutrition information will not be shown", + "show-nutrition-information-description": "Pokud je povoleno, informace o výživě se zobrazí na receptu, pokud je k dispozici. Nejsou-li k dispozici údaje o výživové hodnotě, nebudou zobrazeny údaje o výživové hodnotě", "show-recipe-assets": "Zobrazit položky receptu", "show-recipe-assets-description": "Pokud je tato možnost povolena, zobrazí se u receptu zdroje, pokud jsou k dispozici", "default-to-landscape-view": "Výchozí zobrazení na šířku", @@ -270,19 +270,19 @@ "disable-organizing-recipe-ingredients-by-units-and-food-description": "Skryje pole Potravina, Jednotka a Množství pro ingredience a považuje ingredience za textová pole", "general-preferences": "Všeobecné předvolby", "group-recipe-preferences": "Preference receptů pro skupinu", - "report": "Report", - "report-with-id": "Report ID: {id}", + "report": "Nahlásit", + "report-with-id": "ID hlášení: {id}", "group-management": "Správa skupin", "admin-group-management": "Administrátorská správa skupiny", "admin-group-management-text": "Změny v této skupině budou okamžitě zohledněny.", "group-id-value": "ID skupiny: {0}", "total-households": "Celkem domácností", - "you-must-select-a-group-before-selecting-a-household": "You must select a group before selecting a household" + "you-must-select-a-group-before-selecting-a-household": "Před výběrem domácnosti musíte vybrat skupinu" }, "household": { "household": "Domácnost", "households": "Domácnosti", - "user-household": "User Household", + "user-household": "Uživatelova domácnost", "create-household": "Vytvořit domácnost", "household-name": "Název domácnosti", "household-group": "Skupina domácnosti", @@ -357,8 +357,8 @@ "for-type-meal-types": "pro {0} druhy jídel", "meal-plan-rules": "Pravidla tvůrce jídelníčků", "new-rule": "Nové pravidlo", - "meal-plan-rules-description": "You can create rules for auto selecting recipes for your meal plans. These rules are used by the server to determine the random pool of recipes to select from when creating meal plans. Note that if rules have the same day/type constraints then the rule filters will be merged. In practice, it's unnecessary to create duplicate rules, but it's possible to do so.", - "new-rule-description": "When creating a new rule for a meal plan you can restrict the rule to be applicable for a specific day of the week and/or a specific type of meal. To apply a rule to all days or all meal types you can set the rule to \"Any\" which will apply it to all the possible values for the day and/or meal type.", + "meal-plan-rules-description": "Můžete vytvořit pravidla pro automatický výběr receptů pro vaše stravovací plány. Tato pravidla používají server k určení náhodného souboru receptů, ze kterých se při vytváření plánů jídla vybírat. Všimněte si, že pokud mají pravidla stejná omezení den/typ, budou filtry pravidel sloučeny. V praxi je zbytečné vytvářet duplicitní pravidla, ale je to možné.", + "new-rule-description": "Při vytváření nového pravidla pro plán jídla můžete omezit použití pravidla pro konkrétní den v týdnu a/nebo konkrétní druh jídla. Chcete-li použít pravidlo pro všechny dny nebo všechny typy jídla, můžete nastavit pravidlo na \"Jakékoliv\", které se použije na všechny možné hodnoty pro den a/nebo druh jídla.", "recipe-rules": "Pravidla receptu", "applies-to-all-days": "Použije se na všechny dny", "applies-on-days": "Platí pro {0}", @@ -373,7 +373,7 @@ "recipe-migration": "Přenést recept", "chowdown": { "description": "Migrovat data z aplikace Chowdown", - "description-long": "Mealie natively supports the chowdown repository format. Download the code repository as a .zip file and upload it below.", + "description-long": "Mealie nativně podporuje formát chowdown. Stáhněte si z repozitáře kód jako .zip soubor a nahrajte ho níže.", "title": "Chowdown" }, "nextcloud": { @@ -403,7 +403,7 @@ "choose-migration-type": "Zvolte si typ migrace", "tag-all-recipes": "Označit všechny recepty pomocí štítku {tag-name}", "nextcloud-text": "Nextcloud recepty lze importovat ze souboru zip, který obsahuje data uložená v Nextcloudu. Podívejte se na příklad struktury složek níže, abyste se ujistili, že vaše recepty lze importovat.", - "chowdown-text": "Mealie natively supports the chowdown repository format. Download the code repository as a .zip file and upload it below.", + "chowdown-text": "Mealie nativně podporuje formát chowdown. Stáhněte si z repozitáře kód jako .zip soubor a nahrajte ho níže.", "recipe-1": "Recept 1", "recipe-2": "Recept 2", "paprika-text": "Mealie může importovat recepty z aplikace Paprika. Exportujte své recepty z papriky, přejmenujte příponu exportovaného souboru na .zip a nahrajte jej níže.", @@ -414,7 +414,7 @@ }, "myrecipebox": { "title": "My Recipe Box", - "description-long": "Mealie can import recipes from My Recipe Box. Export your recipes in CSV format, then upload the .csv file below." + "description-long": "Mealie může importovat recepty z My Recipe Box. Exportujte recepty ve formátu CSV, poté nahrajte soubor .zip níže." }, "recipekeeper": { "title": "Recipe Keeper", @@ -570,13 +570,6 @@ "increase-scale-label": "Zvýšit násobení o 1", "locked": "Uzamčeno", "public-link": "Veřejný odkaz", - "timer": { - "kitchen-timer": "Kuchyňský časovač", - "start-timer": "Spustit časovač", - "pause-timer": "Pozastavit časovač", - "resume-timer": "Obnovit časovač", - "stop-timer": "Zastavit časovač" - }, "edit-timeline-event": "Upravit událost časové osy", "timeline": "Časová osa", "timeline-is-empty": "Zatím nic na časové ose není. Zkuste vytvořit tento recept!", @@ -587,9 +580,9 @@ "how-did-it-turn-out": "Jak to dopadlo?", "user-made-this": "{user} udělal toto", "last-made-date": "Naposledy uvařeno {date}", - "api-extras-description": "Recipes extras are a key feature of the Mealie API. They allow you to create custom JSON key/value pairs within a recipe, to reference from 3rd party applications. You can use these keys to provide information, for example to trigger automations or custom messages to relay to your desired device.", - "message-key": "Message Key", - "parse": "Parse", + "api-extras-description": "Recepty jsou klíčovým rysem rozhraní pro API Mealie. Umožňují vytvářet vlastní klíče/hodnoty JSON v rámci receptu pro odkazy na aplikace třetích stran. Tyto klíče můžete použít pro poskytnutí informací, například pro aktivaci automatizace nebo vlastních zpráv pro přenos do požadovaného zařízení.", + "message-key": "Klíč zprávy", + "parse": "Analyzovat", "attach-images-hint": "Přiložit obrázky přetažením jich do editoru", "drop-image": "Vložit obrázek", "enable-ingredient-amounts-to-use-this-feature": "Chcete-li tuto funkci používat, povolte množství ingrediencí", @@ -614,9 +607,9 @@ "debug-scraper": "Ladící Scraper", "create-a-recipe-by-providing-the-name-all-recipes-must-have-unique-names": "Vytvořte recept zadáním názvu. Všechny recepty musí mít jedinečná jména.", "new-recipe-names-must-be-unique": "Názvy receptů musí být jedinečné", - "scrape-recipe": "Scrape Recipe", - "scrape-recipe-description": "Scrape a recipe by url. Provide the url for the site you want to scrape, and Mealie will attempt to scrape the recipe from that site and add it to your collection.", - "scrape-recipe-have-a-lot-of-recipes": "Have a lot of recipes you want to scrape at once?", + "scrape-recipe": "Zpracovat recept", + "scrape-recipe-description": "Zpracovat recept na url. Uveďte adresu url pro str8nku, kterou chcete zpracovat a Mealie se pokusí zpracovat recept z tohoto webu a přidat jej do vaší sbírky.", + "scrape-recipe-have-a-lot-of-recipes": "Máte spoustu receptů, které chcete zpracovat najednou?", "scrape-recipe-suggest-bulk-importer": "Vyzkoušejte hromadný import", "scrape-recipe-have-raw-html-or-json-data": "Máte surová data HTML nebo JSON?", "scrape-recipe-you-can-import-from-raw-data-directly": "Můžete importovat přímo ze surových dat", @@ -632,19 +625,19 @@ "create-a-recipe-by-uploading-a-scan": "Vytvořte recept nahráním skenu.", "upload-a-png-image-from-a-recipe-book": "Nahrát png obrázek z knihy receptů", "recipe-bulk-importer": "Hromadný import receptů", - "recipe-bulk-importer-description": "The Bulk recipe importer allows you to import multiple recipes at once by queueing the sites on the backend and running the task in the background. This can be useful when initially migrating to Mealie, or when you want to import a large number of recipes.", + "recipe-bulk-importer-description": "Hromadný import receptů vám umožní importovat více receptů najednou tím, že ve frontě stránek na podpůrné vrstvě bude spuštěn úkol na pozadí. To může být užitečné při počáteční migraci na Mealie, nebo když chcete importovat velké množství receptů.", "set-categories-and-tags": "Nastavte kategorie a štítky", "bulk-imports": "Hromadný import", "bulk-import-process-has-started": "Proces hromadného importu byl zahájen", "bulk-import-process-has-failed": "Proces hromadného importu se nezdařil", "report-deletion-failed": "Odstranění reportu se nezdařilo", - "recipe-debugger": "Recipe Debugger", - "recipe-debugger-description": "Grab the URL of the recipe you want to debug and paste it here. The URL will be scraped by the recipe scraper and the results will be displayed. If you don't see any data returned, the site you are trying to scrape is not supported by Mealie or its scraper library.", + "recipe-debugger": "Ladění receptů", + "recipe-debugger-description": "Získejte URL receptu, který chcete ladit a vložte jej zde. URL bude zpracováno procesorem receptů a budou zobrazeny výsledky. Pokud nevidíte žádná data, stránka, kterou se pokoušíte zpracovat, není podporována ani v Mealie ani jeho knihovně pro zpracování.", "use-openai": "Použít OpenAI", - "recipe-debugger-use-openai-description": "Use OpenAI to parse the results instead of relying on the scraper library. When creating a recipe via URL, this is done automatically if the scraper library fails, but you may test it manually here.", + "recipe-debugger-use-openai-description": "Použijte OpenAI k analýze výsledků namísto spoléhání se na knihovnu pro zpracování. Při vytváření receptu prostřednictvím adresy URL se to provádí automaticky, pokud knihovna pro zpracování selže, ale můžete to zde otestovat ručně.", "debug": "Ladit", "tree-view": "Stromové zobrazení", - "recipe-servings": "Recipe Servings", + "recipe-servings": "Počet porcí", "recipe-yield": "Recipe Yield", "recipe-yield-text": "Recipe Yield Text", "unit": "Jednotka", @@ -654,14 +647,14 @@ "nextStep": "Další krok", "recipe-actions": "Akce receptu", "parser": { - "experimental-alert-text": "Mealie uses natural language processing to parse and create units and food items for your recipe ingredients. This feature is experimental and may not always work as expected. If you prefer not to use the parsed results, you can select 'Cancel' and your changes will not be saved.", - "ingredient-parser": "Ingredient Parser", - "explanation": "To use the ingredient parser, click the 'Parse All' button to start the process. Once the processed ingredients are available, you can review the items and verify that they were parsed correctly. The model's confidence score is displayed on the right of the item title. This score is an average of all the individual scores and may not always be completely accurate.", - "alerts-explainer": "Alerts will be displayed if a matching foods or unit is found but does not exists in the database.", - "select-parser": "Select Parser", + "experimental-alert-text": "Mealie používá přirozené zpracování jazyka k analýze a vytváření jednotek a položek jídla pro vaše ingredience. Tato funkce je experimentální a nemusí vždy fungovat podle očekávání. Pokud raději nepoužíváte analyzované výsledky, můžete zvolit 'Zrušit' a vaše změny nebudou uloženy.", + "ingredient-parser": "Analyzátor ingrediencí", + "explanation": "Chcete-li použít analyzátor ingrediencí, klikněte na tlačítko \"Analyzovat vše\" pro zahájení procesu. Jakmile budou zpracované suroviny k dispozici, můžete zkontrolovat položky a ověřit, že byly správně analyzovány. Skóre důvěry modelu se zobrazuje vpravo od názvu položky. Toto skóre je průměrem všech jednotlivých skóre a nemusí být vždy zcela přesné.", + "alerts-explainer": "Upozornění se zobrazí v případě, že je nalezena odpovídající potravina nebo jednotka, ale v databázi neexistuje.", + "select-parser": "Vyberte analyzátor", "natural-language-processor": "Natural Language Processor", "brute-parser": "Brute Parser", - "openai-parser": "OpenAI Parser", + "openai-parser": "Analyzátor OpenAI", "parse-all": "Parsovat vše", "no-unit": "Žádná jednotka", "missing-unit": "Vytvořit chybějící jednotku: {unit}", @@ -669,22 +662,22 @@ "no-food": "Žádné jídlo" }, "reset-servings-count": "Resetovat počet porcí", - "not-linked-ingredients": "Additional Ingredients" + "not-linked-ingredients": "Další ingredience" }, "recipe-finder": { - "recipe-finder": "Recipe Finder", - "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", - "selected-ingredients": "Selected Ingredients", - "no-ingredients-selected": "No ingredients selected", + "recipe-finder": "Vyhledávač receptů", + "recipe-finder-description": "Vyhledávání receptů na základě přísad, které máte na ruce. Můžete také filtrovat pomocí nástrojů, které máte k dispozici, a nastavit maximální počet chybějících ingrediencí nebo nástrojů.", + "selected-ingredients": "Vybrané ingredience", + "no-ingredients-selected": "Nebyly vybrány žádné ingredience", "missing": "Chybějící", "no-recipes-found": "Nebyly nalezeny žádné recepty", - "no-recipes-found-description": "Try adding more ingredients to your search or adjusting your filters", - "include-ingredients-on-hand": "Include Ingredients On Hand", - "include-tools-on-hand": "Include Tools On Hand", - "max-missing-ingredients": "Max Missing Ingredients", - "max-missing-tools": "Max Missing Tools", - "selected-tools": "Selected Tools", - "other-filters": "Other Filters", + "no-recipes-found-description": "Zkuste do hledání přidat další ingredience nebo upravit své filtry", + "include-ingredients-on-hand": "Zahrnout ingredience jež k dispozici", + "include-tools-on-hand": "Zahrnout nástroje, které máte po ruce", + "max-missing-ingredients": "Maximální počet chybějících ingrediencí", + "max-missing-tools": "Maximální počet chybějících nástrojů", + "selected-tools": "Vybrané nástroje", + "other-filters": "Jiné filtry", "ready-to-make": "Ready to Make", "almost-ready-to-make": "Almost Ready to Make" }, @@ -725,9 +718,9 @@ "import-summary": "Shrnutí importu", "partial-backup": "Částečná záloha", "unable-to-delete-backup": "Zálohu nelze odstranit.", - "experimental-description": "Backups are total snapshots of the database and data directory of the site. This includes all data and cannot be set to exclude subsets of data. You can think of this as a snapshot of Mealie at a specific time. These serve as a database agnostic way to export and import data, or back up the site to an external location.", + "experimental-description": "Zálohy jsou celkové snímky databáze a datového adresáře webu. Tato položka zahrnuje všechny údaje a nelze ji nastavit pro vyloučení podsouborů údajů. Můžete ji brát jako snímek Mealie v určitém čase. Tyto slouží jako způsob, jak nezávisle na databázi exportovat a importovat data nebo zálohovat stránky na externí umístění.", "backup-restore": "Obnova zálohy", - "back-restore-description": "Restoring this backup will overwrite all the current data in your database and in the data directory and replace them with the contents of this backup. {cannot-be-undone} If the restoration is successful, you will be logged out.", + "back-restore-description": "Obnovení této zálohy přepíše všechna aktuální data ve vaší databázi a v datovém adresáři a nahradí je obsahem této zálohy. {cannot-be-undone} Pokud je obnovení úspěšné, budete odhlášeni.", "cannot-be-undone": "Tuto akci nelze vrátit zpět - používejte ji s opatrností.", "postgresql-note": "Pokud používáte PostgreSQL, před obnovením si prosím přečtete {backup-restore-process}.", "backup-restore-process-in-the-documentation": "proces zálohy/obnovení v dokumentaci", @@ -820,11 +813,11 @@ "description": "The webhooks defined below will be executed when a meal is defined for the day. At the scheduled time the webhooks will be sent with the data from the recipe that is scheduled for the day. Note that webhook execution is not exact. The webhooks are executed on a 5 minutes interval so the webhooks will be executed within 5 +/- minutes of the scheduled." }, "bug-report": "Chybové hlášení", - "bug-report-information": "Use this information to report a bug. Providing details of your instance to developers is the best way to get your issues resolved quickly.", + "bug-report-information": "Použijte tyto informace k nahlášení chyby. Poskytnutí podrobností vaší instance vývojářům je nejlepší způsob, jak rychle vyřešit vaše problémy.", "tracker": "Tracker", "configuration": "Konfigurace", "docker-volume": "Volume dockeru", - "docker-volume-help": "Mealie requires that the frontend container and the backend share the same docker volume or storage. This ensures that the frontend container can properly access the images and assets stored on disk.", + "docker-volume-help": "Mealie vyžaduje, aby kontejner prostředí a podpůrné vrstvy sdílely stejný úložný prostor dockeru. Tím se zajistí, že kontejner prostředí bude moci správně přistupovat k obrázkům a informacím uloženým na disku.", "volumes-are-misconfigured": "Svazky jsou špatně nakonfigurovány.", "volumes-are-configured-correctly": "Volumy jsou nastaveny správně.", "status-unknown-try-running-a-validation": "Neznámý stav. Zkuste provést validaci.", @@ -891,7 +884,7 @@ "are-you-sure-you-want-to-check-all-items": "Opravdu chcete vybrat všechny položky?", "are-you-sure-you-want-to-uncheck-all-items": "Opravdu chcete zrušit výběr všech položek?", "are-you-sure-you-want-to-delete-checked-items": "Opravdu chcete odstranit všechny vybrané položky?", - "no-shopping-lists-found": "No Shopping Lists Found" + "no-shopping-lists-found": "Nebyly nalezeny žádné nákupní seznamy" }, "sidebar": { "all-recipes": "Všechny recepty", @@ -1354,7 +1347,7 @@ "cookbooks": "Kuchařky", "description": "Kuchařky jsou dalším způsobem, jak uspořádat recepty vytvořením průřezů receptů, organizátorů a dalších filtrů. Vytvořením kuchařky se přidá položka na postranní panel a v kuchařce se zobrazí všechny recepty s vybranými filtry.", "hide-cookbooks-from-other-households": "Hide Cookbooks from Other Households", - "hide-cookbooks-from-other-households-description": "When enabled, only cookbooks from your household will appear on the sidebar", + "hide-cookbooks-from-other-households-description": "Pokud je povoleno, objeví se na postranním panelu pouze kuchařské knihy z vaší domácnosti", "public-cookbook": "Veřejná kuchařka", "public-cookbook-description": "Veřejné kuchařky mohou být sdíleny s neregistrovanými uživateli a budou zobrazeny na stránce vaší skupiny.", "filter-options": "Možnosti filtru", diff --git a/frontend/lang/messages/da-DK.json b/frontend/lang/messages/da-DK.json index 7ab839ae9..d788f610d 100644 --- a/frontend/lang/messages/da-DK.json +++ b/frontend/lang/messages/da-DK.json @@ -277,7 +277,7 @@ "admin-group-management-text": "Ændringer i denne gruppe vil træde i kraft øjeblikkeligt.", "group-id-value": "Gruppe-ID: {0}", "total-households": "Husholdninger i Alt", - "you-must-select-a-group-before-selecting-a-household": "You must select a group before selecting a household" + "you-must-select-a-group-before-selecting-a-household": "Du skal vælge en gruppe, før du vælger en husstand" }, "household": { "household": "Husholdning", @@ -570,13 +570,6 @@ "increase-scale-label": "Forøg skala med 1", "locked": "Låst", "public-link": "Offentligt link", - "timer": { - "kitchen-timer": "Køkken Ur", - "start-timer": "Start timer", - "pause-timer": "Sæt timer på pause", - "resume-timer": "Genoptag Timer", - "stop-timer": "Stop timer" - }, "edit-timeline-event": "Rediger tidslinjebegivenhed", "timeline": "Tidslinje", "timeline-is-empty": "Intet på tidslinjen endnu. Prøv at lave denne opskrift!", @@ -672,21 +665,21 @@ "not-linked-ingredients": "Additional Ingredients" }, "recipe-finder": { - "recipe-finder": "Recipe Finder", + "recipe-finder": "Opskrift Finder", "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", - "selected-ingredients": "Selected Ingredients", - "no-ingredients-selected": "No ingredients selected", - "missing": "Missing", - "no-recipes-found": "No recipes found", - "no-recipes-found-description": "Try adding more ingredients to your search or adjusting your filters", - "include-ingredients-on-hand": "Include Ingredients On Hand", - "include-tools-on-hand": "Include Tools On Hand", - "max-missing-ingredients": "Max Missing Ingredients", + "selected-ingredients": "Valgte Ingredienser", + "no-ingredients-selected": "Ingen ingredienser valgt", + "missing": "Mangler", + "no-recipes-found": "Ingen opskrifter fundet", + "no-recipes-found-description": "Prøv at tilføje flere ingredienser til din søgning eller justere dine filtre", + "include-ingredients-on-hand": "Inkluder ingredienser du allerede har", + "include-tools-on-hand": "Inkluder værktøjer du allerede har", + "max-missing-ingredients": "Maksimum Manglende Ingredienser", "max-missing-tools": "Max Missing Tools", "selected-tools": "Selected Tools", - "other-filters": "Other Filters", - "ready-to-make": "Ready to Make", - "almost-ready-to-make": "Almost Ready to Make" + "other-filters": "Andre filtre", + "ready-to-make": "Klar til at lave", + "almost-ready-to-make": "Næsten klar til at lave" }, "search": { "advanced-search": "Avanceret søgning", @@ -891,7 +884,7 @@ "are-you-sure-you-want-to-check-all-items": "Er du sikker på, at du vil markere alle elementer?", "are-you-sure-you-want-to-uncheck-all-items": "Er du sikker på, at du vil fjerne markeringen af alle elementer?", "are-you-sure-you-want-to-delete-checked-items": "Er du sikker på, at du vil sletter de valgte elementer?", - "no-shopping-lists-found": "No Shopping Lists Found" + "no-shopping-lists-found": "Ingen Indkøbslister fundet" }, "sidebar": { "all-recipes": "Alle opskr.", @@ -1303,7 +1296,7 @@ "profile": { "welcome-user": "👋 Velkommen, {0}!", "description": "Administrer din profil, opskrifter og gruppeindstillinger.", - "invite-link": "Invite Link", + "invite-link": "Invitationslink", "get-invite-link": "Få Invitationslink", "get-public-link": "Offentligt link", "account-summary": "Kontooversigt", @@ -1353,8 +1346,8 @@ "cookbook": { "cookbooks": "Kogebøger", "description": "Kogebøger er en anden måde at organisere opskrifter ved at skabe tværsnit af opskrifter, arrangører, og andre filtre. Oprettelse af en kogebog vil tilføje et link i sidemenuen, og alle opskrifter med de valgte filtre vil blive vist i kogebogen.", - "hide-cookbooks-from-other-households": "Hide Cookbooks from Other Households", - "hide-cookbooks-from-other-households-description": "When enabled, only cookbooks from your household will appear on the sidebar", + "hide-cookbooks-from-other-households": "Skjul kogebøger fra andre husholdninger", + "hide-cookbooks-from-other-households-description": "Når aktiveret, kun kogebøger fra din husstand vises på sidepanelet", "public-cookbook": "Offentlig kogebog", "public-cookbook-description": "Offentlige kogebøger kan deles med personer, der ikke er oprettet som brugere i Mealie og vil blive vist på din gruppe side.", "filter-options": "Filtreringsindstillinger", diff --git a/frontend/lang/messages/de-DE.json b/frontend/lang/messages/de-DE.json index da2b75fc2..fee834582 100644 --- a/frontend/lang/messages/de-DE.json +++ b/frontend/lang/messages/de-DE.json @@ -570,13 +570,6 @@ "increase-scale-label": "Maßstab um 1 erhöhen", "locked": "Gesperrt", "public-link": "Öffentlicher Link", - "timer": { - "kitchen-timer": "Küchenwecker", - "start-timer": "Wecker starten", - "pause-timer": "Wecker pausieren", - "resume-timer": "Wecker fortsetzen", - "stop-timer": "Wecker stoppen" - }, "edit-timeline-event": "Zeitstrahl-Ereignis bearbeiten", "timeline": "Zeitstrahl", "timeline-is-empty": "Noch nichts auf dem Zeitstrahl. Probier dieses Rezept aus!", diff --git a/frontend/lang/messages/el-GR.json b/frontend/lang/messages/el-GR.json index 927269b5c..102378d3a 100644 --- a/frontend/lang/messages/el-GR.json +++ b/frontend/lang/messages/el-GR.json @@ -570,13 +570,6 @@ "increase-scale-label": "Αύξηση κλίμακας κατά 1", "locked": "Κλειδωμένο", "public-link": "Δημόσιος σύνδεσμος", - "timer": { - "kitchen-timer": "Χρονόμετρο Κουζίνας", - "start-timer": "Εναρξη χρονομέτρου", - "pause-timer": "Παύση χρονόμετρου", - "resume-timer": "Συνέχιση χρονομέτρου", - "stop-timer": "Διακοπή χρονόμετρου" - }, "edit-timeline-event": "Επεξεργασία συμβάντος χρονοδιαγράμματος", "timeline": "Χρονοδιάγραμμα", "timeline-is-empty": "Δεν υπάρχει τίποτα ακόμα στο χρονοδιάγραμμα. Δοκιμάστε να κάνετε αυτή τη συνταγή!", diff --git a/frontend/lang/messages/en-GB.json b/frontend/lang/messages/en-GB.json index 43d8d6161..38661f21c 100644 --- a/frontend/lang/messages/en-GB.json +++ b/frontend/lang/messages/en-GB.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/en-US.json b/frontend/lang/messages/en-US.json index 0fe00ce55..7b1a0f135 100644 --- a/frontend/lang/messages/en-US.json +++ b/frontend/lang/messages/en-US.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/es-ES.json b/frontend/lang/messages/es-ES.json index 4e21a0142..5edd7acaf 100644 --- a/frontend/lang/messages/es-ES.json +++ b/frontend/lang/messages/es-ES.json @@ -570,13 +570,6 @@ "increase-scale-label": "Aumentar escala en 1", "locked": "Bloqueada", "public-link": "Enlace público", - "timer": { - "kitchen-timer": "Temporizador de cocina", - "start-timer": "Iniciar Temporizador", - "pause-timer": "Pausar Temporizador", - "resume-timer": "Reanudar Temporizador", - "stop-timer": "Detener temporizador" - }, "edit-timeline-event": "Editar evento en la cronología", "timeline": "Cronología", "timeline-is-empty": "Aún no hay nada en la línea de tiempo. ¡Intenta hacer esta receta!", diff --git a/frontend/lang/messages/et-EE.json b/frontend/lang/messages/et-EE.json new file mode 100644 index 000000000..4cb6e4d08 --- /dev/null +++ b/frontend/lang/messages/et-EE.json @@ -0,0 +1,1387 @@ +{ + "about": { + "about": "Teave", + "about-mealie": "Mealie teave", + "api-docs": "API dokumentatsioon", + "api-port": "API Port", + "application-mode": "Rakenduse režiim", + "database-type": "Andmebaasi tüüp", + "database-url": "Andmebaasi URL", + "default-group": "Vaikegrupp", + "default-household": "Majapidamise vaikeväärtus", + "demo": "Demo", + "demo-status": "Demo seisund", + "development": "Arendus", + "docs": "Dokumentatsioon", + "download-log": "Allalaadimiste logi", + "download-recipe-json": "Viimati ekstraheeritud JSON", + "github": "Github", + "log-lines": "Logiread", + "not-demo": "Mitte-demo", + "portfolio": "Portfoolio", + "production": "Tootmine", + "support": "Tugi", + "version": "Versioon", + "unknown-version": "tundmatu", + "sponsor": "Sponsor" + }, + "asset": { + "assets": "Manused", + "code": "Kood", + "file": "Fail", + "image": "Pilt", + "new-asset": "Uus manus", + "pdf": "PDF", + "recipe": "Retsept", + "show-assets": "Näita manuseid", + "error-submitting-form": "Tõrge vormi esitamisel" + }, + "category": { + "categories": "Kategooriad", + "category-created": "Kategooriad loodud", + "category-creation-failed": "Kategooria loomine ebaõnnestus", + "category-deleted": "Kategooria kustutatud", + "category-deletion-failed": "Kategooria kustutamine ebaõnnestus", + "category-filter": "Kategooria filter", + "category-update-failed": "Kategooria uuendamine ebaõnnestus", + "category-updated": "Kategooria uuendatud", + "uncategorized-count": "Mitte-kategoriseritud {count}", + "create-a-category": "Loo kategooria", + "category-name": "Kategooria nimi", + "category": "Kategooria" + }, + "events": { + "apprise-url": "Apprise URL", + "database": "Andmebaas", + "delete-event": "Kustuta sündmus", + "event-delete-confirmation": "Kas oled kindel, et soovid sündmust kustutada?", + "event-deleted": "Sündmus kustutatud", + "event-updated": "Sündmus uuendatud", + "new-notification-form-description": "Mealie kasutab Apprise tarkvarateeki, et genereerida teavitusi. Need pakuvad teenustele mitmeid valikuid teavituse kasutamiseks. Konsulteeri nende wiki detailse juhendiga loomaks URL-i oma teenusele. Olemasolu korral võib sinu valitud teavitus hõlmata ka lisaomadusi.", + "new-version": "Uus versioon saadaval!", + "notification": "Teade", + "refresh": "Värskenda", + "scheduled": "Ajastatud", + "something-went-wrong": "Miski läks valesti", + "subscribed-events": "Tellitud sündmused", + "test-message-sent": "Test-sõnum saadetud", + "message-sent": "Sõnum saadetud", + "new-notification": "Uus teade", + "event-notifiers": "Sündmuste märguanded", + "apprise-url-skipped-if-blank": "Apprise URL (kui on tühi, jäetakse vahele)", + "enable-notifier": "Luba teavitaja", + "what-events": "Millised sündmused peaks see teavitaja tellimaa?", + "user-events": "Kasutaja sündmused", + "mealplan-events": "Toiduplaani sündmused", + "when-a-user-in-your-group-creates-a-new-mealplan": "Kui kasutaja sinu grupis loob uue toiduplaani", + "shopping-list-events": "Toidunimekirja sündmused", + "cookbook-events": "Kokaraamatu sündmused", + "tag-events": "Märksõna sündmused", + "category-events": "Kategooria sündmused", + "when-a-new-user-joins-your-group": "Kui uus kasutaja liitub sinu grupiga", + "recipe-events": "Retsepti sündmused" + }, + "general": { + "add": "Lisa", + "cancel": "Tühista", + "clear": "Tühjenda", + "close": "Sulge", + "confirm": "Kinnita", + "confirm-how-does-everything-look": "Kuidas näeb kõik välja?", + "confirm-delete-generic": "Kas olete kindel, et soovite selle eemaldada?", + "copied_message": "Kopeeritud!", + "create": "Loo", + "created": "Loodud", + "custom": "Kohandatud", + "dashboard": "Töölaud", + "delete": "Kustuta", + "disabled": "Keelatud", + "download": "Lae alla", + "duplicate": "Duplitseeri", + "edit": "Muuda", + "enabled": "Lubatud", + "exception": "Erand", + "failed-count": "Ebaõnnestunud: {count}", + "failure-uploading-file": "Faili üleslaadimine ebaõnnestunud", + "favorites": "Lemmiud", + "field-required": "Väli nõutud", + "file-folder-not-found": "Faili/kausta ei leitud", + "file-uploaded": "Fail üles laetud", + "filter": "Filter", + "friday": "Reede", + "general": "Üldine", + "get": "Hangi", + "home": "Avaleht", + "image": "Pilt", + "image-upload-failed": "Pildi üleslaadimine ebaõnnestus", + "import": "Impordi", + "json": "JSON", + "keyword": "Otsingusõna", + "link-copied": "Link kopeeritud!", + "loading": "Laadimine", + "loading-events": "Sündmuste laadimine", + "loading-recipe": "Laeb retsepti...", + "loading-ocr-data": "Laeb OCR admeid", + "loading-recipes": "Laeb retsepte", + "message": "Sõnum", + "monday": "Esmaspäev", + "name": "Nimi", + "new": "Uus", + "never": "Uuem", + "no": "Ei", + "no-recipe-found": "Retsepti ei leitud", + "ok": "OK", + "options": "Valikud:", + "plural-name": "Nimi mitmuses", + "print": "Prindi", + "print-preferences": "Printimise eelistused", + "random": "Juhuslik", + "rating": "Hinnang", + "recent": "Hiljutine", + "recipe": "Retsept", + "recipes": "Retseptid", + "rename-object": "Nimeta {0} ümber", + "reset": "Lähtesta", + "saturday": "Laupäev", + "save": "Salvesta", + "settings": "Seaded", + "share": "Jaga", + "show-all": "Näita kõiki", + "shuffle": "Sega", + "sort": "Sorteeri", + "sort-ascending": "Sorteeri kasvavalt", + "sort-descending": "Sorteeri kahanevalt", + "sort-alphabetically": "Tähestikuline", + "status": "Staatus", + "subject": "Teema", + "submit": "Esita", + "success-count": "Õnnestunud {count}", + "sunday": "Pühapäev", + "system": "Süsteem", + "templates": "Mallid:", + "test": "Test", + "themes": "Teemad", + "thursday": "Neljapäev", + "title": "Pealkiri", + "token": "Identifikaator", + "tuesday": "Teisipäev", + "type": "Tüüp", + "update": "Uuenda", + "updated": "Uuendatud", + "upload": "Lae üles", + "url": "URL", + "view": "Vaade", + "wednesday": "Kolmapäev", + "yes": "Jah", + "foods": "Toidud", + "units": "Ühikud", + "back": "Tagasi", + "next": "Järgmine", + "start": "Alusta", + "toggle-view": "Muuda vaadet", + "date": "Kuupäev", + "id": "ID", + "owner": "Omanik", + "change-owner": "Muuda omanikku", + "date-added": "Kuupäev lisatud", + "none": "Puudub", + "run": "Käivita", + "menu": "Menüü", + "a-name-is-required": "Nimi on kohustuslik", + "delete-with-name": "Kustuta {name}", + "confirm-delete-generic-with-name": "Kas olete kindel, et soovite kirje {name} kustutada?", + "confirm-delete-own-admin-account": "Pane tähele, et sa proovid kustutada oma admin kasutajat! Seda tegevust ei saa tagasi võtta ning su kasutaja on jäädavalt kustutatud.", + "organizer": "Korraldaja", + "transfer": "Vii üle", + "copy": "Kopeeri", + "color": "Värv", + "timestamp": "Ajatempel", + "last-made": "Viimati tehtud", + "learn-more": "Lisateave", + "this-feature-is-currently-inactive": "See funktsioon on hetkel mitte-aktiivne", + "clipboard-not-supported": "Lõikelaud ei ole toetatud", + "copied-to-clipboard": "Kopeeritud lõikelauale", + "your-browser-does-not-support-clipboard": "Sinu lehitseja ei toeta lõikelauda.", + "copied-items-to-clipboard": "Midagi ei kopeeritud lõikelauale | Üks asi kopeeritud lõikelauale | {count} asja kopeeritud lõikelauale", + "actions": "Tegevused", + "selected-count": "Valitud: {count}", + "export-all": "Ekspordi kõik", + "refresh": "Värskenda", + "upload-file": "Lae fail üles", + "created-on-date": "Loodud: {0}", + "unsaved-changes": "Sul on salvestamata muudatusi. Kas sa tahad salvestada enne lehelt lahkumist? Vajuta OK salvestamiseks või Tühista, et muudatused tühistada.", + "clipboard-copy-failure": "Lõikepuhvrisse kopeerimine ebaõnnestus", + "confirm-delete-generic-items": "Kas oled kindel, et tahad kustutada järgnevad asjad?", + "organizers": "Korraldajad", + "caution": "Ettevaatust", + "show-advanced": "Kuva täpsemad sätted", + "add-field": "Lisa väli", + "date-created": "Loomise kuupäev", + "date-updated": "Üleslaadimise kuupäev" + }, + "group": { + "are-you-sure-you-want-to-delete-the-group": "Kas oled kindel, et tahad kustutada {groupName}", + "cannot-delete-default-group": "Ei saa kustutada vaikegruppi", + "cannot-delete-group-with-users": "Ei saa kustutada kasutajatega gruppi", + "confirm-group-deletion": "Kinnita grupi kustutamine", + "create-group": "Loo grupp", + "error-updating-group": "Tõrge grupi uuendamisel", + "group": "Grupp", + "group-deleted": "Grupp kustutatud", + "group-deletion-failed": "Grupi kustutamine ebaõnnestus", + "group-id-with-value": "Grupi ID: {groupID}", + "group-name": "Grupi nimi", + "group-not-found": "Gruppi ei leitud", + "group-token": "Grupi identifikaator", + "group-with-value": "Grupp: {groupID}", + "groups": "Grupid", + "manage-groups": "Halda gruppe", + "user-group": "Kasutajagrupp", + "user-group-created": "Kasutajagrupp loodud", + "user-group-creation-failed": "Kasutajagrupi loomine ebaõnnestus", + "settings": { + "keep-my-recipes-private": "Hoia minu retseptid privaatsena", + "keep-my-recipes-private-description": "Muudab teie rühma ja kõik retseptid privaatseks. Saate seda alati hiljem muuta." + }, + "manage-members": "Halda liikmeid", + "manage-members-description": "Hallake oma leibkonnaliikmete õigusi. {manage} annab liikmele juurdepääsu andmehalduslehele ja {invite} võimaldab kasutajal luua teistele kasutajatele kutselinke. Grupi omanikud ei saa oma õigusi ise muuta.", + "manage": "Halda", + "manage-household": "Halda leibkonda", + "invite": "Kutsu", + "looking-to-update-your-profile": "Kas soovida uuendada oma profiili?", + "default-recipe-preferences-description": "Need on lähteseaded kui loote uut retseepti oma grupis. Neid saab muuta iga retsepti jaoks individuaalselt retsepti sätete menüüs.", + "default-recipe-preferences": "Retsepti vaikevalikud", + "group-preferences": "Grupi sätted", + "private-group": "Privaatne grupp", + "private-group-description": "Grupi privaatseks määramine keelab kõik avaliku vaate valikud. See kirjutab üle kõik üksikud avaliku vaate seaded.", + "enable-public-access": "Luba avalik juurdepääs", + "enable-public-access-description": "Teeb grupi retseptid vaikimisi avalikuks ja lubab külalistel vaadata retsepte ilma sisse logimata", + "allow-users-outside-of-your-group-to-see-your-recipes": "Lubab kasutajatel väljaspool sinu gruppi näha retsepte", + "allow-users-outside-of-your-group-to-see-your-recipes-description": "Kui see on lubatud, saate konkreetsete retseptide jagamiseks ilma kasutaja loata kasutada avalikku jagamislinki. Kui see on keelatud, saate retsepte jagada ainult nende kasutajatega, kes on teie rühmas või kellel on eelnevalt loodud privaatne link.", + "show-nutrition-information": "Näita toitumisalast teavet", + "show-nutrition-information-description": "Kui see on lubatud, kuvatakse saadavuse korral toitumisalane teave retseptis. Kui toitumisalane teave pole saadaval, siis toitumisalast teavet ei kuvata", + "show-recipe-assets": "Näita retsepti manuseid", + "show-recipe-assets-description": "Kui lubatud, kuvatakse retsepti manused retseptis", + "default-to-landscape-view": "Vaikimisi horisontaalvaade", + "default-to-landscape-view-description": "Kui see on lubatud, kuvatakse retsepti pealkiri horisontaalvaates", + "disable-users-from-commenting-on-recipes": "Keela kasutajatel retsepte kommenteerida", + "disable-users-from-commenting-on-recipes-description": "Peidab retsepti kommentaaride sektsioon ning keela kommenteerimine", + "disable-organizing-recipe-ingredients-by-units-and-food": "Keela retsepti koostisosade järjestamine ühikute ja toiduainete järgi", + "disable-organizing-recipe-ingredients-by-units-and-food-description": "Peidab koostisosade \"Toit\", \"Ühik\", ja \"Kogus\" lahtrid ning käsitleb koostisosi tavateksti väljadena", + "general-preferences": "Üldised eelistused", + "group-recipe-preferences": "Grupi retseptide eelistused", + "report": "Teavita", + "report-with-id": "Raporti ID: {id}", + "group-management": "Grupi manageerimine", + "admin-group-management": "Administraatorite grupi manageerimine", + "admin-group-management-text": "Selle grupi muudatused on koheselt nähtavad", + "group-id-value": "Grupi ID: {0}", + "total-households": "Kokku leibkondi", + "you-must-select-a-group-before-selecting-a-household": "Sa pead valima grupi enne leibkonna valimist" + }, + "household": { + "household": "Leibkond", + "households": "Leibkonnad", + "user-household": "Kasutaja leibkond", + "create-household": "Loo leibkond", + "household-name": "Leibkonna nimi", + "household-group": "Leibkonna grupp", + "household-management": "Leibkonna manageerimine", + "manage-households": "Manageeri leibkondi", + "admin-household-management": "Administraatori leibkonna manageerimine", + "admin-household-management-text": "Selle leibkonna muudatused on koheselt nähtaval", + "household-id-value": "Leibkonna ID: {0}", + "private-household": "Privaatne leibkond", + "private-household-description": "Grupi privaatseks määramine keelab kõik avaliku vaate valikud. See kirjutab üle kõik üksikud avaliku vaate seaded.", + "lock-recipe-edits-from-other-households": "Lukusta retsepti muudatused teiste leibkondade eest", + "lock-recipe-edits-from-other-households-description": "Kui lubatud, ainult sinu leibkonna kasutajad saavad teha muudatusi sinu leibkonna retseptides", + "household-recipe-preferences": "Leibkonna retseptide seaded", + "default-recipe-preferences-description": "Need on vaikesätted uute retseptide loomiseks sinu leibkonnas. Neid saab muuta iga retsepti jaoks individuaalselt seadete menüü alt", + "allow-users-outside-of-your-household-to-see-your-recipes": "Luba kasutajatel väljaspool sinu leibkonda näha sinu retsepte", + "allow-users-outside-of-your-household-to-see-your-recipes-description": "Kui see on lubatud, saate konkreetsete retseptide jagamiseks ilma kasutaja loata kasutada avalikku jagamislinki. Kui see on keelatud, saate retsepte jagada ainult nende kasutajatega, kes on teie rühmas või kellel on eelnevalt loodud privaatne link.", + "household-preferences": "Leibkonna seaded" + }, + "meal-plan": { + "create-a-new-meal-plan": "Loo uus toitumismplaan", + "update-this-meal-plan": "Uuenda seda toitumismplaani", + "dinner-this-week": "Õhtusöök sellel nädalal", + "dinner-today": "Õhtusöök täna", + "dinner-tonight": "ÕHTUSÖÖK TÄNA", + "edit-meal-plan": "Muuda toitumisplaani", + "end-date": "Lõppkuupäev", + "group": "Grupp (beeta)", + "main": "Pearoog", + "meal-planner": "Toitumismplaneerija", + "meal-plans": "Toitumismplanid", + "mealplan-categories": "TOITUMISPLAANI KATEGOORIAD", + "mealplan-created": "Toitumisplaan loodud", + "mealplan-creation-failed": "Toitumisplaani loomine ebaõnnestus", + "mealplan-deleted": "Toitumisplaan kustutatud", + "mealplan-deletion-failed": "Toitumisplaani kustutamine ebaõnnestus", + "mealplan-settings": "Toitumisplaani sätted", + "mealplan-update-failed": "Toitumisplaani uuendamine ebaõnnestus", + "mealplan-updated": "Toitumisplaan uuendatud", + "mealplan-households-description": "Kui leibkonda pole valitud, siis saab retsepte lisada igast leibkonnast", + "any-category": "Kõik kategooriad", + "any-tag": "Kõik märksõnad", + "any-household": "Kõik leibkonnad", + "no-meal-plan-defined-yet": "Toitumisplaani pole veel defineeritud", + "no-meal-planned-for-today": "Ühtegi einet pole tänaseks planeeritud", + "numberOfDays-hint": "Päevade arv lehe laadimisel", + "numberOfDays-label": "Vaike päevade arv", + "only-recipes-with-these-categories-will-be-used-in-meal-plans": "Ainult selle kategooria retsepte kasutatakse Toitumisplaanis", + "planner": "Planeerija", + "quick-week": "Kiire nädalaplaan", + "side": "Kõrvalroog", + "sides": "Kõrvalroad", + "start-date": "Alguskuupäev", + "rule-day": "Reegli päev", + "meal-type": "Eine tüüp", + "breakfast": "Hommikusöök", + "lunch": "Lõuna", + "dinner": "Õhtusöök", + "type-any": "Kõik", + "day-any": "Kõik", + "editor": "Editor", + "meal-recipe": "Toidu retsept", + "meal-title": "Toidu nimi", + "meal-note": "Toidu märkus", + "note-only": "Ainult märge", + "random-meal": "Suvaline toit", + "random-dinner": "Suvaline õhtusöök", + "random-side": "Suvaline kõrvalroog", + "this-rule-will-apply": "See reegel kehtib {dayCriteria} {mealTypeCriteria}.", + "to-all-days": "kõikidel päevadel", + "on-days": "ajal {0}s", + "for-all-meal-types": "kõikide toidutüüpide jaoks", + "for-type-meal-types": "{0} toidutüübi jaoks", + "meal-plan-rules": "Toitumisplaani reeglid", + "new-rule": "Uus reegel", + "meal-plan-rules-description": "Sa võid luua reegleid valimaks automaatselt retsepte oma toitumisplaanis. Neid reegleid kasutatakse serveri poolt määramaks suvaliste retseptide kogumikku, millest koostatakse toitumisplaan. Kui reeglitel on sama päeva/tüübi piirangud, siis need reeglite filtrid liidetakse. Kuigi duplitseeritud reeglite loomine on võimlaik, on nende loomine praktikas ebavajalik", + "new-rule-description": "Luues uut reeglit toitumisplaanile saab piirata reegli kehtivus kindlale nädalapäevale ja/või kindlale toidutüübile. Et rakendada reeglit kõikidele päevadele või toidutüüpidele tuleb valida \"Kõik\", mis rakendab selle reegli kõikidele võimalikele päeva ja/või toidutüübi väärtustele.", + "recipe-rules": "Retsepti reeglid", + "applies-to-all-days": "Kehtib kõikide päevade kohta", + "applies-on-days": "Kehtib {0}l", + "meal-plan-settings": "Toitumisplaani sätted" + }, + "migration": { + "migration-data-removed": "Ületoomiste andmed eemaldatud", + "new-migration": "Uus ületoomine", + "no-file-selected": "Ühtegi faili ei ole valitud", + "no-migration-data-available": "Ületoomise andmed ei ole saadaval", + "previous-migrations": "Eelnevad ületoomised", + "recipe-migration": "Retsepti üle toomine", + "chowdown": { + "description": "Too Chowdowni andmed üle", + "description-long": "Meali toetab Chowdowni varamu formaati. Lae alla koodi varamu .zip failina ja lae see allolevasse kasti üles.", + "title": "Chowdown" + }, + "nextcloud": { + "description": "Too Nextcloud Cookbooki andmed üle", + "description-long": "Nextcloudi retsepte saab importida .zip failist, mis sisaldab Nextcloudi poolt salvestatud andmeid. Vaata alltoodud näidiskausta struktuuri, et veenduda retseptide importimise võimalikkuses.", + "title": "Nextcloud Cookbook" + }, + "copymethat": { + "description-long": "Mealie võimaldab importida retsepte \"Copy Me That\"-st. Ekspordi oma retseptid HTML formaati ning lae .zip allolevasse kasti.", + "title": "Copy Me That retseptihaldur" + }, + "paprika": { + "description-long": "Mealie saab importida retsepte Paprika rakendusest. Ekspordi oma retseptid Paprikast, nimeta ekspordi laiend .zip-ks ning lae see üles allolevasse kasti", + "title": "Paprika retseptihaldur" + }, + "mealie-pre-v1": { + "description-long": "Mealie saab importida retsepte Mealie rakendusest enne versiooni 1.0 väljalaskmist. Eksportige oma retseptid vanast installist ja laadige alla .zip fail. Pange tähele, et ekspordist saab importida ainult retsepte.", + "title": "Mealie v1.0-le eelnev versioon" + }, + "tandoor": { + "description-long": "Mealie saab importida retsepte Tandoor-ist. Ekspordi oma andmed \"Default\" formaadis ning lae .zip allolevasse kasti", + "title": "Tandoor-i retsptid" + }, + "recipe-data-migrations": "Retsepti andmete ületoomised", + "recipe-data-migrations-explanation": "Retsepte saab üle tuua teisest toetatud rakendusest Mealiesse. See on hea viis tegemaks algust Mealie-ga.", + "coming-from-another-application-or-an-even-older-version-of-mealie": "Tuled teisest rakendusest või hoopis vanemast Mealie versioonist? Uuri ületoomise võimalusi ning vaata kas su andmeid saab importida.", + "choose-migration-type": "Vali ületoomise tüüp", + "tag-all-recipes": "Märgista kõik retseptid märgiga {tag-name}", + "nextcloud-text": "Nextcloudi retsepte saab importida .zip failist, mis sisaldab Nextcloudi poolt salvestatud andmeid. Vaata alltoodud näidiskausta struktuuri, et veenduda retseptide importimise võimalikkuses.", + "chowdown-text": "Meali toetab Chowdowni varamu formaati. Lae alla koodi varamu .zip failina ja lae see allolevasse kasti üles.", + "recipe-1": "Retsept 1", + "recipe-2": "Retsept 2", + "paprika-text": "Mealie saab importida retsepte Paprika rakendusest. Ekspordi oma retseptid Paprikast, nimeta ekspordi laiend .zip-ks ning lae see üles allolevasse kasti", + "mealie-text": "Mealie saab importida retsepte Mealie rakendusest enne versiooni 1.0 väljalaskmist. Eksportige oma retseptid vanast installist ja laadige alla .zip fail. Pange tähele, et ekspordist saab importida ainult retsepte.", + "plantoeat": { + "title": "Plan to Eat", + "description-long": "Mealie saab importida retsepte Plan to Eat-st" + }, + "myrecipebox": { + "title": "My Recipe Box", + "description-long": "Mealie saab importida retsepte My Recipe Box-st. Ekspordi oma retsept CSV formaadis ning lae .csv fail allolevasse kasti." + }, + "recipekeeper": { + "title": "Recipe Keeper", + "description-long": "Mealie saab importida retsepte Recipe Keeper-st. Ekspordi oma retsept .zip formaadis ning lae .zip fail allolevasse kasti." + } + }, + "new-recipe": { + "bulk-add": "Mitme korraga lisamine", + "error-details": "Mealiesse saab importida ainult neid lehti, mis sisaldavad mikroandmeid või ld+jsonit. Enamik populaarseid retseptisaite toetavad seda. Kui teie saiti ei saa importida, kuid logis on JSON-andmeid, teatage sellest GitHubile koos URL-i ja üksikasjadega.", + "error-title": "Paistab, et me ei suutnud midagi leida", + "from-url": "Impordi retsept", + "github-issues": "GitHub issue-d", + "google-ld-json-info": "Google ld+json info", + "must-be-a-valid-url": "Peab olema valiidne URL", + "paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Kleebi oma retsepti andmed. Igat rida koheldakse kui nimekirja punkti", + "recipe-markup-specification": "Retsepti Markup spetsifikatsioon", + "recipe-url": "Retsepti URL", + "recipe-html-or-json": "Retsepti HTML või JSON", + "upload-a-recipe": "Retsepti üleslaadimne", + "upload-individual-zip-file": "Lae üles üksik .zip fail, mis eksporditi teisest Mealie ekspemplarist.", + "url-form-hint": "Kopeeri ja kleebi link oma lemmikust retsepti leheküljest", + "view-scraped-data": "Kuva omandatud andmed", + "trim-whitespace-description": "Eemalda alguses ning lõpus olevad tühikud ning tühjad read", + "trim-prefix-description": "Eemalda esimene tähemärk igast reast", + "split-by-numbered-line-description": "Proovib paragrahvi poolitada sobitades \"1)\" või \"1\". mustrid", + "import-by-url": "Impordi retsept URL-lt", + "create-manually": "Loo retsept manuaalselt", + "make-recipe-image": "Sea see retsepti pildiks" + }, + "page": { + "404-page-not-found": "404 Lehte ei leitud", + "all-recipes": "Kõik retseptid", + "new-page-created": "Uus leht loodud", + "page": "Leht", + "page-creation-failed": "Lehe loomine ebaõnnestus", + "page-deleted": "Leht kustutatud", + "page-deletion-failed": "Lehe kustutamine ebaõnnestus", + "page-update-failed": "Lehe uuendamine ebaõnnestus", + "page-updated": "Leht uuendatud", + "pages-update-failed": "Lehtede uuendamine ebaõnnetus", + "pages-updated": "Lehed uuendatud", + "404-not-found": "404 Lehte ei leitud", + "an-error-occurred": "Ilmnes viga" + }, + "recipe": { + "add-key": "Lisa võti", + "add-to-favorites": "Lisa lemmik", + "api-extras": "API lisad", + "calories": "Kalorid", + "calories-suffix": "kalorid", + "carbohydrate-content": "Süsivesikud", + "categories": "Kategooriad", + "cholesterol-content": "Kolesterool", + "comment-action": "Kommentaar", + "comment": "Kommentaar", + "comments": "Kommentaarid", + "delete-confirmation": "Kas sa oled kindel, et tahad seda retsepti kustutada?", + "delete-recipe": "Kustuta retsept", + "description": "Kirjeldus", + "disable-amount": "Deaktiveeri koostisosade kogused", + "disable-comments": "Keela kommentaarid", + "duplicate": "Duplitseeri retsept", + "duplicate-name": "Uue retsepti nimi", + "edit-scale": "Muuda skaalat", + "fat-content": "Rasv", + "fiber-content": "Kiudaine", + "grams": "grammi", + "ingredient": "Koostisosa", + "ingredients": "Koostisosad", + "insert-ingredient": "Lisa koostisosa", + "insert-section": "Lisa sektsioon", + "insert-above": "Lisa üles", + "insert-below": "Lisa alla", + "instructions": "Juhised", + "key-name-required": "Võtmenimi on nõutud", + "landscape-view-coming-soon": "Horisontaalvaade", + "milligrams": "milligrammi", + "new-key-name": "Uus võtmenimi", + "no-white-space-allowed": "Tühikud pole lubatud", + "note": "Märkus", + "nutrition": "Toitained", + "object-key": "Objekti võti", + "object-value": "Ombjekti väärtus", + "original-url": "Originaalne URL", + "perform-time": "Kokkamisele kuluv aeg", + "prep-time": "Ettevalmistuseks kuluv aeg", + "protein-content": "Proteiin", + "public-recipe": "Avalik retsept", + "recipe-created": "Retsept loodud", + "recipe-creation-failed": "Retsepti loomine ebaõnnestus", + "recipe-deleted": "Retsept kustutatud", + "recipe-image": "Retsepti pilt", + "recipe-image-updated": "Retsepti pilt uuendatud", + "recipe-name": "Retsepti nimi", + "recipe-settings": "Retsepti seaded", + "recipe-update-failed": "Retsepti uuendamine ebaõnnestus", + "recipe-updated": "Retsept uuendatud", + "remove-from-favorites": "Eemalda lemmikutet", + "remove-section": "Eemalda sektsioon", + "saturated-fat-content": "Küllastunud rasvhapped", + "save-recipe-before-use": "Salvesta retsept enne kasutusele võttu", + "section-title": "Sektsiooni pealkiri", + "servings": "Portsioneid", + "serves-amount": "Jätkub {amount} inimesele", + "share-recipe-message": "Ma soovin jagada oma {0} retsepti sinuga", + "show-nutrition-values": "Näita toiteväärtusi", + "sodium-content": "Naatrium", + "step-index": "Samm: {step}", + "sugar-content": "Suhkur", + "title": "Pealkiri", + "total-time": "Koguaeg", + "trans-fat-content": "Transrasv", + "unable-to-delete-recipe": "Ei saa retsepti kustutada", + "unsaturated-fat-content": "Küllastamata rasvhape", + "no-recipe": "Retsept puudub", + "locked-by-owner": "Omaniku poolt lukustatud", + "join-the-conversation": "Liitu vestlusega", + "add-recipe-to-mealplan": "Lisa retsept toitumisplaani", + "entry-type": "Sisendi tüüp", + "date-format-hint": "KK/PP/AAAA formaat", + "date-format-hint-yyyy-mm-dd": "AAAA-KK-PP formaat", + "add-to-list": "Lisa nimekirja", + "add-to-plan": "Lisa plaani", + "add-to-timeline": "Lisa ajateljele", + "recipe-added-to-list": "Retsept lisatud nimekirja", + "recipes-added-to-list": "Retseptid lisatud nimekirja", + "successfully-added-to-list": "Edukalt lisatud nimekirja", + "recipe-added-to-mealplan": "Retsept lisatud toitumisplaani", + "failed-to-add-recipes-to-list": "Retsepti lisamine nimekirja ebaõnnestus", + "failed-to-add-recipe-to-mealplan": "Retsepti lisamine toitumisplaani ebaõnnestus", + "failed-to-add-to-list": "Nimekirja lisamine ebaõnnestus", + "yield": "Saagikus", + "yields-amount-with-text": "", + "yield-text": "Saaduse tekst", + "quantity": "Kogus", + "choose-unit": "Vali ühik", + "press-enter-to-create": "Loomiseks vajuta Enter", + "choose-food": "Vali toit", + "notes": "Märkmed", + "toggle-section": "Jaotise sisse- ja väljalülitamine", + "see-original-text": "Vaata originaalteksti", + "original-text-with-value": "Originaaltekst: {originalText}", + "ingredient-linker": "Koostisosa linkija", + "linked-to-other-step": "Lingitud järgmise sammuga", + "auto": "Automaatne", + "cook-mode": "Küpsetusviis", + "link-ingredients": "Lingi koostisosad", + "merge-above": "Liida üleval asuvad", + "move-to-bottom": "Liiguta alla", + "move-to-top": "Liiguta üles", + "reset-scale": "Lähtesta skaala", + "decrease-scale-label": "Vähenda skaalat ühe võrra", + "increase-scale-label": "Suurenda skaalat ühe võrra", + "locked": "Lukustatud", + "public-link": "Avalik link", + "edit-timeline-event": "Muuda sündmust ajasjoonel", + "timeline": "Ajajoon", + "timeline-is-empty": "Ajajoon on tühi. Proovi valmistada see retsept!", + "timeline-no-events-found-try-adjusting-filters": "Sündmused puuduvad. Proovi kohandada oma otsingufiltreid.", + "group-global-timeline": "{groupName} Globaalne ajajoon", + "open-timeline": "Ava ajajoon", + "made-this": "Olen seda valmistanud", + "how-did-it-turn-out": "Kuidas tuli see välja?", + "user-made-this": "{user} on seda valmistanud", + "last-made-date": "Viimati valmistatud: {date}", + "api-extras-description": "Retsepti väljavõtted on Meali API oluline funktsioon. Neid saab kasutada kohandatud JSON-võtme/väärtuse paaride loomiseks retseptis, et viidata kolmandate osapoolte rakendustele. Neid klahve saab kasutada teabe edastamiseks, näiteks automaatse toimingu või kohandatud sõnumi käivitamiseks teie valitud seadmele.", + "message-key": "Sõnumi võti", + "parse": "Analüüsi", + "attach-images-hint": "Lisa pildid manustesse neid lohistades ja vabastades need redaktorisse", + "drop-image": "Vabasta pilt", + "enable-ingredient-amounts-to-use-this-feature": "Luba koostisosa kogused, et kasutada seda omadust", + "recipes-with-units-or-foods-defined-cannot-be-parsed": "Retsepte, millel kogused või toidud on defineeritud, ei saa analüüsida", + "parse-ingredients": "Analüüsi koostisosi", + "edit-markdown": "Muuda Markdowni", + "recipe-creation": "Retsepti loomine", + "select-one-of-the-various-ways-to-create-a-recipe": "Retsepti loomiseks vali üks viis võimalikest", + "looking-for-migrations": "Otsid ületoomiseid?", + "import-with-url": "Impordi kasutades URLi", + "create-recipe": "Loo retsept", + "create-recipe-description": "Loo uus retsept algusest", + "create-recipes": "Loo retseptid", + "import-with-zip": "Impordi .zip failist", + "create-recipe-from-an-image": "Retsepti loomine pildist", + "create-recipe-from-an-image-description": "Retsepti loomiseks lae üles selle pilt. Mealie üritab ekstraheerida pildil oleva teksti ning luua retsepti sellest kasutades AI-d.", + "crop-and-rotate-the-image": "Kärpige ja pöörake pilti nii, et ainult tekst oleks nähtaval ja see oleks suunatud ülespoole.", + "create-from-image": "Pildist loomine", + "should-translate-description": "Tõlgi retsept minu keelde", + "please-wait-image-procesing": "Palun oota, pilti töödeldakse veel. See võib võtta veidi aega.", + "bulk-url-import": "Hulgiimport URL-ist", + "debug-scraper": "Otsige Scraperis probleeme", + "create-a-recipe-by-providing-the-name-all-recipes-must-have-unique-names": "Loo retsept selle nime kasutades. Igal retseptil peab olema unikaalne nimi", + "new-recipe-names-must-be-unique": "Uue retsepti nimed peavad olema unikaalsed", + "scrape-recipe": "Retsepti lugemine", + "scrape-recipe-description": "Lugege retsept URL-i abil. Sisestage soovitud retsepti URL, ja Mealie proovib selle saidi retsepti jäädvustada ja lisada selle teie kogusse.", + "scrape-recipe-have-a-lot-of-recipes": "Sul on palju retsepte ja sa soovida lugeda kõik sisse üheaegselt?", + "scrape-recipe-suggest-bulk-importer": "Proovi hulgiimportimist.", + "scrape-recipe-have-raw-html-or-json-data": "Sul on töötlemata HTMLi või JSONi andmed?", + "scrape-recipe-you-can-import-from-raw-data-directly": "Sa võid otse importida töötlemata andmetest", + "import-original-keywords-as-tags": "Impordi originaal võtmesõnad siltidena", + "stay-in-edit-mode": "Püsige redigeerimisrežiimis", + "import-from-zip": "Impordi .zip-st", + "import-from-zip-description": "Impordi üks retsept, mis oli eksporditud teisest Mealie paigaldusest.", + "import-from-html-or-json": "Impordi HTMLst või JSONist", + "import-from-html-or-json-description": "Importige üks retsept töötlemata HTML- või JSON-failist. See on kasulik, kui teil on retsept lehelt, mida Mealie ei suuda tavaliselt jäädvustada, või mõnest muust välisest allikast.", + "json-import-format-description-colon": "JSON-faili importimiseks peab see olema õiges formaadis:", + "json-editor": "JSON Editor", + "zip-files-must-have-been-exported-from-mealie": ".zip failid peavad olema eksporditud Mealiest", + "create-a-recipe-by-uploading-a-scan": "Loo retsept laadides üles skanneeritud pilt.", + "upload-a-png-image-from-a-recipe-book": "Lae üles .png pilt retseptiraamatust", + "recipe-bulk-importer": "Retseptide hulgi-importimine", + "recipe-bulk-importer-description": "Retseptide hulgi-importimine võimaldab importida mitu retsepti korraga, asetades leheküljed taustaprogrammi järjekorda ja käivitades importimise ülesanded taustal. See on kasulik, kui lülitute ümber Mealie-le või kui soovite importida suure hulga retsepte.", + "set-categories-and-tags": "Sea kategooriad ning Sildid", + "bulk-imports": "Hulgi-impordid", + "bulk-import-process-has-started": "Hulgi-importimise protsess on alanud", + "bulk-import-process-has-failed": "Hulgi-importimise protsess ebaõnnestus", + "report-deletion-failed": "Raporti kustutamine ebaõnnestus", + "recipe-debugger": "Retsepti vigadeotsing", + "recipe-debugger-description": "Võtke selle retsepti URL, milles soovite vigu otsida, ja kleepige see siia. Retseptihaaraja otsib URL-i ja tulemused kuvatakse. Kui te ei näe tagastatud andmeid, ei toeta Mealie või selle kogumisteek lehte, mida proovite haarata.", + "use-openai": "Kasuta OpenAI-d", + "recipe-debugger-use-openai-description": "Kasutage tulemuste sõelumiseks kaabitsateegi asemel OpenAI-d. Kuigi URL-i kaudu retsepti loomisel tehakse seda kaabitsateegi mitte-toimimise korral automaatselt, saate seda proovida siin käsitsi.", + "debug": "Veaotsing", + "tree-view": "Puuvaade", + "recipe-servings": "Portsionite arv retseptis", + "recipe-yield": "Retsepti saagikus", + "recipe-yield-text": "Retsepti saagikuse tekst", + "unit": "Ühik", + "upload-image": "Lae pilt üles", + "screen-awake": "Hoia ekraan aktiivsena", + "remove-image": "Eemalda pilt", + "nextStep": "Järgmine samm", + "recipe-actions": "Retsepti toimingud", + "parser": { + "experimental-alert-text": "Mealie kasutab teie retseptide koostisosade analüüsimiseks ja ühikute ja tarvikute loomiseks loomulikku keeletöötlust. See funktsioon on katseline ja ei pruugi alati ootuspäraselt töötada. Kui te neid struktureeritud tulemusi ei soovi, võite vajutada nuppu \"Tühista\" ja teie muudatusi ei salvestata.", + "ingredient-parser": "Koostisosade analüüser", + "explanation": "Koostisosade sorteerimise tööriista kasutamiseks vajutage nuppu \"Sordi kõik\". Kui koostisosad on saadaval, saate üksused üle vaadata ja kontrollida, kas analüüsimine õnnestus. Mudeli usaldusväärtus on loetletud üksuse nimest paremal. See väärtus on üksikute väärtuste keskmine ja ei ole alati väga täpne.", + "alerts-explainer": "Teile antakse märku, kui leitakse sobiv toit või üksus, kuid seda pole andmebaasis olemas.", + "select-parser": "Vali parser", + "natural-language-processor": "Loomuliku keele töötlus", + "brute-parser": "Jõuline parser", + "openai-parser": "OpenAI parser", + "parse-all": "Parsi kõik", + "no-unit": "Ilma ühikuta", + "missing-unit": "Loo puuduv ühik: {unit}", + "missing-food": "Loo puuduv toit: {food}", + "no-food": "Toit puudub" + }, + "reset-servings-count": "Lähtesta portsionite arv", + "not-linked-ingredients": "Lisa-koostisosad" + }, + "recipe-finder": { + "recipe-finder": "Retsepti otsing", + "recipe-finder-description": "Otsi retsepte olemasolevate koostisosade järgi. Võimalik on ka filtreerida olemasolevate tööriistade järgi seades maksimaalse numbri puudu olevatest koostisosadest või tööriistadest.", + "selected-ingredients": "Valitud koostisosad", + "no-ingredients-selected": "Ühtegi koostisosa pole valitud", + "missing": "Puuduv", + "no-recipes-found": "Ühtegi retsepti ei leitud", + "no-recipes-found-description": "Proovi lisada veel koostisosi oma otsingupäringusse või proovi kohandada oma filtreid", + "include-ingredients-on-hand": "Kaasa olemasolevad olevad koostisosad", + "include-tools-on-hand": "Kaasa olemasolevad tööriistad", + "max-missing-ingredients": "Maksimaalne puuduvate koostisosade arv", + "max-missing-tools": "Maksimaalne puuduvate tööriistade arv", + "selected-tools": "Valitud tööriistad", + "other-filters": "Teised filtrid", + "ready-to-make": "Valmistamiseks valmis", + "almost-ready-to-make": "Peaaegu valmistamiseks valmis" + }, + "search": { + "advanced-search": "Täpsem otsing", + "and": "ja", + "exclude": "Jäta välja", + "include": "Kaasa", + "max-results": "Maksimaalne tulemuste arv", + "or": "Või", + "has-any": "Hõlmab ühtegi", + "has-all": "Hõlmab kõiki", + "clear-selection": "Tühjenda valik", + "results": "Tulemused", + "search": "Otsing", + "search-mealie": "Otsi Mealies (vajuta \"/\" )", + "search-placeholder": "Otsi ...", + "tag-filter": "Sildifilter", + "search-hint": "Vajuta \"/\"", + "advanced": "Lisavalikud", + "auto-search": "Automaatotsing", + "no-results": "Tulemusi ei leitud" + }, + "settings": { + "add-a-new-theme": "Lisa uus teema", + "admin-settings": "Administraatori sätted", + "backup": { + "backup-created": "Tagavarakoopia edukalt loodud", + "backup-created-at-response-export_path": "Tagavarakoopia loodud asukohta {path}", + "backup-deleted": "Tagavarakoopia kustutatud", + "restore-success": "Taastamine edukas", + "restore-fail": "Taastamine ebaõnnestus. Vaata oma serveri logidest täpsemat infot", + "backup-tag": "Tagavarakoopia silt", + "create-heading": "Loo tagavarakoopia", + "delete-backup": "Kustuta tagavarakoopia", + "error-creating-backup-see-log-file": "Tõrge tagavarakoopia loomises. Vaata logifaili", + "full-backup": "Täielik tagavarakoopia", + "import-summary": "Impordi kokkuvõte", + "partial-backup": "Osaline tagavarakoopia", + "unable-to-delete-backup": "Ei saa kustutada tagavarakoopiat", + "experimental-description": "Varukoopiad on teie saidi andmebaasi ja kataloogi hetktõmmised. See sisaldab kogu teavet ja te ei saa sellest teabe alamhulki eemaldada. See on võrreldav Mealie hetkepildiga konkreetsel ajahetkel. Need toimivad andmebaaside viisina andmete importimiseks ja eksportimiseks, samuti saidi varukoopiate tegemiseks välisesse asukohta.", + "backup-restore": "Taasta tagavarakoopiast", + "back-restore-description": "Selle varukoopia taastamisel kirjutatakse üle kõik teie andmebaasis ja andmebaasihalduris olevad andmed ning asendatakse need selle varukoopia sisuga. {cannot-be-undone} Kui taastamine õnnestub, logitakse teid välja.", + "cannot-be-undone": "Seda tegevust ei saa tagasi võtta - kasuta ettevaatusega.", + "postgresql-note": "Kui sa kasutad PostGreSQL-i, palun vaata {backup-restore-process} enne taastamist.", + "backup-restore-process-in-the-documentation": "varundamise/taastamise protsessi dokumentatsioonis", + "irreversible-acknowledgment": "Ma saan aru, et seda tegevust ei ole võimalik tagasi võtta, on destruktiivne, ning võib põhjustada andmekadu", + "restore-backup": "Taasta tagavarakoopiast" + }, + "backup-and-exports": "Tagavarakoopiad", + "change-password": "Muuda salasõna", + "current": "Versioon:", + "custom-pages": "Kohandatud lehed", + "edit-page": "Muuda lehekülge", + "events": "Sündmused", + "first-day-of-week": "Nädala esimene päev", + "group-settings-updated": "Grupisätted uuendatud", + "homepage": { + "all-categories": "Kõik kategooriad", + "card-per-section": "Kaartide arv sektsioonis", + "home-page": "Pealeht", + "home-page-sections": "Pealehe sektsioonid", + "show-recent": "Näita viimatiseid" + }, + "language": "Keel", + "latest": "Viimatised", + "local-api": "Kohalik API", + "locale-settings": "Piirkondlikud seaded", + "migrations": "Ränded", + "new-page": "Uus leht", + "notify": "Teavita", + "organize": "Organiseeri", + "page-name": "Lehe nimi", + "pages": "Lehed", + "profile": "Profiil", + "remove-existing-entries-matching-imported-entries": "Kustutage olemasolevad kirjed, mis vastavad imporditud kirjetele", + "set-new-time": "Määra uus aeg", + "settings-update-failed": "Seadete uuendamine ebaõnnestus", + "settings-updated": "Seaded uuendatud", + "site-settings": "Lehe seaded", + "theme": { + "accent": "Aktsent", + "dark": "Tume", + "default-to-system": "Süsteemi vaikeseade", + "error": "Tõrge", + "error-creating-theme-see-log-file": "Tõrge teema loomise. Vaata logifaili.", + "error-deleting-theme": "Tõrge teema kustutamisel", + "error-updating-theme": "Tõrge teema uuendamisel", + "info": "Info", + "light": "Hele", + "primary": "Peamine", + "secondary": "Sekundaarne", + "success": "Edu", + "switch-to-dark-mode": "Lülitage tumedale režiimile", + "switch-to-light-mode": "Lülitage heledale režiimile", + "theme-deleted": "Teema kustutatud", + "theme-name": "Teema nimi", + "theme-name-is-required": "Teema nimi on nõutud.", + "theme-saved": "Teema salvestatud", + "theme-updated": "Teema uuendatud", + "warning": "Hoiatus", + "light-mode": "Hele režiim", + "dark-mode": "Tume režiim" + }, + "token": { + "active-tokens": "AKTIIVSED IDENTIFIKAATORID", + "api-token": "API identifikaator", + "api-tokens": "API identifikaatorid", + "copy-this-token-for-use-with-an-external-application-this-token-will-not-be-viewable-again": "Kopeerige see identifikaator, et seda mõnes teises rakenduses kasutada. Pärast seda ei saa te seda identifikaatorit enam näha.", + "create-an-api-token": "Loo API identifikaator", + "token-name": "Identifikaatori nimi", + "generate": "Genereeri", + "you-have-token-count": "Sul ei ole aktiivseid identifikaatoreid.|Sul on üks aktiivne identifikaator.|Sul on {count} aktiivset identifikaatorit." + }, + "toolbox": { + "assign-all": "Määra kõik", + "bulk-assign": "Hulgi-määramine", + "new-name": "Uus nimi", + "no-unused-items": "Kasutamata esemed puuduvad", + "recipes-affected": "Mõjutatud pole ühtegi retsepti|Mõjutatud üks retsept|Mõjutatud {count} retsepti", + "remove-unused": "Eemalda kasutuseta", + "title-case-all": "Kirjutada kõik suurelt", + "toolbox": "Tööriistakast", + "unorganized": "Organiseerimata" + }, + "webhooks": { + "test-webhooks": "Testi Webhooke", + "the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "Allpool loetletud URL-id saavad järjekorra alusel Webhooke, mis sisaldavad toitumisplaanis olevaid retsepti andmeid. Praegu töötavad veebihaagid aadressil", + "webhook-url": "Webhooki URL", + "webhooks-caps": "WEBHOOKID", + "webhooks": "Webhookid", + "webhook-name": "Webhooki nimi", + "description": "Allolevad veebihaagid käivitatakse siis, kui päevaks on määratud toidukord. Kindlal kellaajal saadetakse webhookid koos päeva retseptiinfoga. Webhookide teostamise aeg pole täpne, kuid neid teostatakse iga viie minuti tagant." + }, + "bug-report": "Vearaport", + "bug-report-information": "Kasuta seda informatsiooni vearaporti koostamiseks. Sinu instantsi detailide edastamine arendajatele on parim meetod sinu probleemi kiireks lahendamiseks.", + "tracker": "Tracker", + "configuration": "Konfiguratsioon", + "docker-volume": "Dockeri failisüsteem", + "docker-volume-help": "Mealie nõuab, et frontendi konteiner ja taustaprogramm jagaksid sama Dockeri failisüsteemi või salvestusruumi. See tagab, et frontendi konteiner pääseb korralikult juurde kettale salvestatud piltidele ja ressurssidele.", + "volumes-are-misconfigured": "Failisüsteemid on valesti konfigureeritud.", + "volumes-are-configured-correctly": "Failisüsteemid on õigesti konfigureeritud", + "status-unknown-try-running-a-validation": "Olek teadmata. Proovi valideerida. ", + "validate": "Valideeri", + "email-configuration-status": "Emaili konfiguratsiooni olek", + "email-configured": "Email konfigureeritud", + "email-test-results": "Emaili testi tulemused", + "ready": "Valmis", + "not-ready": "Ei ole valmis - kontrolli keskkonna muutujaid", + "succeeded": "Õnnestus", + "failed": "Ebaõnnestus", + "general-about": "Üldine info", + "application-version": "Rakenduse versioon", + "application-version-error-text": "Sinu praegune versioon ({0}) ei ühti viimatise väljalaskega. Kaalu uuendamist viimatisele versioonile ({1}).", + "mealie-is-up-to-date": "Mealie on ajakohane", + "secure-site": "Turvaline lehekülg", + "secure-site-error-text": "Esitage kohaliku või turvalise serveri kaudu, kasutades https-i. Lõikelaud ja muud brauseri API-d ei pruugi töötada.", + "secure-site-success-text": "Lehekülge külastatakse läbi localhost-i või hhtps-i", + "server-side-base-url": "Serveri poolne baas-URL", + "server-side-base-url-error-text": "„BASE_URL” on API serveri vaikeväärtus. See põhjustab probleeme e-kirjade jms jaoks serveris loodud teavituslinkidega.", + "server-side-base-url-success-text": "Serveri poole URL ei kattu vaikeväärtusega", + "ldap-ready": "LDAP valmis", + "ldap-ready-error-text": "Kõik LDAP väärtused ei ole konfigureeritud.Seda teadet võib ignoreerida kui sa ei kasuta autentimist LDAPiga.", + "ldap-ready-success-text": "Kõigile LDAP muutujatele on väärtused seatud.", + "build": "Build", + "recipe-scraper-version": "Retsepti kaabitsa versioon", + "oidc-ready": "OIDC valmis", + "oidc-ready-error-text": "Kõik OIDC väärtused pole konfigureeritud. Seda teadet võib ignoreerida kui sa ei kasuta autentimist OIDC-ga.", + "oidc-ready-success-text": "Kõigile OIDC muutujatele on väärtused seatud.", + "openai-ready": "OpenAI on valmis", + "openai-ready-error-text": "Kõik OpenAI väärtused pole konfigureeritud. Seda teadet võib ignoreerida kui sa ei kasuta OpenAI funktsionaalsust.", + "openai-ready-success-text": "Kõigile OpenAI muutujatele on väärtused seatud." + }, + "shopping-list": { + "all-lists": "Kõik nimekirjad", + "create-shopping-list": "Loo ostunimekiri", + "from-recipe": "Retseptist", + "list-name": "Nimekirja nimi", + "new-list": "Uus Nimekiri", + "quantity": "Kogus: {0}", + "shopping-list": "Ostunimekiri", + "shopping-lists": "Ostunimekirjad", + "food": "Toit", + "note": "Märkus", + "label": "Silt", + "save-label": "Salvesta silt", + "linked-item-warning": "See üksus on lingitud ühele või rohkemale retseptile. Muutes ühikuid või toite võib anda ootamatuid tulemusi kui lisate või eemaldate retsepti sellest nimekirjast.", + "toggle-food": "Vaheta toit", + "manage-labels": "Halda silte", + "are-you-sure-you-want-to-delete-this-item": "Kas sa oled kindel, et tahad selle üksuse kustutada?", + "copy-as-text": "Kopeeri tekstina", + "copy-as-markdown": "Kopeeri Markdownina", + "delete-checked": "Kustuta valitud", + "toggle-label-sort": "Vaheta märgise sort", + "reorder-labels": "Muuda märgiste järjestust", + "uncheck-all-items": "Tühista kõik valikud", + "check-all-items": "Vali kõik üksused", + "linked-recipes-count": "Lingitud retsepte pole: üks lingitud retsept: {count} lingitud retsepti", + "items-checked-count": "Üksusi pole valitud: üks üksus on kontrollitud: {count} üksust on märgitud", + "no-label": "Märgis puudub", + "completed-on": "Lõpetatud {date}", + "you-are-offline": "Sa oled offline", + "you-are-offline-description": "Kogu funktsionaalsus pole saadaval offline režiimis. Sellegi poolest saad sa lisada, muuta ja eemaldada üksuseid, kuid sa ei saa sükroniseerida oma muudatusi serveriga enne kui oled tagasi online .", + "are-you-sure-you-want-to-check-all-items": "Kas oled kindel, et tahad valida kõik üksused?", + "are-you-sure-you-want-to-uncheck-all-items": "Kas oled kindel, et tahad tühistada kõik valikud?", + "are-you-sure-you-want-to-delete-checked-items": "Kas oled kindel, et tahad kustutada kõik valitud üksused?", + "no-shopping-lists-found": "Poenimekirja ei leitud" + }, + "sidebar": { + "all-recipes": "Kõik retseptid", + "backups": "Tagavarakoopiad", + "categories": "Kategooriad", + "cookbooks": "Kokaraamatud", + "dashboard": "Töölaud", + "home-page": "Pealeht", + "manage-users": "Halda kasutajaid", + "migrations": "Ränded", + "profile": "Profiil", + "search": "Otsing", + "site-settings": "Lehe seaded", + "tags": "Sildid", + "toolbox": "Tööriistakast", + "language": "Keel", + "maintenance": "Hooldamine", + "background-tasks": "Taustaülesanded", + "parser": "Tekstianalüüser", + "developer": "Arendaja", + "cookbook": "Kokaraamat", + "create-cookbook": "Loo uus kokaraamat" + }, + "signup": { + "error-signing-up": "Tõrge registreerimisel", + "sign-up": "Registreeri", + "sign-up-link-created": "Registreerimislink loodud", + "sign-up-link-creation-failed": "Registreerimislingi loomine ebaõnnestus", + "sign-up-links": "Registreerimislingid", + "sign-up-token-deleted": "Tegistreerimise identifikaator kustutatud", + "sign-up-token-deletion-failed": "Tegistreerimise identifikaatori kustutatamine ebaõnnestus", + "welcome-to-mealie": "Tere tulemast Mealiesse! Kui soovite selle rakenduse kasutajaks saada, peab teil olema kehtiv kutselink. Kui te pole kutset saanud, ei saa te registreeruda. Lingi saamiseks võtke ühendust lehe administraatoriga." + }, + "tag": { + "tag-created": "Silt loodud", + "tag-creation-failed": "Sildi loomine ebaõnnestus", + "tag-deleted": "Silt kustutatud", + "tag-deletion-failed": "Sildi kustutamine ebaõnnestus", + "tag-update-failed": "Sildi uuendamine ebaõnnestus", + "tag-updated": "Silt uuendatud", + "tags": "Sildid", + "untagged-count": "Sildistamata: {count}", + "create-a-tag": "Loo silt", + "tag-name": "Sildi nimi", + "tag": "Silt" + }, + "tool": { + "tools": "Tööriistad", + "on-hand": "Olemasolev", + "create-a-tool": "Loo tööriist", + "tool-name": "Tööriista nimi", + "create-new-tool": "Loo uus tööriist", + "on-hand-checkbox-label": "Kuva tööriistad, mis mulle juba kuuluvad (valitud)", + "required-tools": "Nõutud tööriistad", + "tool": "Tööriist" + }, + "user": { + "admin": "Administraator", + "are-you-sure-you-want-to-delete-the-link": "Kas sa oled kindel, et tahad kustutada linki {link}?", + "are-you-sure-you-want-to-delete-the-user": "Kas oled kindel, et tahad kustutada kasutaja {activeName} ID {activeId}?", + "auth-method": "Autentimise meetod", + "confirm-link-deletion": "Kinnita lingi kustutamine", + "confirm-password": "Kinnita salasõna", + "confirm-user-deletion": "Kinnita kasutaja kustutamine", + "could-not-validate-credentials": "Ei saanud valideerida tunnusandmeid", + "create-link": "Loo link", + "create-user": "Loo kasutaja", + "current-password": "Praegune salasõna", + "e-mail-must-be-valid": "E-mail peab olema kehtiv", + "edit-user": "Kasutaja muutmine", + "email": "Email", + "error-cannot-delete-super-user": "Viga! Ei saa peakasutajat ei saa kustutada", + "existing-password-does-not-match": "Parool ei ühti", + "full-name": "Täisnimi", + "generate-password-reset-link": "Genereeri link salasõna lähtestamiseks", + "invite-only": "Ainult kutsega", + "link-id": "Lingi ID", + "link-name": "Lingi nimi", + "login": "Sisselogimine", + "login-oidc": "Logi sisse kasutades", + "or": "või", + "logout": "Logi välja", + "manage-users": "Halda kasutajaid", + "manage-users-description": "Loo ja halda kasutajaid", + "new-password": "Uus salasõna", + "new-user": "Uus kasutaja", + "password-has-been-reset-to-the-default-password": "Salasõna on lähtestatud selle vaikeväärtusega.", + "password-must-match": "Salasõnad peavad kattuma", + "password-reset-failed": "Salasõna lähtestamine ebaõnnestus", + "password-updated": "Salasõna uuendatud", + "password": "Salasõna", + "password-strength": "Salasõna on {strength}", + "please-enter-password": "Palun sisesta oma uus salasõna.", + "register": "Registreeri", + "reset-password": "Lähtesta salasõna", + "sign-in": "Logi sisse", + "total-mealplans": "Kõik toitumisplaanid", + "total-users": "Kõik kasutajad", + "upload-photo": "Lae pilt üles", + "use-8-characters-or-more-for-your-password": "Kasutage oma salasõna jaoks vähemalt 8 tähemärki.", + "user-created": "Kasutaja loodud", + "user-creation-failed": "Kasutaja loomine ebaõnnestus", + "user-deleted": "Kasutaja kustutatud", + "user-id-with-value": "Kasutaja ID: {id}", + "user-id": "Kasutaja ID", + "user-password": "Kasutaja salasõna", + "user-successfully-logged-in": "Kasutaja edukalt sisse logitud", + "user-update-failed": "Kasutaja uuendamine ebaõnnestus", + "user-updated": "Kasutaja uuendatud", + "user": "Kasutaja", + "username": "Kasutajanimi", + "users-header": "KASUTAJAD", + "users": "Kasutajad", + "user-not-found": "Kasutajaid ei leitud", + "webhook-time": "Webhooki nimi", + "webhooks-enabled": "Webhookid lubatud", + "you-are-not-allowed-to-create-a-user": "Sul ei ole õigust luua uut kasutajat", + "you-are-not-allowed-to-delete-this-user": "Sul ei ole õigust kustutada seda kasutajat", + "enable-advanced-content": "Lubage täpsem sisu", + "enable-advanced-content-description": "Võimaldab täiustatud funktsioone, nagu retseptide skaleerimine, API võtmed, veebihaagid ja andmehaldus. Ärge muretsege, saate seda alati hiljem muuta.", + "favorite-recipes": "Lemmikretseptid", + "email-or-username": "Email või kasutajanimi", + "remember-me": "Mäleta mind", + "please-enter-your-email-and-password": "Palun sisesta oma email ja salasõna", + "invalid-credentials": "Valed kasutajaandmed", + "account-locked-please-try-again-later": "Kasutaja lukustatud. Palun proovi hiljem uuesti", + "user-favorites": "Kasutaja lemmikud", + "password-strength-values": { + "weak": "Nõrk", + "good": "Hea", + "strong": "Tugev", + "very-strong": "Väga tugev" + }, + "user-management": "Kasutajate haldamine", + "reset-locked-users": "Lähtesta lukustatud kasutajad", + "admin-user-creation": "Administraatori kasutaja loomine", + "admin-user-management": "Administraator-kasutaja haldamine", + "user-details": "Kasutaja üksikasjad", + "user-name": "Kasutaja nimi", + "authentication-method": "Autentimise meetod", + "authentication-method-hint": "Sellega määratakse kuidas kasutaja autendib Mealiega. Kui sa pole kindel, siis vali \"Mealie\"", + "permissions": "Õigused", + "administrator": "Administraator", + "user-can-invite-other-to-group": "Kasutaja võib kutsuda teisi gruppi", + "user-can-manage-group": "Kasutaja võib hallata gruppi", + "user-can-manage-household": "Kasutaja võib hallata leibkonda", + "user-can-organize-group-data": "Kasutaja võin organiseerida grupi andmeid", + "enable-advanced-features": "Luba laiendatud funktionaalsus", + "it-looks-like-this-is-your-first-time-logging-in": "Paistab, et see on sinu esimene sisse logimine", + "dont-want-to-see-this-anymore-be-sure-to-change-your-email": "Ei taha enam seda näha? Ära unusta muuta oma email kasutaja seadetes", + "forgot-password": "Unustasid salasõna", + "forgot-password-text": "Sisestage oma meiliaadress, et saada e-kiri uue salasõna määramiseks.", + "changes-reflected-immediately": "Selle kasutaja muudatused on koheselt nähtaval" + }, + "language-dialog": { + "translated": "tõlgitud", + "choose-language": "Vali keel", + "select-description": "Vali keel Mealie UI jaoks. See valik mõjutab ainult sind, ning ei muuda midagi teiste kasutajate jaoks.", + "how-to-contribute-description": "On midagi jäänud tõlkimata, on valesti tõlgitud või sinu keel puudub nimekirjast täielikult? {read-the-docs-link} panustamiseks!", + "read-the-docs": "Loe dokumentatsiooni" + }, + "data-pages": { + "foods": { + "merge-dialog-text": "Valitud toitude kombineerimine ühendab koostisained ja keskendub ühele roale. Lähtetoidud eemaldatakse ja kõik viited lähtetoidule värskendatakse, et osutada sihttoidule.", + "merge-food-example": "{food1} liitmine {food2}-ga", + "seed-dialog-text": "Lisage roogasid andmebaasi kohalikus keeles. See loob üle 200 levinud tooraine, mida saab kasutada andmebaasi korrastamiseks. Tooraineid tõlgitakse kogukonna tegevuste kaudu.", + "seed-dialog-warning": "Teie andmebaasis on juba mõned üksused. See funktsioon ei sobi duplikaatidega, peate neid käsitsi redigeerima.", + "combine-food": "Liida toidud", + "source-food": "Lähtetoid", + "target-food": "Sihttoit", + "create-food": "Loo toit", + "food-label": "Toidu silt", + "edit-food": "Muuda toitu", + "food-data": "Toidu andmed", + "example-food-singular": "nt:: Sibul", + "example-food-plural": "nt: Sibulad", + "label-overwrite-warning": "See määrab valitud sildi kõigile valitud toitudele ja potentsiaalselt asendab olemasolevad sildid.", + "on-hand-checkbox-label": "Sildi valimine eemaldab toidu vaikimisi nimekirjast kui lisate retsepti ostunimekirja." + }, + "units": { + "seed-dialog-text": "Alustage andmebaasi täitmist lisades tüüpilised elemendid kohalikus keeles.", + "combine-unit-description": "Valitud toitude kombineerimine ühendab koostisained ja keskendub ühele roale. {source-unit-will-be-deleted} eemaldatakse ja kõik viited lähtetoidule värskendatakse, et osutada sihttoidule.", + "combine-unit": "Liitke üksused", + "source-unit": "Lähteüksus", + "target-unit": "Sihtüksus", + "merging-unit-into-unit": "{0} liitmine {1}-ga", + "create-unit": "Loo üksus", + "abbreviation": "Lühend", + "plural-abbreviation": "Mitmuse lühend", + "description": "Kirjeldus", + "display-as-fraction": "Näita murdosana", + "use-abbreviation": "Näita lühendit", + "edit-unit": "Muuda lühendit", + "unit-data": "Üksuse andmed", + "use-abbv": "Kasuta lühendit", + "fraction": "Murdosa", + "example-unit-singular": "nt: Supilusikas", + "example-unit-plural": "nt: Supilusikad", + "example-unit-abbreviation-singular": "nt: sl", + "example-unit-abbreviation-plural": "nt: sl" + }, + "labels": { + "seed-dialog-text": "Alusta andmebaasi täitmist tüüpiliste siltidega kohalikus keeles.", + "edit-label": "Muuda silti", + "new-label": "Uus silt", + "labels": "Sildid", + "assign-label": "Määra silt" + }, + "recipes": { + "purge-exports": "Puhasta ekspordid", + "are-you-sure-you-want-to-delete-all-export-data": "Kas oled kindel, et tahad kustutada kõik ekspodi andmed", + "confirm-delete-recipes": "Kas oled kindel, et tahad kustutada järgnevad retseptid? Seda tegevust ei saa tagasi võtta.", + "the-following-recipes-selected-length-will-be-exported": "Järgnevad retseptid ({0}) eksporditakse.", + "settings-chosen-explanation": "Siin valitud sätted, välja arvatud lukustatud valik, rakenduvad kõikidele valitud retseptidele.", + "selected-length-recipe-s-settings-will-be-updated": "{count} retsepti sätted uuendatakse", + "recipe-data": "Retsepti andmed", + "recipe-data-description": "See jaotis võimaldab hallata oma retseptidega seotud teavet. Saate oma retseptides teha mitu hulgitöötlust, sealhulgas eksportida, kustutada, sildistada ja kategooriaid määrata.", + "recipe-columns": "Retsepti tulbad", + "data-exports-description": "See jaotis sisaldab linke saadaolevatele eksportimistele, mis on allalaadimiseks valmis. Need aeguvad, seega salvestage need veel kuni need on saadaval.", + "data-exports": "Admete eksportimine", + "tag": "Märgis", + "categorize": "Kategoriseeri", + "update-settings": "Uuenda seaded", + "tag-recipes": "Märgista retseptid", + "categorize-recipes": "Kategoriseeri retseptid", + "export-recipes": "Ekspordi retseptid", + "delete-recipes": "Kustuta retseptid", + "source-unit-will-be-deleted": "Lähteüksis kustutatakse" + }, + "recipe-actions": { + "recipe-actions-data": "Retsepti kasutusteave", + "new-recipe-action": "Uus retsepti tegevus", + "edit-recipe-action": "Muuda retsepti tegevust", + "action-type": "Tegevuse tüüp" + }, + "create-alias": "Loo alias", + "manage-aliases": "Halda aliaseid", + "seed-data": "Alusta andmebaasiga", + "seed": "Lisa baasandmed", + "data-management": "Andmehaldus", + "data-management-description": "Vali millisele andmekogule soovid teha muudatused", + "select-data": "Vali andmed", + "select-language": "Vali keel", + "columns": "Tulbad", + "combine": "Kombineeri", + "categories": { + "edit-category": "Muuda kategooriat", + "new-category": "Uus kategooria", + "category-data": "Kategooria andmed" + }, + "tags": { + "new-tag": "Uus silt", + "edit-tag": "Muuda silti", + "tag-data": "Sildi andmed" + }, + "tools": { + "new-tool": "Uus tööriist", + "edit-tool": "Muuda tööriista", + "tool-data": "Tööriista andmed" + } + }, + "user-registration": { + "user-registration": "Kasutaja registreerimine", + "registration-success": "Edukas registreerimine", + "join-a-group": "Liitu grupiga", + "create-a-new-group": "Loo uus grupp", + "provide-registration-token-description": "Sisestage registreerimistunnus, et liituda grupiga, millega soovite liituda. Peate selle hankima olemasolevalt rühmaliikmelt.", + "group-details": "Grupi detailid", + "group-details-description": "Sa pead looma grupi enne konto loomist. Sinu grupis oled vaid sina, kuid sa saad kutsuda teisi sinna hiljem. Su grupi liikmed saavad jagada toitumisplaane, ostunimekirju, retsepte ja muud!", + "use-seed-data": "Kasuta baasandmete infot.", + "use-seed-data-description": "Mealsiga on kaasas toiduainete, ühikute ja siltide kogu, mida saate kasutada oma rühma täitmiseks kasuliku teabega retseptide korraldamiseks.", + "account-details": "Konto üksikasjad" + }, + "validation": { + "group-name-is-taken": "Grupi nimi on juba kasutusel", + "username-is-taken": "Kasutajanimi on juba kasutusel", + "email-is-taken": "Meiliaadress on juba kasutusel", + "this-field-is-required": "Lahtri täitmine on kohustuslik" + }, + "export": { + "export": "Ekspordi", + "file-name": "Faili nimi", + "size": "Suurus", + "link-expires": "Link aegub" + }, + "recipe-share": { + "expiration-date": "Aegumise kuupäev", + "share-recipe": "Jaga retsepti", + "default-30-days": "Vaike päevade arv on 30", + "expires-at": "Aegub ajal", + "recipe-link-copied-message": "Retsepti link on kopeeritud puhvrisse" + }, + "banner-experimental": { + "title": "Eksperimentaalne funktsionaalsus", + "description": "See lehekülg sisaldab eksperimentaalseid või alles valmivaid funktsionaalsuseid. Vabandust segaduse eest.", + "issue-link-text": "Jälgi progressi siin" + }, + "form": { + "quantity-label-abbreviated": "Kogus" + }, + "markdown-editor": { + "preview-markdown-button-label": "Markdowni eelvaade" + }, + "demo": { + "info_message_with_version": "See on versiooni {version} demo", + "demo_username": "Kasutajanimi: {username}", + "demo_password": "Salasõna: {password}" + }, + "ocr-editor": { + "ocr-editor": "Ocr-redigeerija", + "toolbar": "Tööriistariba", + "selection-mode": "Valimise režiim", + "pan-and-zoom-picture": "Pildi liigutamine ja zoomimine", + "split-text": "Poolita tekst", + "preserve-line-breaks": "Jäta originaalsed reavahetused", + "split-by-block": "Poolita tekstiploki järgi", + "flatten": "Tasanda järgimata originaalset teksti vormindamist", + "help": { + "help": "Abi", + "mouse-modes": "Hiire režiimid", + "selection-mode": "Valikurežiim (vaikeväärtus)", + "selection-mode-desc": "See valikurežiim on peamine meetod andmete sisestamiseks:", + "selection-mode-steps": { + "draw": "Joonista ristkülik teksti ümber, mida soovid valida.", + "click": "Kliki ükskõik mis parempoolsel väljal ja siis kliki tagasi ristkülikul pildi kohal.", + "result": "Valitud tekst ilmub eelnevalt valitud välja sisse." + }, + "pan-and-zoom-mode": "Liigutamise ja zoomimise režiim", + "pan-and-zoom-desc": "Vali liigutamise ja zoomimise režiim klikkides ikoonile. See režiim võimaldab zoomida pildi sisse ja liikuda ringi, tehes suurte piltide kasutamise lihtsamaks.", + "split-text-mode": "Teksti poolitamise meetodid", + "split-modes": { + "line-mode": "Rearežiim (vaikeseade)", + "line-mode-desc": "Rearežiimis levitatakse teksti, säilitades samal ajal algsed reavahetused. See režiim on kasulik, kui kasutate hulgi-lisamist koostisosade loendis, kus üks koostisosa on üks rida.", + "block-mode": "Ploki režiim", + "block-mode-desc": "Ploki režiimis jaotatakse tekst plokkidesse. See režiim on kasulik kui tahad hulgi-lisada instructsioone, mis on tavaliselt kirjutatud paragrahvides.", + "flat-mode": "Tasandamise režiim", + "flat-mode-desc": "Tasandamise režiimis lisatakse tekst valitud retseptile ilma reavahetusteta." + } + } + }, + "admin": { + "maintenance": { + "storage-details": "Talletamise detailid", + "page-title": "Lehekülje hooldus", + "summary-title": "Kokkuvõte", + "button-label-get-summary": "Saa kokkuvõte", + "button-label-open-details": "Detailid", + "info-description-data-dir-size": "Andmete kausta suurus", + "info-description-log-file-size": "Logifaili suurus", + "info-description-cleanable-directories": "Puhastatavad kaustad", + "info-description-cleanable-images": "Puhastatavad pildid", + "storage": { + "title-temporary-directory": "Ajutine kaust (.temp)", + "title-backups-directory": "Tagavarakoopiate kaust (backups)", + "title-groups-directory": "Gruppide kaust (groups)", + "title-recipes-directory": "Retseptide kaust (recipes)", + "title-user-directory": "Kasutaja kaust (user)" + }, + "action-delete-log-files-name": "Kustuta logifailid", + "action-delete-log-files-description": "Kustutab kõik logifailid", + "action-clean-directories-name": "Puhasta kaustad", + "action-clean-directories-description": "Eemaldab kõik retseptide kaustad, millel pole kehtivat UUID-d.", + "action-clean-temporary-files-name": "Kustuta ajutised failid.", + "action-clean-temporary-files-description": "Eemaldab kõik failid ja kaustad .temp kaustas", + "action-clean-images-name": "Puhasta pildid", + "action-clean-images-description": "Eemaldab kõik pildid, mis ei lõppe .webp laiendiga", + "actions-description": "Haldustoimingud on {destructive_in_bold} ning peaks kasutama ettevaatusega. Kõgi nende tegevuste tegemine on {irreversible_in_bold}.", + "actions-description-destructive": "destrucktiivsed", + "actions-description-irreversible": "tagasivõetamatu", + "logs-action-refresh": "Uuenda logisid", + "logs-page-title": "Mealie logid", + "logs-tail-lines-label": "Piira ridu" + }, + "mainentance": { + "actions-title": "Tegevused" + }, + "ingredients-natural-language-processor": "Koostisosade loomuliku keele töötlemine", + "ingredients-natural-language-processor-explanation": "Mealie kasutab koostisosade analüüsimiseks ja töötlemiseks tingimuslikke juhuslikke välju (CRF). Koostisosade jaoks kasutatav mudel põhineb enam kui 100 000 koostisosal New York Timesi koostatud andmekogumist. Pange tähele, et mudelit õpetati ainult inglise keeles, seega võivad tulemused teiste keelte kasutamisel erineda. See leht on mudeli testimise mängumaa.", + "ingredients-natural-language-processor-explanation-2": "See ei ole täiuslik, kuid annab tavaliselt väga häid tulemusi ja on hea algus koostisosade käsitsi määramiseks üksikutele väljadele. Teise võimalusena võite kasutada \"jõulist\" protsessorit, mis kasutab koostisosade tuvastamiseks mustri sobitamise tehnikat.", + "nlp": "NLP", + "brute": "Jõuline", + "openai": "OpenAI", + "show-individual-confidence": "Näita individuaalseid usalfusväärsusi", + "ingredient-text": "Koostisosa tekst", + "average-confident": "{0} usaldusväärne", + "try-an-example": "Proovi näidet", + "parser": "Parser", + "background-tasks": "Taustaülesanded", + "background-tasks-description": "Siin sa saad vaadata kõiki jooksvaid taustaülesandeid ja nende staatust", + "no-logs-found": "Logisid ei leitud", + "tasks": "Ülesanded", + "setup": { + "first-time-setup": "Esimese korra seadistus", + "welcome-to-mealie-get-started": "Teretulemast Mealie-sse! Alustame", + "already-set-up-bring-to-homepage": "Ma olen juba vajalikud asjad seadistanud, vii mind pealehele", + "common-settings-for-new-sites": "Siin on mõned harilikud sätted uute lehekülgede jaoks", + "setup-complete": "Seadistus valmis!", + "here-are-a-few-things-to-help-you-get-started": "Siin on mõned asjad mis aitavad sul teha algust Mealie-ga", + "restore-from-v1-backup": "Kas sul on tagavarakoopia varasemast Mealie v1 instantsist? Sa saad taastada selle siin.", + "manage-profile-or-get-invite-link": "Halda oma profiili, või haara kutselink teistega jagamiseks." + }, + "debug-openai-services": "Otsi vigu OpenAI teenustes", + "debug-openai-services-description": "Kasuta seda lehekülge et otsida vigu OpenAI teenustes. Sa saad testida oma OpenAI ühendust ja näha tulemusi siin. Kui sul on pildi teenused lubatud, võid esitada ka pildi.", + "run-test": "Jooksuta testi", + "test-results": "Testi tulemused", + "group-delete-note": "Leibkondade või kasutajatega gruppe ei saa kustutada", + "household-delete-note": "Leibkonda koos kasutajatega ei saa kustutada" + }, + "profile": { + "welcome-user": "👋 Tere tulemast, {0}!", + "description": "Halda oma profiili, retsepte ja grupi seadeid.", + "invite-link": "Kutselink", + "get-invite-link": "Saa Kutselink", + "get-public-link": "Saa avalik link", + "account-summary": "Konto kokkuvõte", + "account-summary-description": "Siin on kokkuvõte sinu grupi infost", + "group-statistics": "Grupi statistika", + "group-statistics-description": "Sinu grupi statistika heidab pilgu sinu Mealie kasutusmustritesse.", + "household-statistics": "Leibkonna statistika", + "household-statistics-description": "Sinu leibkonna statistika heidab pilgu sinu Mealie kasutusmustritesse.", + "storage-capacity": "Salvestusruumi maht", + "storage-capacity-description": "Sinu salvestusruumi maht on sinu üleslaetud summa piltide ja manuste mahtude summa", + "personal": "Personaalne", + "personal-description": "Need seaded on personaalsed ega mõjuta teisi kasutajaid.", + "user-settings": "Kasutaja Seaded", + "user-settings-description": "Halda oma eelistusi, muuda oma salasõna, ja uuenda oma emaili.", + "api-tokens-description": "Halda oma API identifikaatoreid, et pääseda ligi välistele rakendustele", + "group-description": "Need üksused on jagatud sinu grupiga. Üksuse muutmine muudab selle kogu grupi jaoks!", + "group-settings": "Grupi seaded", + "group-settings-description": "Halda oma üldiseid grupi sätteid nagu privaatsussätted.", + "household-description": "Need üksused on jagatud sinu leibkonnaga. Üksuste muutmine muudab selle kogu leibkonna jaoks!", + "household-settings": "Leibkonna seaded", + "household-settings-description": "Halda oma leibkonna seadeid nagu toitumisplaan ja privaatsussätted.", + "cookbooks-description": "Halda retsepti kategooriate kollektsiooni ja genereeri nende jaoks leheküljed.", + "members": "Liikmed", + "members-description": "Vaata oma leibkonna liikmeid ja nende õiguseid..", + "webhooks-description": "Seadistage veebihaagid, mis käivituvad päevadel, mil teil on planeeritud söögikava.", + "notifiers": "Teavitajad", + "notifiers-description": "Sea üles email ja tõukemärguanded mis käivitatakse kindlatel sündmustel.", + "manage-data": "Halda andmeid", + "manage-data-description": "Halda oma Mealie andmeid: toidud, ühikud, kategooriad, sildid ja muu.", + "data-migrations": "Andmete rändlus", + "data-migrations-description": "Impordi oma olemasolevad andmed teisest rakendusest nagu Nextcloud retseptid ning Chowdown.", + "email-sent": "Email saadetud", + "error-sending-email": "Tõrge emaili saatmisel", + "personal-information": "Personaalne informatsioon", + "preferences": "Eelistused", + "show-advanced-description": "Näita edasisi funktsioone (API võtmed, veebihaagid, ja andmehaldus)", + "back-to-profile": "Tagasi profiilile", + "looking-for-privacy-settings": "Otsid privaatsussätteid?", + "manage-your-api-tokens": "Halda oma API identifikaatoreid", + "manage-user-profile": "Halda kasutaja profiili", + "manage-cookbooks": "Halda kokaraamatuid", + "manage-members": "Halda liikmeid", + "manage-webhooks": "Halda veebihaake", + "manage-notifiers": "Halda teavitajaid", + "manage-data-migrations": "Halda andmete migratsioone" + }, + "cookbook": { + "cookbooks": "Kokaraamatud", + "description": "Kokaraamatud on veel üks viis retseptide korraldamiseks, luues erinevaid filtreid. Kokaraamatu loomisel lisatakse külgribale kirje ja kõik retseptid, mis vastavad valitud filtritele, ilmuvad kokaraamatusse.", + "hide-cookbooks-from-other-households": "Peida kokaraamatud teiste leibkondade eest", + "hide-cookbooks-from-other-households-description": "Kui lubatud, ainult sinu leibkonna kokaraamatud ilmuvad külgribale", + "public-cookbook": "Avalik kokaraamat", + "public-cookbook-description": "Avalikke kokaraamatuid saab jagada Mealie-väliste kasutajatega. Neid näidatakse grupi leheküljel.", + "filter-options": "Filtreerimisseaded", + "filter-options-description": "Kui valitud on \"Nõua kõike\", siis valitud kokaraamat sisaldab ainult retsepte, mis sisaldavad kõiki valitud üksusi. See kehtib valijate iga alamhulga, mitte valitud üksuste üleselt.", + "require-all-categories": "Nõua kõik kategooriad", + "require-all-tags": "Nõua kõik sildid", + "require-all-tools": "Nõua kõik tööriistad", + "cookbook-name": "Kokaraamatu nimi", + "cookbook-with-name": "Kokaraamat {0}", + "household-cookbook-name": "{0} Kokaraamat {1}", + "create-a-cookbook": "Loo kokaraamat", + "cookbook": "Kokaraamat" + }, + "query-filter": { + "logical-operators": { + "and": "JA", + "or": "VÕI" + }, + "relational-operators": { + "equals": "võrdub", + "does-not-equal": "ei võrdu", + "is-greater-than": "on suurem kui", + "is-greater-than-or-equal-to": "on suurem või võrdne kui", + "is-less-than": "on vähem kui", + "is-less-than-or-equal-to": "on väiksem või võrdne kui" + }, + "relational-keywords": { + "is": "on", + "is-not": "ei ole", + "is-one-of": "on üks", + "is-not-one-of": "ei ole üks", + "contains-all-of": "sisaldab kõiki", + "is-like": "on nagu", + "is-not-like": "ei ole nagu" + } + } +} diff --git a/frontend/lang/messages/fi-FI.json b/frontend/lang/messages/fi-FI.json index 61548ca83..1c655a837 100644 --- a/frontend/lang/messages/fi-FI.json +++ b/frontend/lang/messages/fi-FI.json @@ -570,13 +570,6 @@ "increase-scale-label": "Suurenna mittakaavaa yhdellä", "locked": "Lukittu", "public-link": "Julkinen Linkki", - "timer": { - "kitchen-timer": "Munakello", - "start-timer": "Käynnistä ajastin", - "pause-timer": "Keskeytä ajastin", - "resume-timer": "Jatka ajastusta", - "stop-timer": "Pysäytä ajastin" - }, "edit-timeline-event": "Muokkaa Aikajanan Tapahtumaa", "timeline": "Aikajana", "timeline-is-empty": "Aikajana on tyhjä. Tee resepti.", diff --git a/frontend/lang/messages/fr-BE.json b/frontend/lang/messages/fr-BE.json index 3d07b64f1..4ea56dc68 100644 --- a/frontend/lang/messages/fr-BE.json +++ b/frontend/lang/messages/fr-BE.json @@ -570,13 +570,6 @@ "increase-scale-label": "Augmenter l’échelle de 1", "locked": "Verrouillé", "public-link": "Lien public", - "timer": { - "kitchen-timer": "Minuteur", - "start-timer": "Démarrer le minuteur", - "pause-timer": "Mettre en pause le minuteur", - "resume-timer": "Reprendre le minuteur", - "stop-timer": "Arrêter le minuteur" - }, "edit-timeline-event": "Modifier l’événement dans l’historique", "timeline": "Historique", "timeline-is-empty": "Pas encore d’historique. Essayez de cuisiner cette recette !", @@ -1352,7 +1345,7 @@ }, "cookbook": { "cookbooks": "Livres de recettes", - "description": "Les livres de recettes sont un autre moyen d’organiser des recettes en sélectionnant un ensemble précis de recettes, de classification et de filtres. La création d'un livre de recettes ajoute une entrée à la barre latérale et toutes les recettes avec les filtres choisies seront affichées dans le livre de recettes.", + "description": "Les livres de recettes sont un autre moyen d'organiser des recettes en sélectionnant un ensemble précis de recettes, de classification et de filtres. La création d'un livre de recettes ajoute une entrée à la barre latérale et toutes les recettes avec les filtres choisies seront affichées dans le livre de recettes.", "hide-cookbooks-from-other-households": "Masquer les livres de cuisine des autres foyers", "hide-cookbooks-from-other-households-description": "Lorsque cette option est activée, seuls les livres de cuisine de votre foyer apparaîtront dans la barre latérale", "public-cookbook": "Livre de recettes public", @@ -1384,8 +1377,8 @@ "relational-keywords": { "is": "est", "is-not": "n’est pas", - "is-one-of": "est un de", - "is-not-one-of": "n'est pas un de", + "is-one-of": "fait partie de", + "is-not-one-of": "ne fait pas partie de", "contains-all-of": "contient tout", "is-like": "est comme", "is-not-like": "n'est pas similaire à" diff --git a/frontend/lang/messages/fr-CA.json b/frontend/lang/messages/fr-CA.json index b3efa3ecd..f992a6a64 100644 --- a/frontend/lang/messages/fr-CA.json +++ b/frontend/lang/messages/fr-CA.json @@ -570,13 +570,6 @@ "increase-scale-label": "Augmenter l'échelle de 1", "locked": "Verrouillé", "public-link": "Lien public", - "timer": { - "kitchen-timer": "Minuteur", - "start-timer": "Démarrer le minuteur", - "pause-timer": "Mettre en pause le minuteur", - "resume-timer": "Reprendre le minuteur", - "stop-timer": "Arrêter le minuteur" - }, "edit-timeline-event": "Modifier l’événement dans l’historique", "timeline": "Historique", "timeline-is-empty": "Pas encore d’historique. Essayez de cuisiner cette recette !", diff --git a/frontend/lang/messages/fr-FR.json b/frontend/lang/messages/fr-FR.json index 51df58d26..d31ffa92a 100644 --- a/frontend/lang/messages/fr-FR.json +++ b/frontend/lang/messages/fr-FR.json @@ -570,13 +570,6 @@ "increase-scale-label": "Augmenter l’échelle de 1", "locked": "Verrouillé", "public-link": "Lien public", - "timer": { - "kitchen-timer": "Minuteur", - "start-timer": "Démarrer le minuteur", - "pause-timer": "Mettre en pause le minuteur", - "resume-timer": "Reprendre le minuteur", - "stop-timer": "Arrêter le minuteur" - }, "edit-timeline-event": "Modifier l’événement dans l’historique", "timeline": "Historique", "timeline-is-empty": "Pas encore d’historique. Essayez de cuisiner cette recette !", diff --git a/frontend/lang/messages/gl-ES.json b/frontend/lang/messages/gl-ES.json index 314826a70..bdc2f9093 100644 --- a/frontend/lang/messages/gl-ES.json +++ b/frontend/lang/messages/gl-ES.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/he-IL.json b/frontend/lang/messages/he-IL.json index 604649e31..eb4e96718 100644 --- a/frontend/lang/messages/he-IL.json +++ b/frontend/lang/messages/he-IL.json @@ -570,13 +570,6 @@ "increase-scale-label": "העלה קנה מידה ב-1", "locked": "נעול", "public-link": "כתובת פומבית", - "timer": { - "kitchen-timer": "טיימר למטבח", - "start-timer": "התחל את הטיימר", - "pause-timer": "השהה את הטיימר", - "resume-timer": "המשך את הטיימר", - "stop-timer": "עצור את הטיימר" - }, "edit-timeline-event": "עריכת אירוע ציר זמן", "timeline": "ציר זמן", "timeline-is-empty": "אין כלום בציר הזמן. נסה לעשות את המתכון הזה!", diff --git a/frontend/lang/messages/hr-HR.json b/frontend/lang/messages/hr-HR.json index a0c27be7c..5e55c01c1 100644 --- a/frontend/lang/messages/hr-HR.json +++ b/frontend/lang/messages/hr-HR.json @@ -570,13 +570,6 @@ "increase-scale-label": "Povećaj skaliranje za 1", "locked": "Zaključano", "public-link": "Javni Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Uredi Događaj Vremenske Crte", "timeline": "Vremenska Crta", "timeline-is-empty": "Još nema ništa na vremenskoj crti. Pokušajte napraviti ovaj recept!", diff --git a/frontend/lang/messages/hu-HU.json b/frontend/lang/messages/hu-HU.json index efbf70a54..9c81e850d 100644 --- a/frontend/lang/messages/hu-HU.json +++ b/frontend/lang/messages/hu-HU.json @@ -277,7 +277,7 @@ "admin-group-management-text": "A csoporthoz tartozó változtatások azonnal megjelennek.", "group-id-value": "Csoport azonosító: {0}", "total-households": "Háztartások száma", - "you-must-select-a-group-before-selecting-a-household": "You must select a group before selecting a household" + "you-must-select-a-group-before-selecting-a-household": "A háztartás kiválasztása előtt ki kell választania egy csoportot" }, "household": { "household": "Háztartás", @@ -518,7 +518,7 @@ "save-recipe-before-use": "Recept mentése használat előtt", "section-title": "Szakasz címe", "servings": "Adag", - "serves-amount": "Serves {amount}", + "serves-amount": "Adag {amount}", "share-recipe-message": "Szeretném megossztani veled a {0} receptemet.", "show-nutrition-values": "Tápértékek megjelenítése", "sodium-content": "Nátrium", @@ -570,13 +570,6 @@ "increase-scale-label": "Skála növelése 1-gyel", "locked": "Zárolt", "public-link": "Nyilvános link", - "timer": { - "kitchen-timer": "Konyhai időzítő", - "start-timer": "Időzítő elindítása", - "pause-timer": "Időzítő megállítása", - "resume-timer": "Időzítő folytatása", - "stop-timer": "Időzítő leállítása" - }, "edit-timeline-event": "Idővonal-esemény szerkesztése", "timeline": "Idővonal", "timeline-is-empty": "Az idővonalon még semmi sincs. Próbálja meg elkészíteni ezt a receptet!", @@ -644,7 +637,7 @@ "recipe-debugger-use-openai-description": "Használja az OpenAI-t az eredmények elemzésére, ahelyett, hogy a scraper könyvtárra hagyatkozna. Ha URL-címen keresztül hoz létre receptet, ez automatikusan megtörténik, ha a scraper könyvtár nem működik, ám itt manuálisan is tesztelheti.", "debug": "Hibakeresés", "tree-view": "Fa nézet", - "recipe-servings": "Recipe Servings", + "recipe-servings": "Recept tálalások", "recipe-yield": "Adagonkénti információk", "recipe-yield-text": "Recipe Yield Text", "unit": "Mennyiségi egység", @@ -669,24 +662,24 @@ "no-food": "Élelmiszer nélküli" }, "reset-servings-count": "Adagok számának visszaállítása", - "not-linked-ingredients": "Additional Ingredients" + "not-linked-ingredients": "Kiegészítő hozzávalók" }, "recipe-finder": { - "recipe-finder": "Recipe Finder", - "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", - "selected-ingredients": "Selected Ingredients", - "no-ingredients-selected": "No ingredients selected", - "missing": "Missing", - "no-recipes-found": "No recipes found", - "no-recipes-found-description": "Try adding more ingredients to your search or adjusting your filters", - "include-ingredients-on-hand": "Include Ingredients On Hand", - "include-tools-on-hand": "Include Tools On Hand", - "max-missing-ingredients": "Max Missing Ingredients", - "max-missing-tools": "Max Missing Tools", - "selected-tools": "Selected Tools", - "other-filters": "Other Filters", - "ready-to-make": "Ready to Make", - "almost-ready-to-make": "Almost Ready to Make" + "recipe-finder": "Receptkereső", + "recipe-finder-description": "Keressen recepteket a kéznél lévő összetevők alapján. A rendelkezésre álló eszközök alapján is szűrhet, és beállíthatja a hiányzó összetevők vagy eszközök maximális számát.", + "selected-ingredients": "Kiválasztott összetevők", + "no-ingredients-selected": "Nincsenek kiválasztott összetevők", + "missing": "Hiányzó", + "no-recipes-found": "Nem található recept", + "no-recipes-found-description": "Próbáljon meg több összetevőt hozzáadni a kereséshez, vagy állítsa be a szűrőket", + "include-ingredients-on-hand": "Beleértve a kéznél lévő összetevőket", + "include-tools-on-hand": "Beleértve a kéznél lévő eszközöket", + "max-missing-ingredients": "Maximálisan hiányzó összetevők száma", + "max-missing-tools": "Maximálisan hiányzó eszközök száma", + "selected-tools": "Kiválasztott eszközök", + "other-filters": "További szűrők", + "ready-to-make": "Előkészítve", + "almost-ready-to-make": "Majdnem készen áll" }, "search": { "advanced-search": "Részletes keresés", @@ -891,7 +884,7 @@ "are-you-sure-you-want-to-check-all-items": "Biztos, hogy minden elemet be akar jelölni?", "are-you-sure-you-want-to-uncheck-all-items": "Biztos, hogy minden elem kijelölését visszavonja?", "are-you-sure-you-want-to-delete-checked-items": "Biztosan törölni akarja az összes bejelölt elemet?", - "no-shopping-lists-found": "No Shopping Lists Found" + "no-shopping-lists-found": "Nem találhatók bevásárlólisták" }, "sidebar": { "all-recipes": "Minden recept", @@ -1303,7 +1296,7 @@ "profile": { "welcome-user": "👋 Üdvözöljük, {0}!", "description": "Profiljának, receptjeinek és csoportbeállításainak kezelése.", - "invite-link": "Invite Link", + "invite-link": "Meghívó link", "get-invite-link": "Meghívó link beszerzése", "get-public-link": "Nyilvánon link beszerzése", "account-summary": "Fiók áttekintése", @@ -1333,7 +1326,7 @@ "notifiers-description": "Állítson be olyan e-mail és push-értesítéseket, amelyek meghatározott események esetén lépnek működésbe.", "manage-data": "Adatok kezelése", "manage-data-description": "Az Ön Mealie adatainak kezelése: alapanyagok, mértékegységek, kategóriák, címkék, stb.", - "data-migrations": "Adat migráció", + "data-migrations": "Adatmigráció", "data-migrations-description": "Migrálja meglévő adatait más alkalmazásokból, például Nextcloud Recipes vagy Chowdown.", "email-sent": "E-mail elküldve", "error-sending-email": "Hiba történt az e-Mail küldésénél", @@ -1348,13 +1341,13 @@ "manage-members": "Tagok Kezelése", "manage-webhooks": "Webhookok kezelése", "manage-notifiers": "Értesítések kezelése", - "manage-data-migrations": "Adatok migrációjának kezelése" + "manage-data-migrations": "Adatmigráció kezelése" }, "cookbook": { "cookbooks": "Szakácskönyvek", "description": "A szakácskönyvek egy másik módja a receptek rendszerezésének a receptek, szervezők és egyéb szűrők keresztmetszeteinek létrehozásával. Egy szakácskönyv létrehozása egy bejegyzést ad az oldalsávhoz, és a kiválasztott szűrőkkel rendelkező összes recept megjelenik a szakácskönyvben.", - "hide-cookbooks-from-other-households": "Hide Cookbooks from Other Households", - "hide-cookbooks-from-other-households-description": "When enabled, only cookbooks from your household will appear on the sidebar", + "hide-cookbooks-from-other-households": "Szakácskönyvek elrejtése más háztartásoktól", + "hide-cookbooks-from-other-households-description": "Ha engedélyezve van, csak az Ön háztartásának szakácskönyvei jelennek meg az oldalsávban", "public-cookbook": "Nyilvános szakácskönyv", "public-cookbook-description": "A nyilvános szakácskönyvek megoszthatók a nem mealie felhasználókkal, és megjelennek a csoportod oldalán.", "filter-options": "Szűrési beállítások", diff --git a/frontend/lang/messages/is-IS.json b/frontend/lang/messages/is-IS.json index 9514f0165..9e029f4e6 100644 --- a/frontend/lang/messages/is-IS.json +++ b/frontend/lang/messages/is-IS.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/it-IT.json b/frontend/lang/messages/it-IT.json index 3966e6658..87ebe9907 100644 --- a/frontend/lang/messages/it-IT.json +++ b/frontend/lang/messages/it-IT.json @@ -526,7 +526,7 @@ "sugar-content": "Zuccheri", "title": "Titolo", "total-time": "Tempo Totale", - "trans-fat-content": "Trans-fat", + "trans-fat-content": "Grassi trans", "unable-to-delete-recipe": "Impossibile eliminare ricetta", "unsaturated-fat-content": "Grassi insaturi", "no-recipe": "Nessuna Ricetta", @@ -547,8 +547,8 @@ "failed-to-add-recipe-to-mealplan": "Impossibile aggiungere la ricetta al piano alimentare", "failed-to-add-to-list": "Errore durante l'aggiunta alla lista", "yield": "Porzioni", - "yields-amount-with-text": "Yields {amount} {text}", - "yield-text": "Yield Text", + "yields-amount-with-text": "Rendimenti {amount} {text}", + "yield-text": "Testo di rendimento", "quantity": "Quantità", "choose-unit": "Scegli Unità", "press-enter-to-create": "Premi invio per creare", @@ -570,13 +570,6 @@ "increase-scale-label": "Aumenta la scala di 1", "locked": "Bloccato", "public-link": "Link Pubblico", - "timer": { - "kitchen-timer": "Contaminuti da cucina", - "start-timer": "Avvia timer", - "pause-timer": "Metti in pausa il contaminuti", - "resume-timer": "Riprendi il contaminuti", - "stop-timer": "Arresta il Timer" - }, "edit-timeline-event": "Modifica evento sulla linea temporale", "timeline": "Linea temporale", "timeline-is-empty": "Niente sulla linea temporale. Prova a fare questa ricetta!", @@ -624,9 +617,9 @@ "stay-in-edit-mode": "Rimani in modalità Modifica", "import-from-zip": "Importa da Zip", "import-from-zip-description": "Importa una singola ricetta esportata da un'altra istanza di Mealie.", - "import-from-html-or-json": "Import from HTML or JSON", - "import-from-html-or-json-description": "Import a single recipe from raw HTML or JSON. This is useful if you have a recipe from a site that Mealie can't scrape normally, or from some other external source.", - "json-import-format-description-colon": "To import via JSON, it must be in valid format:", + "import-from-html-or-json": "Importa da HTML o JSON", + "import-from-html-or-json-description": "Importa una singola ricetta da HTML o JSON grezzi. Utile se si ha una ricetta proveniente da siti da cui solitamente Mealie non riesce a importare, o da qualche altra fonte esterna.", + "json-import-format-description-colon": "Per importare tramite JSON, deve essere in un formato valido:", "json-editor": "Editor JSON", "zip-files-must-have-been-exported-from-mealie": "I file .zip devono essere stati esportati da Mealie", "create-a-recipe-by-uploading-a-scan": "Crea una ricetta caricando una scansione.", @@ -644,9 +637,9 @@ "recipe-debugger-use-openai-description": "Usa OpenAI per analizzare i risultati invece di affidarsi alla libreria scraper. Quando si crea una ricetta tramite URL, questo viene fatto automaticamente se la libreria scraper fallisce, ma è possibile testarlo manualmente qui.", "debug": "Debug", "tree-view": "Visualizzazione ad Albero", - "recipe-servings": "Recipe Servings", + "recipe-servings": "Porzioni ricetta", "recipe-yield": "Resa Ricetta", - "recipe-yield-text": "Recipe Yield Text", + "recipe-yield-text": "Testo del rendimento ricetta", "unit": "Unità", "upload-image": "Carica immagine", "screen-awake": "Mantieni lo schermo acceso", @@ -668,19 +661,19 @@ "missing-food": "Crea cibo mancante: {food}", "no-food": "Nessun Alimento" }, - "reset-servings-count": "Reset Servings Count", + "reset-servings-count": "Reimposta conteggio porzioni", "not-linked-ingredients": "Ingredienti Aggiuntivi" }, "recipe-finder": { "recipe-finder": "Trova ricette", - "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", + "recipe-finder-description": "Cerca ricette in base agli ingredienti a portata di mano. Si può anche filtrare in base agli utensili che si ha a disposizione e impostare un numero massimo d'ingredienti o utensili mancanti.", "selected-ingredients": "Seleziona ingredienti", "no-ingredients-selected": "Nessun ingrediente selezionato", "missing": "Mancante", "no-recipes-found": "Nessuna ricetta trovata", "no-recipes-found-description": "Prova ad aggiungere altri ingredienti alla tua ricerca o a regolare i tuoi filtri", - "include-ingredients-on-hand": "Include Ingredients On Hand", - "include-tools-on-hand": "Include Tools On Hand", + "include-ingredients-on-hand": "Includi ingredienti a mano", + "include-tools-on-hand": "Includi strumenti a mano", "max-missing-ingredients": "Max Ingredienti Mancanti", "max-missing-tools": "Massimo Strumenti Mancanti", "selected-tools": "Strumenti Selezionati", @@ -1298,7 +1291,7 @@ "run-test": "Esegui test", "test-results": "Risultati dei test", "group-delete-note": "I gruppi con utenti o famiglie non possono essere eliminati", - "household-delete-note": "Households with users cannot be deleted" + "household-delete-note": "Le famiglie con utenti non possono essere eliminate" }, "profile": { "welcome-user": "👋 Benvenutǝ, {0}!", @@ -1352,9 +1345,9 @@ }, "cookbook": { "cookbooks": "Ricettari", - "description": "Cookbooks are another way to organize recipes by creating cross sections of recipes, organizers, and other filters. Creating a cookbook will add an entry to the side-bar and all the recipes with the filters chosen will be displayed in the cookbook.", - "hide-cookbooks-from-other-households": "Hide Cookbooks from Other Households", - "hide-cookbooks-from-other-households-description": "When enabled, only cookbooks from your household will appear on the sidebar", + "description": "I libri di cucina sono un altro modo per organizzare le ricette creando insiemi di ricette, ordinamenti e altri filtri. La creazione di un libro di cucina aggiungerà una voce alla barra laterale e tutte le ricette con i filtri scelti verranno visualizzate nel libro di cucina.", + "hide-cookbooks-from-other-households": "Nascondi i libri di cucina delle altre famiglie", + "hide-cookbooks-from-other-households-description": "Se abilitata, nella barra laterale appariranno solo libri di cucina della propria famiglia", "public-cookbook": "Ricettario Pubblico", "public-cookbook-description": "I ricettari pubblici possono essere condivisi con gli utenti non-mealie e saranno visualizzati nella pagina dei gruppi.", "filter-options": "Opzioni Filtro", diff --git a/frontend/lang/messages/ja-JP.json b/frontend/lang/messages/ja-JP.json index 5368e37cb..0472da4f7 100644 --- a/frontend/lang/messages/ja-JP.json +++ b/frontend/lang/messages/ja-JP.json @@ -570,13 +570,6 @@ "increase-scale-label": "スケールを 1 ずつ増やす", "locked": "ロック済み", "public-link": "公開リンク", - "timer": { - "kitchen-timer": "キッチンタイマー", - "start-timer": "タイマー開始", - "pause-timer": "タイマーを一時停止", - "resume-timer": "タイマーを再開", - "stop-timer": "タイマーを停止" - }, "edit-timeline-event": "タイムラインイベントの編集", "timeline": "タイムライン", "timeline-is-empty": "タイムラインにはまだ何もありません。レシピを作ってみてください!", diff --git a/frontend/lang/messages/ko-KR.json b/frontend/lang/messages/ko-KR.json index cedd55fef..9fe9208ff 100644 --- a/frontend/lang/messages/ko-KR.json +++ b/frontend/lang/messages/ko-KR.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "잠김", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "타이머 시작", - "pause-timer": "타이머 일시 정지", - "resume-timer": "타이머 재개", - "stop-timer": "타이머 정지" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "타임라인", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/lt-LT.json b/frontend/lang/messages/lt-LT.json index 6238a854b..609b3c903 100644 --- a/frontend/lang/messages/lt-LT.json +++ b/frontend/lang/messages/lt-LT.json @@ -570,13 +570,6 @@ "increase-scale-label": "Padidinti mastelį 1 k.", "locked": "Užrakinta", "public-link": "Vieša nuoroda", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Redaguoti laiko juostos įvykį", "timeline": "Laiko juosta", "timeline-is-empty": "Laiko juosta tuščia. Pabandykit pagaminti šį receptą!", diff --git a/frontend/lang/messages/lv-LV.json b/frontend/lang/messages/lv-LV.json index ff9f267b3..846d56fba 100644 --- a/frontend/lang/messages/lv-LV.json +++ b/frontend/lang/messages/lv-LV.json @@ -570,13 +570,6 @@ "increase-scale-label": "Palieliniet skalu par 1", "locked": "Bloķēts", "public-link": "Publiskā saite", - "timer": { - "kitchen-timer": "Virtuves taimeris", - "start-timer": "Sākuma taimeris", - "pause-timer": "Pauzes taimeris", - "resume-timer": "Atjaunot taimeri", - "stop-timer": "Apturēšanas taimeris" - }, "edit-timeline-event": "Laika skalas notikuma rediģēšana", "timeline": "Laika skala", "timeline-is-empty": "Pagaidām nekas laika skalā. Mēģiniet pagatavot šo recepti!", diff --git a/frontend/lang/messages/nl-NL.json b/frontend/lang/messages/nl-NL.json index 0312ea41b..f4d25c4f1 100644 --- a/frontend/lang/messages/nl-NL.json +++ b/frontend/lang/messages/nl-NL.json @@ -570,13 +570,6 @@ "increase-scale-label": "Verhoog de schaal met 1", "locked": "Vergrendeld", "public-link": "Openbare link", - "timer": { - "kitchen-timer": "Kookwekker", - "start-timer": "Kookwekker starten", - "pause-timer": "Kookwekker pauzeren", - "resume-timer": "Kookwekker hervatten", - "stop-timer": "Kookwekker stoppen" - }, "edit-timeline-event": "Bewerk tijdlijngebeurtenis", "timeline": "Tijdlijn", "timeline-is-empty": "Nog niets op de tijdlijn. Probeer dit recept te maken!", diff --git a/frontend/lang/messages/no-NO.json b/frontend/lang/messages/no-NO.json index 13312e0c7..027b4fdc1 100644 --- a/frontend/lang/messages/no-NO.json +++ b/frontend/lang/messages/no-NO.json @@ -8,7 +8,7 @@ "database-type": "Databasetype", "database-url": "URL til database", "default-group": "Standardgruppe", - "default-household": "Standard hushold", + "default-household": "Standard husholdning", "demo": "Demo", "demo-status": "Demostatus", "development": "Utvikling", @@ -51,7 +51,7 @@ "category": "Kategori" }, "events": { - "apprise-url": "Apprise URL", + "apprise-url": "Apprise-URL", "database": "Database", "delete-event": "Slett hendelse", "event-delete-confirmation": "Er du sikker på at du ønsker å slette denne hendelsen?", @@ -66,9 +66,9 @@ "subscribed-events": "Abonnerte hendelser", "test-message-sent": "Testmelding sendt", "message-sent": "Melding sendt", - "new-notification": "Ny varsel", + "new-notification": "Nytt varsel", "event-notifiers": "Hendelsesvarsler", - "apprise-url-skipped-if-blank": "Apprise URL (hoppes over hvis tom)", + "apprise-url-skipped-if-blank": "Apprise-URL (hoppes over hvis tom)", "enable-notifier": "Aktiver varslingsagenten", "what-events": "Hvilke hendelser skal denne varslingsagenten abonnere på?", "user-events": "Brukerhendelser", @@ -87,7 +87,7 @@ "clear": "Tøm", "close": "Lukk", "confirm": "Bekreft", - "confirm-how-does-everything-look": "Hvordan ser alt ut?", + "confirm-how-does-everything-look": "Hvordan ser ting ut?", "confirm-delete-generic": "Er du sikker på at du vil slette denne?", "copied_message": "Kopiert!", "create": "Opprett", @@ -148,7 +148,7 @@ "share": "Del", "show-all": "Vis alle", "shuffle": "Tilfeldig rekkefølge", - "sort": "Sortér", + "sort": "Sorter", "sort-ascending": "Sorter stigende", "sort-descending": "Sortere synkende", "sort-alphabetically": "Alfabetisk", @@ -193,7 +193,7 @@ "confirm-delete-own-admin-account": "Vær oppmerksom på at du holder på å slette din egen administrator-konto! Dette kan ikke angres og vil slette kontoen din permanent!", "organizer": "Organisator", "transfer": "Overfør", - "copy": "Kopiér", + "copy": "Kopier", "color": "Farge", "timestamp": "Tidsstempel", "last-made": "Sist laget", @@ -281,25 +281,25 @@ }, "household": { "household": "Husholdning", - "households": "Husholdning", + "households": "Husholdninger", "user-household": "Brukers husholdning", "create-household": "Opprett husholdning", - "household-name": "Husholdningenes navn", - "household-group": "Husholdningenes gruppe", - "household-management": "Administrer husholdninger", + "household-name": "Husholdningens navn", + "household-group": "Husholdningens gruppe", + "household-management": "Administrering av husholdninger", "manage-households": "Administrer husholdninger", "admin-household-management": "Admin husholdningsadministrasjon", "admin-household-management-text": "Endringer i denne husholdningen vil umiddelbart gjelde.", - "household-id-value": "Husholdningenes id: {0}", + "household-id-value": "Husholdningens id: {0}", "private-household": "Privat husholdning", "private-household-description": "Setting your household to private will disable all public view options. This overrides any individual public view settings", - "lock-recipe-edits-from-other-households": "Lock recipe edits from other households", + "lock-recipe-edits-from-other-households": "Lås redigering av oppskrifter fra andre husholdninger", "lock-recipe-edits-from-other-households-description": "When enabled only users in your household can edit recipes created by your household", "household-recipe-preferences": "Husholdningenes oppskriftsinnstillinger", "default-recipe-preferences-description": "Dette er standardinnstillingene når en ny oppskrift blir opprettet i din husholdning. Disse kan endres for individuelle oppskrifter i oppskrifters innstillinger.", "allow-users-outside-of-your-household-to-see-your-recipes": "Tillat brukere utenfor din husholdning å se oppskriftene dine", "allow-users-outside-of-your-household-to-see-your-recipes-description": "Når aktivert, kan du bruke en offentlig lenke for å dele spesifikke oppskrifter uten å autorisere brukeren. Når deaktivert, kan du kun dele oppskrifter med brukere som er i husholdningen din eller med en forhåndsgenerert privat lenke", - "household-preferences": "Husholdnings innstillinger" + "household-preferences": "Innstillinger for husholdning" }, "meal-plan": { "create-a-new-meal-plan": "Opprett en ny måltidsplan", @@ -313,12 +313,12 @@ "main": "Hovedrett", "meal-planner": "Måltidsplanlegger", "meal-plans": "Måltidsplaner", - "mealplan-categories": "MÅLTIDSPLANKATEGORIER", + "mealplan-categories": "MÅLTIDSPLAN-KATEGORIER", "mealplan-created": "Måltidsplan opprettet", "mealplan-creation-failed": "Opprettelse av måltidsplan mislyktes", "mealplan-deleted": "Måltidsplan slettet", "mealplan-deletion-failed": "Sletting av måltidsplan mislyktes", - "mealplan-settings": "Måltidsplaninnstillinger", + "mealplan-settings": "Innstillinger for måltidsplan", "mealplan-update-failed": "Oppdatering av måltidsplan mislyktes", "mealplan-updated": "Måltidsplan oppdatert", "mealplan-households-description": "If no household is selected, recipes can be added from any household", @@ -426,7 +426,7 @@ "error-details": "Bare nettsteder som inneholder ld+json eller mikrodata kan importeres av Mealie. De største oppskriftsnettstedene støtter denne datastrukturen. Dersom nettstedet ditt ikke kan importeres, men det er json-data i loggen, må du rapportere et GitHub-problem med nettadressen og data.", "error-title": "Ser ut til at ingenting ble funnet", "from-url": "Importer en oppskrift", - "github-issues": "GitHub-problemer", + "github-issues": "GitHub Issues", "google-ld-json-info": "Google ld+json-informasjon", "must-be-a-valid-url": "Må være en gyldig nettadresse", "paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list": "Lim inn oppskriftsdataene. Hver linje blir behandlet som et element i en liste", @@ -467,7 +467,7 @@ "calories-suffix": "kalorier", "carbohydrate-content": "Karbohydrater", "categories": "Kategorier", - "cholesterol-content": "Cholesterol", + "cholesterol-content": "Kolesterol", "comment-action": "Kommenter", "comment": "Kommentar", "comments": "Kommentarer", @@ -514,7 +514,7 @@ "recipe-updated": "Oppskrift oppdatert", "remove-from-favorites": "Fjern fra favoritter", "remove-section": "Fjern seksjon", - "saturated-fat-content": "Saturated fat", + "saturated-fat-content": "Mettet fett", "save-recipe-before-use": "Lagre oppskrift før bruk", "section-title": "Seksjonstittel", "servings": "Porsjoner", @@ -526,9 +526,9 @@ "sugar-content": "Sukker", "title": "Tittel", "total-time": "Total tid", - "trans-fat-content": "Trans-fat", + "trans-fat-content": "Transfett", "unable-to-delete-recipe": "Kan ikke slette oppskrift", - "unsaturated-fat-content": "Unsaturated fat", + "unsaturated-fat-content": "Umettet fett", "no-recipe": "Ingen oppskrift", "locked-by-owner": "Låst av eier", "join-the-conversation": "Delta i samtalen", @@ -547,7 +547,7 @@ "failed-to-add-recipe-to-mealplan": "Klarte ikke å legge til oppskrift i måltidsplan", "failed-to-add-to-list": "Klarte ikke å legge til oppskrift i listen", "yield": "Gir", - "yields-amount-with-text": "Yields {amount} {text}", + "yields-amount-with-text": "Gir {amount} {text}", "yield-text": "Yield Text", "quantity": "Antall", "choose-unit": "Velg enhet", @@ -570,23 +570,16 @@ "increase-scale-label": "Øk skala med 1", "locked": "Låst", "public-link": "Offentlig lenke", - "timer": { - "kitchen-timer": "Kjøkkentimer", - "start-timer": "Start nedtelling", - "pause-timer": "Pause nedtelling", - "resume-timer": "Fortsett nedtelling", - "stop-timer": "Stopp nedtelling" - }, "edit-timeline-event": "Endre tidslinjehendelser", "timeline": "Tidslinje", "timeline-is-empty": "Ingenting på tidslinjen ennå. Prøv å lage denne oppskriften!", "timeline-no-events-found-try-adjusting-filters": "Ingen hendelser funnet. Prøv å endre søkefiltrene.", "group-global-timeline": "{groupName} Global tidslinje", "open-timeline": "Åpne tidslinje", - "made-this": "Jeg har laget denne", - "how-did-it-turn-out": "Hvordan ble den?", - "user-made-this": "{user} har laget denne", - "last-made-date": "Sist laget: {date}", + "made-this": "Jeg har laget dette", + "how-did-it-turn-out": "Hvordan ble det?", + "user-made-this": "{user} har laget dette", + "last-made-date": "Sist laget {date}", "api-extras-description": "Ekstramaterialer til oppskrifter er en viktig funksjon i Mealie API-en. De lar deg opprette egendefinerte JSON-nøkkel/verdi-par innenfor en oppskrift for å referere fra tredjepartsapplikasjoner. Du kan bruke disse nøklene til å gi informasjon for eksempel for å utløse automatiseringer eller egendefinerte meldinger som skal videreformidles til ønsket enhet.", "message-key": "Meldingsnøkkel", "parse": "Analyser", @@ -617,7 +610,7 @@ "scrape-recipe": "Skrap oppskrift", "scrape-recipe-description": "Skrap en oppskrift ved bruk av nettadresse. Oppgi nettadressen til nettstedet du vil skrape, så vil Mealie forsøke å skrape oppskriften fra den siden og legge den til i samlingen din.", "scrape-recipe-have-a-lot-of-recipes": "Har du mange oppskrifter du ønsker å skrape samtidig?", - "scrape-recipe-suggest-bulk-importer": "Prøv masseimporten", + "scrape-recipe-suggest-bulk-importer": "Prøv masseimportering", "scrape-recipe-have-raw-html-or-json-data": "Have raw HTML or JSON data?", "scrape-recipe-you-can-import-from-raw-data-directly": "You can import from raw data directly", "import-original-keywords-as-tags": "Importer originale søkeord som emneord", @@ -644,7 +637,7 @@ "recipe-debugger-use-openai-description": "Bruke OpenAI til å analysere resultatene i stedet for å basere seg på scraper-biblioteket. Når du oppretter en oppskrift via URL, blir dette gjort automatisk hvis scraper-biblioteket mislykkes, men du kan teste det manuelt her.", "debug": "Feilsøk", "tree-view": "Trevisning", - "recipe-servings": "Recipe Servings", + "recipe-servings": "Oppskriftsporsjoner", "recipe-yield": "Utbytte av oppskrift", "recipe-yield-text": "Recipe Yield Text", "unit": "Enhet", @@ -655,7 +648,7 @@ "recipe-actions": "Oppskriftshandlinger", "parser": { "experimental-alert-text": "Mealie bruker naturlig språkbehandling til å analysere og lage enheter og matvarer til oppskriftsingrediensene dine. Denne funksjonen er eksperimentell og fungerer kanskje ikke som forventet. Hvis du foretrekker ikke å bruke de foreslåtte resultatene, kan du velge 'Avbryt', og endringene dine vil ikke bli lagret.", - "ingredient-parser": "Ingrediens-parser", + "ingredient-parser": "Ingrediens-analyserer", "explanation": "For å bruke ingrediens-forslag, klikk på 'Analyser alle' for å starte prosessen. Når de prosesserte ingrediensene er tilgjengelige, kan du se gjennom elementene og kontrollere at de er sjekket korrekt. Modellens tillitsverdi vises på høyre side av elementet. Denne scoren er et gjennomsnitt av alle de individuelle poengene og alltid er ikke helt nøyaktige.", "alerts-explainer": "Varsler vil bli vist dersom en matchende matvare eller enhet blir funnet, men ikke finnes i databasen.", "select-parser": "Velg analyserer", @@ -668,25 +661,25 @@ "missing-food": "Opprett manglende mat: {food}", "no-food": "Ingen matvarer" }, - "reset-servings-count": "Reset Servings Count", - "not-linked-ingredients": "Additional Ingredients" + "reset-servings-count": "Nullstill antall porsjoner", + "not-linked-ingredients": "Tilleggsingredienser" }, "recipe-finder": { - "recipe-finder": "Recipe Finder", + "recipe-finder": "Oppskriftsfinner", "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", - "selected-ingredients": "Selected Ingredients", - "no-ingredients-selected": "No ingredients selected", - "missing": "Missing", - "no-recipes-found": "No recipes found", + "selected-ingredients": "Velg ingredienser", + "no-ingredients-selected": "Ingen ingredienser valgt", + "missing": "Mangler", + "no-recipes-found": "Ingen oppskrifter funnet", "no-recipes-found-description": "Try adding more ingredients to your search or adjusting your filters", "include-ingredients-on-hand": "Include Ingredients On Hand", "include-tools-on-hand": "Include Tools On Hand", - "max-missing-ingredients": "Max Missing Ingredients", - "max-missing-tools": "Max Missing Tools", - "selected-tools": "Selected Tools", - "other-filters": "Other Filters", - "ready-to-make": "Ready to Make", - "almost-ready-to-make": "Almost Ready to Make" + "max-missing-ingredients": "Maks antall manglende ingredienser", + "max-missing-tools": "Maks antall manglende redskaper", + "selected-tools": "Velg redskaper", + "other-filters": "Andre filtre", + "ready-to-make": "Klar til å lages", + "almost-ready-to-make": "Nesten klar til å lages" }, "search": { "advanced-search": "Avansert søk", @@ -891,7 +884,7 @@ "are-you-sure-you-want-to-check-all-items": "Er du sikker på at du vil velge alle elementer?", "are-you-sure-you-want-to-uncheck-all-items": "Er du sikker på at du vil fjerne valg av alle elementer?", "are-you-sure-you-want-to-delete-checked-items": "Er du sikker på at du vil slette alle valgte elementer?", - "no-shopping-lists-found": "No Shopping Lists Found" + "no-shopping-lists-found": "Ingen handlelister funnet" }, "sidebar": { "all-recipes": "Alle oppskrifter", @@ -1293,17 +1286,17 @@ "restore-from-v1-backup": "Har du en sikkerhetskopi fra en tidligere forekomst av Mealie v1? Du kan gjenopprette den her.", "manage-profile-or-get-invite-link": "Administrer din egen profil, eller hent en invitasjonslenke for å dele med andre." }, - "debug-openai-services": "Debug OpenAI Services", + "debug-openai-services": "Feilsøk OpenAI-tjenester", "debug-openai-services-description": "Use this page to debug OpenAI services. You can test your OpenAI connection and see the results here. If you have image services enabled, you can also provide an image.", - "run-test": "Run Test", - "test-results": "Test Results", + "run-test": "Kjør test", + "test-results": "Testresultater", "group-delete-note": "Groups with users or households cannot be deleted", "household-delete-note": "Households with users cannot be deleted" }, "profile": { "welcome-user": "Velkommen, {0}!", "description": "Administrer din profil, oppskrifter og gruppeinnstillinger.", - "invite-link": "Invite Link", + "invite-link": "Invitasjonslenke", "get-invite-link": "Få invitasjonslenke", "get-public-link": "Få offentlig lenke", "account-summary": "Kontosammendrag", @@ -1370,25 +1363,25 @@ }, "query-filter": { "logical-operators": { - "and": "AND", - "or": "OR" + "and": "OG", + "or": "ELLER" }, "relational-operators": { - "equals": "equals", - "does-not-equal": "does not equal", - "is-greater-than": "is greater than", - "is-greater-than-or-equal-to": "is greater than or equal to", - "is-less-than": "is less than", - "is-less-than-or-equal-to": "is less than or equal to" + "equals": "er lik", + "does-not-equal": "er ikke lik", + "is-greater-than": "er større enn", + "is-greater-than-or-equal-to": "er større enn eller lik", + "is-less-than": "er mindre enn", + "is-less-than-or-equal-to": "er mindre enn eller lik" }, "relational-keywords": { - "is": "is", - "is-not": "is not", - "is-one-of": "is one of", - "is-not-one-of": "is not one of", - "contains-all-of": "contains all of", - "is-like": "is like", - "is-not-like": "is not like" + "is": "er", + "is-not": "er ikke", + "is-one-of": "er en av", + "is-not-one-of": "er ikke en av", + "contains-all-of": "inneholder alle", + "is-like": "er som", + "is-not-like": "er ikke som" } } } diff --git a/frontend/lang/messages/pl-PL.json b/frontend/lang/messages/pl-PL.json index 8f4384069..313fd9626 100644 --- a/frontend/lang/messages/pl-PL.json +++ b/frontend/lang/messages/pl-PL.json @@ -518,7 +518,7 @@ "save-recipe-before-use": "Zapisz przepis przed użyciem", "section-title": "Tytuł rozdziału", "servings": "Porcje", - "serves-amount": "{amount} porcji", + "serves-amount": "Porcje {amount}", "share-recipe-message": "Chcę podzielić się z Tobą moim przepisem na {0}.", "show-nutrition-values": "Pokaż wartości odżywcze", "sodium-content": "Sód", @@ -570,13 +570,6 @@ "increase-scale-label": "Zwiększ Skalę o 1", "locked": "Zablokowany", "public-link": "Link publiczny", - "timer": { - "kitchen-timer": "Minutnik", - "start-timer": "Włącz minutnik", - "pause-timer": "Zatrzymaj minutnik", - "resume-timer": "Wznów minutnik", - "stop-timer": "Zatrzymaj minutnik" - }, "edit-timeline-event": "Edytuj zdarzenie osi czasu", "timeline": "Oś czasu", "timeline-is-empty": "Nie ma jeszcze nic na osi czasu. Spróbuj przygotować ten przepis!", diff --git a/frontend/lang/messages/pt-BR.json b/frontend/lang/messages/pt-BR.json index c72248c53..47b1abc16 100644 --- a/frontend/lang/messages/pt-BR.json +++ b/frontend/lang/messages/pt-BR.json @@ -570,13 +570,6 @@ "increase-scale-label": "Aumentar Escala por 1", "locked": "Bloqueado", "public-link": "Link público", - "timer": { - "kitchen-timer": "Temporizador da Cozinha", - "start-timer": "Iniciar Temporizador", - "pause-timer": "Pausar Temporizador", - "resume-timer": "Continuar Temporizador", - "stop-timer": "Parar Temporizador" - }, "edit-timeline-event": "Editar Linha do Tempo do Evento", "timeline": "Linha do Tempo", "timeline-is-empty": "Nada na linha do tempo ainda. Tente fazer esta receita!", diff --git a/frontend/lang/messages/pt-PT.json b/frontend/lang/messages/pt-PT.json index 433e8fe17..53b00f1cd 100644 --- a/frontend/lang/messages/pt-PT.json +++ b/frontend/lang/messages/pt-PT.json @@ -277,7 +277,7 @@ "admin-group-management-text": "As alterações a este grupo serão aplicadas imediatamente.", "group-id-value": "ID do Grupo: {0}", "total-households": "Total de Lares", - "you-must-select-a-group-before-selecting-a-household": "You must select a group before selecting a household" + "you-must-select-a-group-before-selecting-a-household": "Tens de selecionar um grupo antes de selecionar uma casa" }, "household": { "household": "Casa", @@ -518,7 +518,7 @@ "save-recipe-before-use": "Guardar receita antes de usar", "section-title": "Título da secção", "servings": "Porções", - "serves-amount": "Serves {amount}", + "serves-amount": "Serve {amount}", "share-recipe-message": "Eu queria partilhar a minha {0} receita consigo.", "show-nutrition-values": "Mostrar valores nutricionais", "sodium-content": "Sódio", @@ -547,8 +547,8 @@ "failed-to-add-recipe-to-mealplan": "Erro ao adicionar receita ao plano de refeições", "failed-to-add-to-list": "Erro ao adicionar à lista", "yield": "Rendimento", - "yields-amount-with-text": "Yields {amount} {text}", - "yield-text": "Yield Text", + "yields-amount-with-text": "Rendimentos {amount} {text}", + "yield-text": "Rendimento Texto", "quantity": "Quantidade", "choose-unit": "Escolha uma unidade", "press-enter-to-create": "Prima 'Enter' para criar", @@ -570,13 +570,6 @@ "increase-scale-label": "Aumentar Escala em 1", "locked": "Bloqueado", "public-link": "Link público", - "timer": { - "kitchen-timer": "Temporizador de cozinha", - "start-timer": "Iniciar Temporizador", - "pause-timer": "Pausar Temporizador", - "resume-timer": "Retomar Temporizador", - "stop-timer": "Parar Temporizador" - }, "edit-timeline-event": "Editar evento da Cronologia", "timeline": "Cronologia", "timeline-is-empty": "Nada na Cronologia, ainda. Tente fazer esta receita!", @@ -644,9 +637,9 @@ "recipe-debugger-use-openai-description": "Utilize o OpenAI para analisar os resultados em vez de depender da biblioteca de scrapers. Ao criar uma receita através de um URL, isto é feito automaticamente se a biblioteca de scrapers falhar, mas pode testá-la manualmente aqui.", "debug": "Depurar", "tree-view": "Vista em árvore", - "recipe-servings": "Recipe Servings", + "recipe-servings": "Porções por receita", "recipe-yield": "Rendimento da receita", - "recipe-yield-text": "Recipe Yield Text", + "recipe-yield-text": "Rendimento da Receita Texto", "unit": "Unidade", "upload-image": "Carregar imagem", "screen-awake": "Manter ecrã ligado", @@ -669,24 +662,24 @@ "no-food": "Nenhum Ingrediente" }, "reset-servings-count": "Reiniciar Contador de Doses", - "not-linked-ingredients": "Additional Ingredients" + "not-linked-ingredients": "Ingredientes Adicionais" }, "recipe-finder": { - "recipe-finder": "Recipe Finder", - "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", - "selected-ingredients": "Selected Ingredients", - "no-ingredients-selected": "No ingredients selected", - "missing": "Missing", - "no-recipes-found": "No recipes found", - "no-recipes-found-description": "Try adding more ingredients to your search or adjusting your filters", - "include-ingredients-on-hand": "Include Ingredients On Hand", - "include-tools-on-hand": "Include Tools On Hand", - "max-missing-ingredients": "Max Missing Ingredients", - "max-missing-tools": "Max Missing Tools", - "selected-tools": "Selected Tools", - "other-filters": "Other Filters", - "ready-to-make": "Ready to Make", - "almost-ready-to-make": "Almost Ready to Make" + "recipe-finder": "Localizador de Receitas", + "recipe-finder-description": "Procure receitas com base nos ingredientes que tem em mãos. Pode também filtrar pelas ferramentas disponíveis e definir um número máximo de ingredientes ou ferramentas ausentes.", + "selected-ingredients": "Ingredientes Selecionados", + "no-ingredients-selected": "Nenhum ingrediente selecionado", + "missing": "Em falta", + "no-recipes-found": "Nenhuma receita encontrada", + "no-recipes-found-description": "Experimente adicionar mais ingredientes à sua pesquisa ou ajustar os seus filtros", + "include-ingredients-on-hand": "Incluir ingredientes disponíveis", + "include-tools-on-hand": "Incluir ferramentas disponíveis", + "max-missing-ingredients": "Máximo de ingredientes em falta", + "max-missing-tools": "Máximo de ferramentas em falta", + "selected-tools": "Ferramentas selecionadas", + "other-filters": "Outros filtros", + "ready-to-make": "Pronto para fazer", + "almost-ready-to-make": "Quase Pronto para fazer" }, "search": { "advanced-search": "Pesquisa Avançada", @@ -891,7 +884,7 @@ "are-you-sure-you-want-to-check-all-items": "Tem a certeza de que pretende selecionar todos os itens?", "are-you-sure-you-want-to-uncheck-all-items": "Tem a certeza de que pretende desmarcar todos os itens?", "are-you-sure-you-want-to-delete-checked-items": "Tem a certeza de que pretende eliminar todos os itens selecionados?", - "no-shopping-lists-found": "No Shopping Lists Found" + "no-shopping-lists-found": "Nenhuma lista de compras encontrada" }, "sidebar": { "all-recipes": "Todas as Receitas", @@ -1303,7 +1296,7 @@ "profile": { "welcome-user": "👋 Bem-vindo, {0}!", "description": "Gira o seu perfil, receitas e definições de grupo.", - "invite-link": "Invite Link", + "invite-link": "Link de convite", "get-invite-link": "Obter ligação de convite", "get-public-link": "Obter ligação pública", "account-summary": "Resumo da conta", @@ -1353,8 +1346,8 @@ "cookbook": { "cookbooks": "Livros de Receitas", "description": "Os livros de receitas são outra forma de organizar as receitas, criando secções cruzadas de receitas, organizadores e outros filtros. A criação de um livro de receitas adicionará uma entrada à barra lateral e todas as receitas com os filtros selecionados serão apresentadas no livro de receitas.", - "hide-cookbooks-from-other-households": "Hide Cookbooks from Other Households", - "hide-cookbooks-from-other-households-description": "When enabled, only cookbooks from your household will appear on the sidebar", + "hide-cookbooks-from-other-households": "Ocultar livros de receitas de outras famílias", + "hide-cookbooks-from-other-households-description": "Quando ativado, apenas os livros de receitas da sua família aparecerão na barra lateral", "public-cookbook": "Livro de Receitas público", "public-cookbook-description": "Os Livros de Receitas públicos podem ser partilhados com utilizadores não registados e serão exibidos na sua página de grupos.", "filter-options": "Opções de Filtro", diff --git a/frontend/lang/messages/ro-RO.json b/frontend/lang/messages/ro-RO.json index 22f829d6a..6aa00aee8 100644 --- a/frontend/lang/messages/ro-RO.json +++ b/frontend/lang/messages/ro-RO.json @@ -4,7 +4,7 @@ "about-mealie": "Despre Mealie", "api-docs": "Documentație API", "api-port": "API Port", - "application-mode": "Application Mode", + "application-mode": "Mod Aplicație", "database-type": "Tipul bazei de date", "database-url": "URL bază de date", "default-group": "Grup implicit", @@ -182,7 +182,7 @@ "date": "Dată", "id": "Id", "owner": "Proprietar", - "change-owner": "Change Owner", + "change-owner": "Modifica proprietar", "date-added": "Data adăugării", "none": "Niciuna", "run": "Execută", @@ -214,10 +214,10 @@ "confirm-delete-generic-items": "Sunteți sigur că doriți să ștergeți următoarele?", "organizers": "Organizatori", "caution": "Atenție", - "show-advanced": "Show Advanced", - "add-field": "Add Field", - "date-created": "Date Created", - "date-updated": "Date Updated" + "show-advanced": "Arată avansate", + "add-field": "Adaugă câmp", + "date-created": "Data creării", + "date-updated": "Data actualizată" }, "group": { "are-you-sure-you-want-to-delete-the-group": "Sunteți sigur că doriți să ștergeți {groupName}?", @@ -277,7 +277,7 @@ "admin-group-management-text": "Modificările la acest grup se vor reflecta imediat.", "group-id-value": "ID grup: {0}", "total-households": "Total locuințe", - "you-must-select-a-group-before-selecting-a-household": "You must select a group before selecting a household" + "you-must-select-a-group-before-selecting-a-household": "Trebuie să selectaţi un grup înainte de a selecta o gospodărie" }, "household": { "household": "Locuință", @@ -357,7 +357,7 @@ "for-type-meal-types": "pentru {0} tipuri de mese", "meal-plan-rules": "Regulile Planului de Masă", "new-rule": "Regulă nouă", - "meal-plan-rules-description": "You can create rules for auto selecting recipes for your meal plans. These rules are used by the server to determine the random pool of recipes to select from when creating meal plans. Note that if rules have the same day/type constraints then the rule filters will be merged. In practice, it's unnecessary to create duplicate rules, but it's possible to do so.", + "meal-plan-rules-description": "Puteți crea reguli pentru selectarea automată a rețetelor pentru planurile dumneavoastră de masă. Aceste reguli sunt folosite de către server pentru a determina rețetele valabile pentru selecție, atunci când creezi planurile de masă. În cazul in care regulile au aceleași constrângeri de zi sau de tip, atunci categoriile regulilor vor fi fuzionate. În practică, este inutilă creerea regulilor dublate, dar este posibil să se întample acest lucru.", "new-rule-description": "Atunci când creați o nouă regulă pentru un plan de masă puteți restricționa regula aplicabilă pentru o anumită zi a săptămânii și/sau pentru un anumit tip de masă. Pentru a aplica o regulă pentru toate zilele sau toate tipurile de mese puteţi seta regula la \"Oricare\" ce va fi aplicată la toate valorile posibile pentru ziua şi/sau tipul mesei.", "recipe-rules": "Reguli rețetă", "applies-to-all-days": "Se aplică pentru toate zilele", @@ -467,7 +467,7 @@ "calories-suffix": "calorii", "carbohydrate-content": "Carbohidrat", "categories": "Categorii", - "cholesterol-content": "Cholesterol", + "cholesterol-content": "Colesterol", "comment-action": "Comentariu", "comment": "Comentariu", "comments": "Comentarii", @@ -490,7 +490,7 @@ "insert-below": "Inserare dedesubt", "instructions": "Instrucțiuni", "key-name-required": "Numele cheii este necesar", - "landscape-view-coming-soon": "Landscape View (Coming Soon)", + "landscape-view-coming-soon": "Afișare în mod peisaj", "milligrams": "miligrame", "new-key-name": "Nume cheie nouă", "no-white-space-allowed": "Nu este permis niciun spațiu alb", @@ -514,11 +514,11 @@ "recipe-updated": "Rețetă actualizată", "remove-from-favorites": "Șterge din Favorite", "remove-section": "Elimină secţiunea", - "saturated-fat-content": "Saturated fat", + "saturated-fat-content": "Acizi grași saturați", "save-recipe-before-use": "Salvați rețeta înainte de utilizare", "section-title": "Titlu secțiune", "servings": "Porții", - "serves-amount": "Serves {amount}", + "serves-amount": "Servire {amount}", "share-recipe-message": "Voiam să vă împărtășesc rețeta mea: {0}.", "show-nutrition-values": "Afișare valori nutriționale", "sodium-content": "Sodiu", @@ -526,9 +526,9 @@ "sugar-content": "Zaharuri", "title": "Titlu", "total-time": "Timp total", - "trans-fat-content": "Trans-fat", + "trans-fat-content": "Acizii grași nesaturați", "unable-to-delete-recipe": "Rețeta nu a putut fi ștearsă", - "unsaturated-fat-content": "Unsaturated fat", + "unsaturated-fat-content": "Acizi grași nesaturați", "no-recipe": "Nicio rețetă", "locked-by-owner": "Blocat de proprietar", "join-the-conversation": "Alătură-te conversației", @@ -547,8 +547,8 @@ "failed-to-add-recipe-to-mealplan": "Adăugarea rețetei la planul de mese a eșuat", "failed-to-add-to-list": "Adăugarea la listă a eșuat", "yield": "Producție", - "yields-amount-with-text": "Yields {amount} {text}", - "yield-text": "Yield Text", + "yields-amount-with-text": "Produce {amount} {text}", + "yield-text": "Text pentru cantitate obținută", "quantity": "Cantitate", "choose-unit": "Alegeţi unitatea", "press-enter-to-create": "Apăsați Enter pentru a crea", @@ -570,13 +570,6 @@ "increase-scale-label": "Crește scara cu 1", "locked": "Blocat", "public-link": "Link public", - "timer": { - "kitchen-timer": "Cronometru bucătărie", - "start-timer": "Pornește cronometrul", - "pause-timer": "Pauză cronometru", - "resume-timer": "Reluați cronometrul", - "stop-timer": "Oprește Cronometrul" - }, "edit-timeline-event": "Modifică Evenimentul din Cronologie", "timeline": "Cronologie", "timeline-is-empty": "Nimic în timeline deocamdată. Încearcă să gătești o rețeta!", @@ -644,9 +637,9 @@ "recipe-debugger-use-openai-description": "Folosește OpenAI pentru a analiza rezultatele în loc să te bazezi pe biblioteca de \"scraping\". La crearea unei rețete prin URL, acest lucru se face automat în cazul în care biblioteca de \"scraping\" eșuează, dar puteți testa manual acest lucru aici.", "debug": "Depanare", "tree-view": "Vizualizare Ierarhică", - "recipe-servings": "Recipe Servings", + "recipe-servings": "Porții rețetă", "recipe-yield": "Producere rețetă", - "recipe-yield-text": "Recipe Yield Text", + "recipe-yield-text": "Text pentru cantitatea obținută din rețetă", "unit": "Unitate", "upload-image": "Încărcare imagine", "screen-awake": "Păstrare ecran aprins", @@ -668,25 +661,25 @@ "missing-food": "Creează mâncare lipsă: {food}", "no-food": "Niciun aliment" }, - "reset-servings-count": "Reset Servings Count", - "not-linked-ingredients": "Additional Ingredients" + "reset-servings-count": "Resetează numărul de serviri", + "not-linked-ingredients": "Ingrediente suplimentare" }, "recipe-finder": { - "recipe-finder": "Recipe Finder", - "recipe-finder-description": "Search for recipes based on ingredients you have on hand. You can also filter by tools you have available, and set a maximum number of missing ingredients or tools.", - "selected-ingredients": "Selected Ingredients", - "no-ingredients-selected": "No ingredients selected", - "missing": "Missing", - "no-recipes-found": "No recipes found", - "no-recipes-found-description": "Try adding more ingredients to your search or adjusting your filters", - "include-ingredients-on-hand": "Include Ingredients On Hand", - "include-tools-on-hand": "Include Tools On Hand", - "max-missing-ingredients": "Max Missing Ingredients", - "max-missing-tools": "Max Missing Tools", - "selected-tools": "Selected Tools", - "other-filters": "Other Filters", - "ready-to-make": "Ready to Make", - "almost-ready-to-make": "Almost Ready to Make" + "recipe-finder": "Căutător de rețete", + "recipe-finder-description": "Caută rețete pe baza ingredientelor pe care le ai la dispoziție. Poți, de asemenea, să filtrezi după ustensilele pe care le ai și să setezi un număr maxim de ingrediente sau ustensile lipsă.", + "selected-ingredients": "Ingrediente selectate", + "no-ingredients-selected": "Nici un ingredient selectat", + "missing": "Lipsă", + "no-recipes-found": "Nu au fost găsite rețete", + "no-recipes-found-description": "Încercați să adăugați mai multe ingrediente la căutare sau să ajustați filtrele", + "include-ingredients-on-hand": "Include ingredientele Din Mână", + "include-tools-on-hand": "Include Ustensilele Disponibile", + "max-missing-ingredients": "Maxim Ingrediente lipsă", + "max-missing-tools": "Număr maxim de ustensile lipsă", + "selected-tools": "Ustensile Selectate", + "other-filters": "Alte filtre", + "ready-to-make": "Gata de făcut", + "almost-ready-to-make": "Aproape gata de făcut" }, "search": { "advanced-search": "Căutare avansată", @@ -806,7 +799,7 @@ "no-unused-items": "Niciun element neutilizat", "recipes-affected": "Nicio rețetă afectata|O rețetă afectata|{count} rețete afectate", "remove-unused": "Elimină neutilizate", - "title-case-all": "Title Case All", + "title-case-all": "Transformare în \"Title Case\" pentru tot textul", "toolbox": "Instrumente", "unorganized": "Neorganizate" }, @@ -879,516 +872,516 @@ "copy-as-markdown": "Copiază ca Markdown", "delete-checked": "Șterge selecționate", "toggle-label-sort": "Comută sortare etichete", - "reorder-labels": "Reorder Labels", - "uncheck-all-items": "Uncheck All Items", - "check-all-items": "Check All Items", - "linked-recipes-count": "No Linked Recipes|One Linked Recipe|{count} Linked Recipes", - "items-checked-count": "No items checked|One item checked|{count} items checked", - "no-label": "No Label", - "completed-on": "Completed on {date}", - "you-are-offline": "You are offline", - "you-are-offline-description": "Not all features are available while offline. You can still add, modify, and remove items, but you will not be able to sync your changes to the server until you are back online.", - "are-you-sure-you-want-to-check-all-items": "Are you sure you want to check all items?", - "are-you-sure-you-want-to-uncheck-all-items": "Are you sure you want to uncheck all items?", - "are-you-sure-you-want-to-delete-checked-items": "Are you sure you want to delete all checked items?", - "no-shopping-lists-found": "No Shopping Lists Found" + "reorder-labels": "Reordonare etichete", + "uncheck-all-items": "Debifează toate elementele", + "check-all-items": "Bifează toate elementele", + "linked-recipes-count": "Nicio rețetă legată|O rețetă legată|{count} rețete legate", + "items-checked-count": "Niciun element bifat|Un element bifat|{count} elemente bifate", + "no-label": "Fără etichetă", + "completed-on": "Finalizat pe {date}", + "you-are-offline": "Ești offline", + "you-are-offline-description": "Nu toate funcțiile sunt disponibile în timp ce sunteți offline. Încă mai puteți adăuga, modifica sau șterge articolele, dar nu vei putea sincroniza modificările la server până nu vei fi din nou online.", + "are-you-sure-you-want-to-check-all-items": "Sunteți sigur că doriți să bifați toate elementele?", + "are-you-sure-you-want-to-uncheck-all-items": "Sunteți sigur că doriți să debifați toate elementele?", + "are-you-sure-you-want-to-delete-checked-items": "Sunteți sigur că doriți să ștergeți toate elementele selectate?", + "no-shopping-lists-found": "Nu s-au găsit liste de cumpărături" }, "sidebar": { - "all-recipes": "All Recipes", - "backups": "Backups", - "categories": "Categories", - "cookbooks": "Cookbooks", - "dashboard": "Dashboard", - "home-page": "Home Page", - "manage-users": "Manage Users", - "migrations": "Migrations", - "profile": "Profile", - "search": "Search", - "site-settings": "Site Settings", - "tags": "Tags", - "toolbox": "Toolbox", - "language": "Language", - "maintenance": "Maintenance", - "background-tasks": "Background Tasks", + "all-recipes": "Toate reţetele", + "backups": "Copii de rezervă", + "categories": "Categorii", + "cookbooks": "Cărţi de bucate", + "dashboard": "Panou de control", + "home-page": "Pagina principală", + "manage-users": "Gestionare utilizatori", + "migrations": "Migraţii", + "profile": "Profil", + "search": "Căutare", + "site-settings": "Setările site-ului", + "tags": "Etichete", + "toolbox": "Instrumente", + "language": "Limbă", + "maintenance": "Mentenanță", + "background-tasks": "Sarcini de fundal", "parser": "Parser", - "developer": "Developer", - "cookbook": "Cookbook", - "create-cookbook": "Create a new cookbook" + "developer": "Dezvoltator", + "cookbook": "Carte de bucate", + "create-cookbook": "Creați o nouă carte de bucate" }, "signup": { - "error-signing-up": "Error Signing Up", - "sign-up": "Sign Up", - "sign-up-link-created": "Sign up link created", - "sign-up-link-creation-failed": "Sign up link creation failed", - "sign-up-links": "Sign Up Links", - "sign-up-token-deleted": "Sign Up Token Deleted", - "sign-up-token-deletion-failed": "Sign up token deletion failed", - "welcome-to-mealie": "Welcome to Mealie! To become a user of this instance you are required to have a valid invitation link. If you haven't recieved an invitation you are unable to sign-up. To recieve a link, contact the sites administrator." + "error-signing-up": "Eroare la înregistrare", + "sign-up": "Înregistrați-vă", + "sign-up-link-created": "Link creat pentru înregistrare", + "sign-up-link-creation-failed": "Crearea link-ului de înregistrare a eșuat", + "sign-up-links": "Link-uri de înregistrare", + "sign-up-token-deleted": "Token de înscriere șters", + "sign-up-token-deletion-failed": "Ștergerea token-ului de înscriere a eșuat", + "welcome-to-mealie": "Bun venit la Mealie! Pentru a deveni utilizator al acestei instanțe trebuie să aveți un link valid de invitație. Dacă nu ați primit o invitație nu vă puteți înregistra. Pentru a primi un link, contactați administratorul site-ului." }, "tag": { - "tag-created": "Tag created", - "tag-creation-failed": "Tag creation failed", - "tag-deleted": "Tag deleted", - "tag-deletion-failed": "Tag deletion failed", - "tag-update-failed": "Tag update failed", - "tag-updated": "Tag updated", - "tags": "Tags", - "untagged-count": "Untagged {count}", + "tag-created": "Etichetă creată", + "tag-creation-failed": "Crearea etichetei a eșuat", + "tag-deleted": "Etichetă ștearsă", + "tag-deletion-failed": "Ștergerea etichetei a eșuat", + "tag-update-failed": "Actualizarea etichetei a eșuat", + "tag-updated": "Etichetă actualizată", + "tags": "Etichete", + "untagged-count": "Fără etichetă {count}", "create-a-tag": "Creează o eticheta", - "tag-name": "Tag Name", + "tag-name": "Denumire etichetă", "tag": "Etichetă" }, "tool": { - "tools": "Tools", - "on-hand": "On Hand", - "create-a-tool": "Create a Tool", - "tool-name": "Tool Name", - "create-new-tool": "Create New Tool", - "on-hand-checkbox-label": "Show as On Hand (Checked)", - "required-tools": "Required Tools", + "tools": "Ustensile pentru gătit", + "on-hand": "La îndemână", + "create-a-tool": "Creează o unealtă pentru gătit", + "tool-name": "Nume unealtă pentru gătit", + "create-new-tool": "Creează o nouă unealtă pentru gătit", + "on-hand-checkbox-label": "Afișare ca la îndemână (verificat)", + "required-tools": "Ustensile necesare", "tool": "Instrument" }, "user": { "admin": "Admin", - "are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link {link}?", - "are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user {activeName} ID: {activeId}?", - "auth-method": "Auth Method", - "confirm-link-deletion": "Confirm Link Deletion", - "confirm-password": "Confirm Password", - "confirm-user-deletion": "Confirm User Deletion", - "could-not-validate-credentials": "Could Not Validate Credentials", - "create-link": "Create Link", - "create-user": "Create User", - "current-password": "Current Password", - "e-mail-must-be-valid": "E-mail must be valid", - "edit-user": "Edit User", + "are-you-sure-you-want-to-delete-the-link": "Sunteți sigur că doriți să ștergeți linkul {link}?", + "are-you-sure-you-want-to-delete-the-user": "Sunteți sigur că doriți să ștergeți utilizatorul {activeName} ID: {activeId}?", + "auth-method": "Metoda de autentificare", + "confirm-link-deletion": "Confirmă ștergerea link-ului", + "confirm-password": "Confirmă parola", + "confirm-user-deletion": "Confirmă ștergerea utilizatorului", + "could-not-validate-credentials": "Credențialele nu au putut fi validate", + "create-link": "Creare legătură", + "create-user": "Creează utilizator", + "current-password": "Parola actuală", + "e-mail-must-be-valid": "E-mailul trebuie să fie valid", + "edit-user": "Editare utilizator", "email": "Email", - "error-cannot-delete-super-user": "Error! Cannot Delete Super User", - "existing-password-does-not-match": "Existing password does not match", - "full-name": "Full Name", - "generate-password-reset-link": "Generate Password Reset Link", - "invite-only": "Invite Only", - "link-id": "Link ID", - "link-name": "Link Name", - "login": "Login", - "login-oidc": "Login with", - "or": "or", - "logout": "Logout", - "manage-users": "Manage Users", - "manage-users-description": "Create and manage users.", - "new-password": "New Password", - "new-user": "New User", - "password-has-been-reset-to-the-default-password": "Password has been reset to the default password", - "password-must-match": "Password must match", - "password-reset-failed": "Password reset failed", - "password-updated": "Password updated", - "password": "Password", - "password-strength": "Password is {strength}", + "error-cannot-delete-super-user": "Eroare! Nu se poate șterge Super Utilizatorul", + "existing-password-does-not-match": "Parola existentă nu corespunde", + "full-name": "Nume complet", + "generate-password-reset-link": "Generează link-ul de resetare a parolei", + "invite-only": "Doar pe bază de invitație", + "link-id": "ID Link", + "link-name": "Nume Link", + "login": "Autentificare", + "login-oidc": "Autentifică-te cu", + "or": "sau", + "logout": "Deconectare", + "manage-users": "Gestionare utilizatori", + "manage-users-description": "Creați și gestionați utilizatorii.", + "new-password": "Parolă Nouă", + "new-user": "Utilizator nou", + "password-has-been-reset-to-the-default-password": "Parola a fost resetată la parola implicită", + "password-must-match": "Parola trebuie să se potrivească", + "password-reset-failed": "Resetarea parolei a eșuat", + "password-updated": "Parola a fost actualizată", + "password": "Parolă", + "password-strength": "Parola este {strength}", "please-enter-password": "Vă rugăm să introduceţi parola nouă.", - "register": "Register", - "reset-password": "Reset Password", - "sign-in": "Sign in", - "total-mealplans": "Total MealPlans", - "total-users": "Total Users", - "upload-photo": "Upload Photo", - "use-8-characters-or-more-for-your-password": "Use 8 characters or more for your password", - "user-created": "User created", - "user-creation-failed": "User creation failed", - "user-deleted": "User deleted", - "user-id-with-value": "User ID: {id}", - "user-id": "User ID", - "user-password": "User Password", - "user-successfully-logged-in": "User Successfully Logged In", - "user-update-failed": "User update failed", - "user-updated": "User updated", - "user": "User", - "username": "Username", - "users-header": "USERS", - "users": "Users", + "register": "Înregistrare", + "reset-password": "Resetare parolă", + "sign-in": "Autentificare", + "total-mealplans": "Total planuri de masă", + "total-users": "Total utilizatori", + "upload-photo": "Încarcă Poză", + "use-8-characters-or-more-for-your-password": "Folosește cel puțin 8 caractere pentru parola ta", + "user-created": "Utilizator creat", + "user-creation-failed": "Eșuare creare utilizator", + "user-deleted": "Utilizator șters", + "user-id-with-value": "ID utilizator: {id}", + "user-id": "ID utilizator", + "user-password": "Parolă Utilizator", + "user-successfully-logged-in": "Utilizator logat cu succes", + "user-update-failed": "Actualizare utilizator eșuată", + "user-updated": "Utilizator actualizat", + "user": "Utilizator", + "username": "Nume de utilizator", + "users-header": "UTILIZATORI", + "users": "Utilizatori", "user-not-found": "Utilizatorul nu a fost găsit", - "webhook-time": "Webhook Time", - "webhooks-enabled": "Webhooks Enabled", - "you-are-not-allowed-to-create-a-user": "You are not allowed to create a user", - "you-are-not-allowed-to-delete-this-user": "You are not allowed to delete this user", - "enable-advanced-content": "Enable Advanced Content", - "enable-advanced-content-description": "Enables advanced features like Recipe Scaling, API keys, Webhooks, and Data Management. Don't worry, you can always change this later", - "favorite-recipes": "Favorite Recipes", - "email-or-username": "Email or Username", - "remember-me": "Remember Me", - "please-enter-your-email-and-password": "Please enter your email and password", - "invalid-credentials": "Invalid Credentials", - "account-locked-please-try-again-later": "Account Locked. Please try again later", - "user-favorites": "User Favorites", + "webhook-time": "Timpul Webhook-ului", + "webhooks-enabled": "Webhook-uri activate", + "you-are-not-allowed-to-create-a-user": "Nu ai permisiunea de a crea un utilizator", + "you-are-not-allowed-to-delete-this-user": "Nu ai permisiunea de a șterge acest utilizator", + "enable-advanced-content": "Activează conținutul avansat", + "enable-advanced-content-description": "Activează caracteristici avansate cum ar fi scalarea rețetelor, cheile API, Webhooks și Managementul de date. Nu-ți face griji, poți schimba oricând asta mai târziu", + "favorite-recipes": "Rețete favorite", + "email-or-username": "Email sau nume de utilizator", + "remember-me": "Ține-mă minte", + "please-enter-your-email-and-password": "Te rugăm să introduci adresa de email și parola", + "invalid-credentials": "Datele de autentificare sunt invalide", + "account-locked-please-try-again-later": "Cont blocat. Te rugăm să încerci mai târziu", + "user-favorites": "Favoritele Utilizatorului", "password-strength-values": { - "weak": "Weak", - "good": "Good", - "strong": "Strong", - "very-strong": "Very Strong" + "weak": "Slabă", + "good": "Bună", + "strong": "Puternică", + "very-strong": "Foarte puternică" }, - "user-management": "User Management", - "reset-locked-users": "Reset Locked Users", - "admin-user-creation": "Admin User Creation", + "user-management": "Management utilizatori", + "reset-locked-users": "Resetare utilizatori blocați", + "admin-user-creation": "Creare utilizator Admin", "admin-user-management": "Gestionare utilizatori de tip administrator", - "user-details": "User Details", - "user-name": "User Name", - "authentication-method": "Authentication Method", + "user-details": "Detalii Utilizator", + "user-name": "Nume Utilizator", + "authentication-method": "Metodă de autentificare", "authentication-method-hint": "This specifies how a user will authenticate with Mealie. If you're not sure, choose 'Mealie", - "permissions": "Permissions", + "permissions": "Permisiuni", "administrator": "Administrator", - "user-can-invite-other-to-group": "User can invite others to group", - "user-can-manage-group": "User can manage group", - "user-can-manage-household": "User can manage household", - "user-can-organize-group-data": "User can organize group data", - "enable-advanced-features": "Enable advanced features", - "it-looks-like-this-is-your-first-time-logging-in": "It looks like this is your first time logging in.", - "dont-want-to-see-this-anymore-be-sure-to-change-your-email": "Don't want to see this anymore? Be sure to change your email in your user settings!", + "user-can-invite-other-to-group": "Utilizatorul poate invita alte persoane în grup", + "user-can-manage-group": "Utilizatorul poate gestiona grupul", + "user-can-manage-household": "Utilizatorul poate gestiona gospodăria", + "user-can-organize-group-data": "Utilizatorul poate organiza datele grupului", + "enable-advanced-features": "Activează funcțiile avansate", + "it-looks-like-this-is-your-first-time-logging-in": "Se pare că este prima dată când te conectezi.", + "dont-want-to-see-this-anymore-be-sure-to-change-your-email": "Nu mai vrei să vezi acest lucru? Asigură-te că îți schimbi adresa de e-mail în setările de utilizator!", "forgot-password": "Recuperare parola", "forgot-password-text": "Va rugam introduceti adresa de e-mail pentru a va trimite un link de resetare parola.", - "changes-reflected-immediately": "Changes to this user will be reflected immediately." + "changes-reflected-immediately": "Modificările aduse acestui utilizator vor fi reflectate imediat." }, "language-dialog": { - "translated": "translated", - "choose-language": "Choose Language", - "select-description": "Choose the language for the Mealie UI. The setting only applies to you, not other users.", - "how-to-contribute-description": "Is something not translated yet, mistranslated, or your language missing from the list? {read-the-docs-link} on how to contribute!", - "read-the-docs": "Read the docs" + "translated": "tradus", + "choose-language": "Alege Limba", + "select-description": "Alegeți limba pentru interfața Mealie. Setarea se aplică doar în cazul dvs., nu și în cazul altor utilizatori.", + "how-to-contribute-description": "Ceva nu este tradus încă, este greșit sau limba ta lipsită din listă? {read-the-docs-link} despre cum să contribui!", + "read-the-docs": "Citește documentația" }, "data-pages": { "foods": { - "merge-dialog-text": "Combining the selected foods will merge the source food and target food into a single food. The source food will be deleted and all of the references to the source food will be updated to point to the target food.", - "merge-food-example": "Merging {food1} into {food2}", - "seed-dialog-text": "Seed the database with foods based on your local language. This will create 200+ common foods that can be used to organize your database. Foods are translated via a community effort.", - "seed-dialog-warning": "You have already have some items in your database. This action will not reconcile duplicates, you will have to manage them manually.", - "combine-food": "Combine Food", - "source-food": "Source Food", - "target-food": "Target Food", - "create-food": "Create Food", - "food-label": "Food Label", - "edit-food": "Edit Food", - "food-data": "Food Data", - "example-food-singular": "ex: Onion", - "example-food-plural": "ex: Onions", - "label-overwrite-warning": "This will assign the chosen label to all selected foods and potentially overwrite your existing labels.", - "on-hand-checkbox-label": "Setting this flag will make this food unchecked by default when adding a recipe to a shopping list." + "merge-dialog-text": "Combinarea alimentelor selectate va fuziona alimentul sursă și alimentul țintă într-un singur aliment. Alimentul sursă va fi șters, iar toate referințele către alimentul sursă vor fi actualizate pentru a indica alimentul țintă.", + "merge-food-example": "Combinarea {food1} în {food2}", + "seed-dialog-text": "Populează baza de date cu alimente în funcție de limba ta locală. Aceasta va crea peste 200 de alimente comune care pot fi utilizate pentru a organiza baza de date. Alimentele sunt traduse printr-un efort comunitar.", + "seed-dialog-warning": "Aveți deja unele elemente în baza dvs. de date. Această acțiune nu va reconcilia duplicatele, va trebui să le gestionați manual.", + "combine-food": "Combină mâncarea", + "source-food": "Sursa de mâncare", + "target-food": "Mâncare țintită", + "create-food": "Crează mâncare", + "food-label": "Etichetă mâncare", + "edit-food": "Editează Mâncare", + "food-data": "Date despre mâncare", + "example-food-singular": "ex: Ceapă", + "example-food-plural": "ex: Cepe", + "label-overwrite-warning": "Acest lucru va atribui eticheta aleasă tuturor alimentelor selectate și ar putea suprascrie etichetele existente.", + "on-hand-checkbox-label": "Setarea acestui indicator va face ca acest aliment să fie debifat în mod implicit atunci când se adaugă o rețetă pe lista de cumpărături." }, "units": { - "seed-dialog-text": "Seed the database with common units based on your local language.", - "combine-unit-description": "Combining the selected units will merge the Source Unit and Target Unit into a single unit. The {source-unit-will-be-deleted} and all of the references to the Source Unit will be updated to point to the Target Unit.", - "combine-unit": "Combine Unit", - "source-unit": "Source Unit", - "target-unit": "Target Unit", - "merging-unit-into-unit": "Merging {0} into {1}", - "create-unit": "Create Unit", - "abbreviation": "Abbreviation", - "plural-abbreviation": "Plural Abbreviation", - "description": "Description", - "display-as-fraction": "Display as Fraction", - "use-abbreviation": "Use Abbreviation", - "edit-unit": "Edit Unit", - "unit-data": "Unit Data", - "use-abbv": "Use Abbv.", - "fraction": "Fraction", - "example-unit-singular": "ex: Tablespoon", - "example-unit-plural": "ex: Tablespoons", - "example-unit-abbreviation-singular": "ex: Tbsp", - "example-unit-abbreviation-plural": "ex: Tbsps" + "seed-dialog-text": "Populează baza de date cu unități comune în funcție de limba ta locală.", + "combine-unit-description": "Combinarea unităților selectate va fuziona Unitatea Sursă și Unitatea Țintă într-o singură unitate. {source-unit-will-be-deleted} iar toate referințele către Unitatea Sursă vor fi actualizate pentru a indica Unitatea Țintă.", + "combine-unit": "Combină unitatea", + "source-unit": "Unitate Sursă", + "target-unit": "Unitatea Țintă", + "merging-unit-into-unit": "Combinarea {0} în {1}", + "create-unit": "Creează o unitate", + "abbreviation": "Abreviere", + "plural-abbreviation": "Abreviere la Plural", + "description": "Descriere", + "display-as-fraction": "Afișează ca Fracție", + "use-abbreviation": "Utilizează Abreviere", + "edit-unit": "Editează Unitatea", + "unit-data": "Date Unitate", + "use-abbv": "Utilizare Abrv.", + "fraction": "Fracție", + "example-unit-singular": "ex: Lingură", + "example-unit-plural": "ex: Linguri", + "example-unit-abbreviation-singular": "ex: Lg", + "example-unit-abbreviation-plural": "ex: Lg" }, "labels": { - "seed-dialog-text": "Seed the database with common labels based on your local language.", - "edit-label": "Edit Label", - "new-label": "New Label", - "labels": "Labels", - "assign-label": "Assign Label" + "seed-dialog-text": "Populează baza de date cu unități comune în funcție de limba ta locală.", + "edit-label": "Editare etichetă", + "new-label": "Etichetă Nouă", + "labels": "Etichete", + "assign-label": "Atribuie etichetă" }, "recipes": { - "purge-exports": "Purge Exports", - "are-you-sure-you-want-to-delete-all-export-data": "Are you sure you want to delete all export data?", - "confirm-delete-recipes": "Are you sure you want to delete the following recipes? This action cannot be undone.", - "the-following-recipes-selected-length-will-be-exported": "The following recipes ({0}) will be exported.", - "settings-chosen-explanation": "Settings chosen here, excluding the locked option, will be applied to all selected recipes.", - "selected-length-recipe-s-settings-will-be-updated": "{count} recipe(s) settings will be updated.", - "recipe-data": "Recipe Data", - "recipe-data-description": "Use this section to manage the data associated with your recipes. You can perform several bulk actions on your recipes including exporting, deleting, tagging, and assigning categories.", - "recipe-columns": "Recipe Columns", - "data-exports-description": "This section provides links to available exports that are ready to download. These exports do expire, so be sure to grab them while they're still available.", - "data-exports": "Data Exports", - "tag": "Tag", - "categorize": "Categorize", - "update-settings": "Update Settings", - "tag-recipes": "Tag Recipes", - "categorize-recipes": "Categorize Recipes", - "export-recipes": "Export Recipes", - "delete-recipes": "Delete Recipes", - "source-unit-will-be-deleted": "Source Unit will be deleted" + "purge-exports": "Curăță Exporturile", + "are-you-sure-you-want-to-delete-all-export-data": "Sunteţi sigur că doriţi să ştergeţi toate datele de export?", + "confirm-delete-recipes": "Ești sigur că vrei să ștergi următoarele rețete? Această acțiune nu poate fi anulată.", + "the-following-recipes-selected-length-will-be-exported": "Următoarele rețete ({0}) vor fi exportate.", + "settings-chosen-explanation": "Setările alese aici, cu excepția opțiunii blocate, vor fi aplicate tuturor rețetelor selectate.", + "selected-length-recipe-s-settings-will-be-updated": "{count} setări rețetă(e) vor fi actualizate.", + "recipe-data": "Date reţetă", + "recipe-data-description": "Utilizează această secțiune pentru a gestiona datele asociate rețetelor tale. Poți efectua mai multe acțiuni în masă asupra rețetelor, inclusiv exportare, ștergere, adăugare de etichete și atribuirea de categorii.", + "recipe-columns": "Coloane Rețetă", + "data-exports-description": "Această secțiune oferă linkuri către exporturile disponibile, care sunt gata pentru descărcare. Aceste exporturi au o perioadă de valabilitate limitată, așa că asigură-te că le descarci cât timp sunt încă disponibile.", + "data-exports": "Exporturi de date", + "tag": "Etichetă", + "categorize": "Categorizare", + "update-settings": "Actualizare setări", + "tag-recipes": "Etichete de Rețete", + "categorize-recipes": "Categorizează Rețetele", + "export-recipes": "Exportă rețetele", + "delete-recipes": "Șterge rețete", + "source-unit-will-be-deleted": "Unitatea Sursă va fi ștearsă" }, "recipe-actions": { - "recipe-actions-data": "Recipe Actions Data", - "new-recipe-action": "New Recipe Action", - "edit-recipe-action": "Edit Recipe Action", - "action-type": "Action Type" + "recipe-actions-data": "Date acțiuni rețetă", + "new-recipe-action": "Acțiune rețetă nouă", + "edit-recipe-action": "Editează Acțiune Rețetă", + "action-type": "Tip de acțiune" }, - "create-alias": "Create Alias", - "manage-aliases": "Manage Aliases", - "seed-data": "Seed Data", - "seed": "Seed", - "data-management": "Data Management", - "data-management-description": "Select which data set you want to make changes to.", - "select-data": "Select Data", - "select-language": "Select Language", - "columns": "Columns", - "combine": "Combine", + "create-alias": "Creează Alias", + "manage-aliases": "Gestionare Aliasuri", + "seed-data": "Date Populare", + "seed": "Populare", + "data-management": "Gestionarea datelor", + "data-management-description": "Selectează setul de date la care dorești să faci modificări.", + "select-data": "Selectează setul de date", + "select-language": "Selectează limba", + "columns": "Coloane", + "combine": "Combina", "categories": { - "edit-category": "Edit Category", - "new-category": "New Category", - "category-data": "Category Data" + "edit-category": "Editează Categoria", + "new-category": "Categorie nouă", + "category-data": "Date categorie" }, "tags": { - "new-tag": "New Tag", - "edit-tag": "Edit Tag", - "tag-data": "Tag Data" + "new-tag": "Etichetă nouă", + "edit-tag": "Editează eticheta", + "tag-data": "Date etichetă" }, "tools": { - "new-tool": "New Tool", - "edit-tool": "Edit Tool", - "tool-data": "Tool Data" + "new-tool": "Ustensilă nouă", + "edit-tool": "Editare Ustensilă", + "tool-data": "Date ustensilă" } }, "user-registration": { - "user-registration": "User Registration", - "registration-success": "Registration Success", - "join-a-group": "Join a Group", - "create-a-new-group": "Create a New Group", - "provide-registration-token-description": "Please provide the registration token associated with the group that you'd like to join. You'll need to obtain this from an existing group member.", - "group-details": "Group Details", - "group-details-description": "Before you create an account you'll need to create a group. Your group will only contain you, but you'll be able to invite others later. Members in your group can share meal plans, shopping lists, recipes, and more!", - "use-seed-data": "Use Seed Data", - "use-seed-data-description": "Mealie ships with a collection of Foods, Units, and Labels that can be used to populate your group with helpful data for organizing your recipes.", - "account-details": "Account Details" + "user-registration": "Înregistrare Utilizator", + "registration-success": "Înregistrare cu succes", + "join-a-group": "Alătură-te unui Grup", + "create-a-new-group": "Creează un Grup Nou", + "provide-registration-token-description": "Vă rugăm să furnizați token-ul de înregistrare asociat cu grupul la care doriți să vă alăturați. Va trebui să obțineți acest lucru de la un membru existent al grupului.", + "group-details": "Detalii grup", + "group-details-description": "Înainte de a crea un cont, va trebui să creezi un grup. Grupul tău va conține inițial doar pe tine, dar vei putea invita și alte persoane ulterior. Membrii din grupul tău vor putea să partajeze planuri de mese, liste de cumpărături, rețete și multe altele!", + "use-seed-data": "Utilizează setul de date a populării", + "use-seed-data-description": "Mealie vine cu o colecție de Alimente, Unități, și Etichete care pot fi utilizate pentru a popula grupul tău cu date utile pentru organizarea rețetelor.", + "account-details": "Detalii Cont" }, "validation": { - "group-name-is-taken": "Group name is taken", - "username-is-taken": "Username is taken", - "email-is-taken": "Email is taken", - "this-field-is-required": "This Field is Required" + "group-name-is-taken": "Numele grupului este folosit deja", + "username-is-taken": "Numele de utilizator este deja înregistrat", + "email-is-taken": "Adresa de email este deja utilizată", + "this-field-is-required": "Acest câmp este obligatoriu" }, "export": { - "export": "Export", - "file-name": "File Name", - "size": "Size", - "link-expires": "Link Expires" + "export": "Exportă", + "file-name": "Nume Fişier", + "size": "Dimensiune", + "link-expires": "Link-ul expiră" }, "recipe-share": { - "expiration-date": "Expiration Date", - "share-recipe": "Share Recipe", - "default-30-days": "Default 30 Days", - "expires-at": "Expires At", - "recipe-link-copied-message": "Recipe link copied to clipboard" + "expiration-date": "Data expirării", + "share-recipe": "Distribuie rețeta", + "default-30-days": "Implicit 30 de zile", + "expires-at": "Expiră la", + "recipe-link-copied-message": "Link-ul rețetei copiat în clipboard" }, "banner-experimental": { - "title": "Experimental Feature", - "description": "This page contains experimental or still-baking features. Please excuse the mess.", - "issue-link-text": "Track our progress here" + "title": "Funcționalitate experimentală", + "description": "Această pagină conține funcții experimentale sau încă în dezvoltare. Vă rugăm să scuzați eventualele inconveniențe.", + "issue-link-text": "Urmărește progresul nostru aici" }, "form": { - "quantity-label-abbreviated": "Qty" + "quantity-label-abbreviated": "Cantitate" }, "markdown-editor": { - "preview-markdown-button-label": "Preview Markdown" + "preview-markdown-button-label": "Previzualizare Markdown" }, "demo": { - "info_message_with_version": "This is a Demo for version: {version}", - "demo_username": "Username: {username}", - "demo_password": "Password: {password}" + "info_message_with_version": "Acesta este un Demo pentru versiunea: {version}", + "demo_username": "Nume utilizator: {username}", + "demo_password": "Parolă: {password}" }, "ocr-editor": { - "ocr-editor": "Ocr editor", - "toolbar": "Toolbar", - "selection-mode": "Selection mode", - "pan-and-zoom-picture": "Pan and zoom picture", - "split-text": "Split text", - "preserve-line-breaks": "Preserve original line breaks", - "split-by-block": "Split by text block", - "flatten": "Flatten regardless of original formating", + "ocr-editor": "Editor Ocr", + "toolbar": "Bară de instrumente", + "selection-mode": "Mod de selecţie", + "pan-and-zoom-picture": "Zoomează și panoramează imaginea", + "split-text": "Divizare text", + "preserve-line-breaks": "Păstrează liniile de pauză originale", + "split-by-block": "Împarte după bloc text", + "flatten": "Aplatizează indiferent de formatarea originală", "help": { - "help": "Help", - "mouse-modes": "Mouse modes", - "selection-mode": "Selection Mode (default)", - "selection-mode-desc": "The selection mode is the main mode that can be used to enter data:", + "help": "Ajutor", + "mouse-modes": "Moduri Mouse", + "selection-mode": "Mod selecţie (implicit)", + "selection-mode-desc": "Modul de selecţie este modul principal care poate fi folosit pentru a introduce date:", "selection-mode-steps": { - "draw": "Draw a rectangle on the text you want to select.", - "click": "Click on any field on the right and then click back on the rectangle above the image.", - "result": "The selected text will appear inside the previously selected field." + "draw": "Desenează un dreptunghi pe textul pe care vrei să-l selectezi.", + "click": "Dă click pe orice câmp din dreapta și apoi apasă înapoi pe dreptunghiul de deasupra imaginii.", + "result": "Textul selectat va apărea în interiorul câmpului selectat anterior." }, - "pan-and-zoom-mode": "Pan and Zoom Mode", - "pan-and-zoom-desc": "Select pan and zoom by clicking the icon. This mode allows to zoom inside the image and move around to make using big images easier.", - "split-text-mode": "Split Text modes", + "pan-and-zoom-mode": "Mod panoramă și zoom", + "pan-and-zoom-desc": "Selectează pan și zoom făcând clic pe pictogramă. Acest mod permite să mărești imaginea și să te deplasezi pentru a facilita utilizarea imaginilor mari.", + "split-text-mode": "Divizare moduri text", "split-modes": { - "line-mode": "Line mode (default)", - "line-mode-desc": "In line mode, the text will be propagated by keeping the original line breaks. This mode is useful when using bulk add on a list of ingredients where one ingredient is one line.", - "block-mode": "Block mode", - "block-mode-desc": "In block mode, the text will be split in blocks. This mode is useful when bulk adding instructions that are usually written in paragraphs.", - "flat-mode": "Flat mode", - "flat-mode-desc": "In flat mode, the text will be added to the selected recipe field with no line breaks." + "line-mode": "Mod linie (implicit)", + "line-mode-desc": "În modul linie, textul va fi propagat prin menținerea pauzelor de linie inițiale. Acest mod este util atunci când se folosește adăugarea în bloc pe o listă de ingrediente atunci când un ingredient este o linie.", + "block-mode": "Mod bloc", + "block-mode-desc": "În modul bloc, textul va fi împărțit în blocuri. Acest mod este util atunci când adaugă în masă instrucțiuni care sunt de obicei scrise în paragrafe.", + "flat-mode": "Mod plat", + "flat-mode-desc": "În modul forfetar, textul va fi adăugat la câmpul de rețetă selectat fără linii de pauză." } } }, "admin": { "maintenance": { - "storage-details": "Storage Details", - "page-title": "Site Maintenance", - "summary-title": "Summary", - "button-label-get-summary": "Get Summary", - "button-label-open-details": "Details", - "info-description-data-dir-size": "Data Directory Size", - "info-description-log-file-size": "Log File Size", - "info-description-cleanable-directories": "Cleanable Directories", - "info-description-cleanable-images": "Cleanable Images", + "storage-details": "Detalii stocare", + "page-title": "Mentenanță site", + "summary-title": "Rezumat", + "button-label-get-summary": "Obține Sumar", + "button-label-open-details": "Detalii", + "info-description-data-dir-size": "Mărime Folder de Date", + "info-description-log-file-size": "Dimensiune fișier jurnal", + "info-description-cleanable-directories": "Foldere ce pot fi curățate", + "info-description-cleanable-images": "Imagini ce pot fi curățate", "storage": { - "title-temporary-directory": "Temporary Directory (.temp)", - "title-backups-directory": "Backups Directory (backups)", - "title-groups-directory": "Groups Directory (groups)", - "title-recipes-directory": "Recipes Directory (recipes)", - "title-user-directory": "User Directory (user)" + "title-temporary-directory": "Folderul temporar (.temp)", + "title-backups-directory": "Folder de copii de rezervă (backups)", + "title-groups-directory": "Dosar de grupuri (grupuri)", + "title-recipes-directory": "Dosar de rețete (rețete)", + "title-user-directory": "Folder de utilizatori (utilizator)" }, - "action-delete-log-files-name": "Delete Log Files", - "action-delete-log-files-description": "Deletes all the log files", - "action-clean-directories-name": "Clean Directories", - "action-clean-directories-description": "Removes all the recipe folders that are not valid UUIDs", - "action-clean-temporary-files-name": "Clean Temporary Files", - "action-clean-temporary-files-description": "Removes all files and folders in the .temp directory", - "action-clean-images-name": "Clean Images", - "action-clean-images-description": "Removes all the images that don't end with .webp", - "actions-description": "Maintenance actions are {destructive_in_bold} and should be used with caution. Performing any of these actions is {irreversible_in_bold}.", - "actions-description-destructive": "destructive", - "actions-description-irreversible": "irreversible", - "logs-action-refresh": "Refresh Logs", - "logs-page-title": "Mealie Logs", - "logs-tail-lines-label": "Tail Lines" + "action-delete-log-files-name": "Ştergere fişiere jurnal", + "action-delete-log-files-description": "Şterge toate fişierele jurnal", + "action-clean-directories-name": "Curăță folderele", + "action-clean-directories-description": "Elimină toate folderele de rețete care nu sunt UUID-uri valide", + "action-clean-temporary-files-name": "Curăță Fișierele Temporare", + "action-clean-temporary-files-description": "Elimină toate fişierele şi folderele din folderul .temp", + "action-clean-images-name": "Curăță Imaginile", + "action-clean-images-description": "Elimină toate imaginile care nu se termină cu .webp", + "actions-description": "Acțiunile de întreținere sunt {destructive_in_bold} și trebuie utilizate cu precauție. Efectuarea oricăreia dintre aceste acțiuni este {irreversible_in_bold}.", + "actions-description-destructive": "distructiv", + "actions-description-irreversible": "ireversibilă", + "logs-action-refresh": "Reîmprospătare Jurnale", + "logs-page-title": "Jurnale Mealie", + "logs-tail-lines-label": "Linii de final" }, "mainentance": { - "actions-title": "Actions" + "actions-title": "Acțiuni" }, - "ingredients-natural-language-processor": "Ingredients Natural Language Processor", - "ingredients-natural-language-processor-explanation": "Mealie uses Conditional Random Fields (CRFs) for parsing and processing ingredients. The model used for ingredients is based off a data set of over 100,000 ingredients from a dataset compiled by the New York Times. Note that as the model is trained in English only, you may have varied results when using the model in other languages. This page is a playground for testing the model.", - "ingredients-natural-language-processor-explanation-2": "It's not perfect, but it yields great results in general and is a good starting point for manually parsing ingredients into individual fields. Alternatively, you can also use the \"Brute\" processor that uses a pattern matching technique to identify ingredients.", + "ingredients-natural-language-processor": "Procesor de limbaj natural pentru ingrediente", + "ingredients-natural-language-processor-explanation": "Mealie utilizează Conditional Random Fields (CRFs) pentru a analiza și procesa ingredientele. Modelul folosit pentru ingrediente se bazează pe un set de date care conține peste 100.000 de ingrediente, compilat de New York Times. Rețineți că, deoarece modelul a fost antrenat doar în limba engleză, rezultatele pot varia atunci când este utilizat în alte limbi. Această pagină este un spațiu de testare pentru experimentarea cu modelul.", + "ingredients-natural-language-processor-explanation-2": "Nu este perfect, dar în general oferă rezultate foarte bune și reprezintă un punct de plecare solid pentru a analiza manual ingredientele în câmpuri individuale. Alternativ, puteți utiliza procesorul \"Brute\" care folosește o tehnică de potrivire a modelelor pentru a identifica ingredientele.", "nlp": "NLP", "brute": "Brute", "openai": "OpenAI", - "show-individual-confidence": "Show individual confidence", - "ingredient-text": "Ingredient Text", - "average-confident": "{0} Confident", - "try-an-example": "Try an example", + "show-individual-confidence": "Afișare încredere individuală", + "ingredient-text": "Textul ingredientului", + "average-confident": "{0} Încrezător", + "try-an-example": "Încearcă un exemplu", "parser": "Parser", - "background-tasks": "Background Tasks", - "background-tasks-description": "Here you can view all the running background tasks and their status", - "no-logs-found": "No Logs Found", - "tasks": "Tasks", + "background-tasks": "Sarcini de fundal", + "background-tasks-description": "Aici puteți vizualiza toate sarcinile de fundal care rulează și starea lor", + "no-logs-found": "Nu s-au găsit jurnale", + "tasks": "Sarcini", "setup": { - "first-time-setup": "First Time Setup", - "welcome-to-mealie-get-started": "Welcome to Mealie! Let's get started", - "already-set-up-bring-to-homepage": "I'm already set up, just bring me to the homepage", - "common-settings-for-new-sites": "Here are some common settings for new sites", - "setup-complete": "Setup Complete!", - "here-are-a-few-things-to-help-you-get-started": "Here are a few things to help you get started with Mealie", - "restore-from-v1-backup": "Have a backup from a previous instance of Mealie v1? You can restore it here.", - "manage-profile-or-get-invite-link": "Manage your own profile, or grab an invite link to share with others." + "first-time-setup": "Configurare pentru prima dată", + "welcome-to-mealie-get-started": "Bine ai venit la Mealie! Să începem", + "already-set-up-bring-to-homepage": "Sunt deja configurat, du-mă direct la pagina principală", + "common-settings-for-new-sites": "Aici sunt câteva setări comune pentru noile site-uri", + "setup-complete": "Configurare finalizată!", + "here-are-a-few-things-to-help-you-get-started": "Aici sunt câteva lucruri care te ajută să începi cu Mealie", + "restore-from-v1-backup": "Aveţi o copie de rezervă dintr-o instanţă anterioară a lui Mealie v1? O puteţi restaura aici.", + "manage-profile-or-get-invite-link": "Gestionează-ți propriul profil, sau apasă un link de invitație pentru a distribui cu alții." }, - "debug-openai-services": "Debug OpenAI Services", - "debug-openai-services-description": "Use this page to debug OpenAI services. You can test your OpenAI connection and see the results here. If you have image services enabled, you can also provide an image.", - "run-test": "Run Test", - "test-results": "Test Results", - "group-delete-note": "Groups with users or households cannot be deleted", - "household-delete-note": "Households with users cannot be deleted" + "debug-openai-services": "Depanare servicii OpenAI", + "debug-openai-services-description": "Utilizați această pagină pentru a depana serviciile OpenAI. Puteți testa conexiunea OpenAI și vedea rezultatele aici. Dacă aveți servicii de imagine activate, puteți de asemenea să furnizați o imagine.", + "run-test": "Rulează Testul", + "test-results": "Rezultate test", + "group-delete-note": "Grupurile cu utilizatori sau gospodării nu pot fi șterse", + "household-delete-note": "Gospodăriile cu utilizatorii nu pot fi șterse" }, "profile": { - "welcome-user": "👋 Welcome, {0}!", - "description": "Manage your profile, recipes, and group settings.", - "invite-link": "Invite Link", - "get-invite-link": "Get Invite Link", - "get-public-link": "Get Public Link", - "account-summary": "Account Summary", - "account-summary-description": "Here's a summary of your group's information.", - "group-statistics": "Group Statistics", - "group-statistics-description": "Your Group Statistics provide some insight how you're using Mealie.", - "household-statistics": "Household Statistics", - "household-statistics-description": "Your Household Statistics provide some insight how you're using Mealie.", - "storage-capacity": "Storage Capacity", - "storage-capacity-description": "Your storage capacity is a calculation of the images and assets you have uploaded.", + "welcome-user": "👋 Bine ai venit, {0}!", + "description": "Gestionează-ți profilul, rețetele și setările de grup.", + "invite-link": "Link de invitație", + "get-invite-link": "Obține link-ul de invitație", + "get-public-link": "Obțineți link-ul public", + "account-summary": "Sumar Cont", + "account-summary-description": "Iată un rezumat al informaţiilor grupului tău.", + "group-statistics": "Statistici Grup", + "group-statistics-description": "Statisticile Grupului Tău oferă informații despre cum folosești Mealie.", + "household-statistics": "Statistici Gospodărie", + "household-statistics-description": "Statisticile tale pentru gospodării oferă o perspectivă despre cum folosești Mealie.", + "storage-capacity": "Spațiu de stocare", + "storage-capacity-description": "Capacitatea ta de stocare este un calcul al imaginilor si al fișierelor pe care le-ai încărcat.", "personal": "Personal", - "personal-description": "These are settings that are personal to you. Changes here won't affect other users.", - "user-settings": "User Settings", - "user-settings-description": "Manage your preferences, change your password, and update your email.", - "api-tokens-description": "Manage your API Tokens for access from external applications.", - "group-description": "These items are shared within your group. Editing one of them will change it for the whole group!", - "group-settings": "Group Settings", - "group-settings-description": "Manage your common group settings, like privacy settings.", - "household-description": "These items are shared within your household. Editing one of them will change it for the whole household!", - "household-settings": "Household Settings", - "household-settings-description": "Manage your household settings, like mealplan and privacy settings.", - "cookbooks-description": "Manage a collection of recipe categories and generate pages for them.", - "members": "Members", - "members-description": "See who's in your household and manage their permissions.", - "webhooks-description": "Setup webhooks that trigger on days that you have have mealplan scheduled.", - "notifiers": "Notifiers", - "notifiers-description": "Setup email and push notifications that trigger on specific events.", - "manage-data": "Manage Data", - "manage-data-description": "Manage your Mealie data; Foods, Units, Categories, Tags and more.", - "data-migrations": "Data Migrations", - "data-migrations-description": "Migrate your existing data from other applications like Nextcloud Recipes and Chowdown.", - "email-sent": "Email Sent", - "error-sending-email": "Error Sending Email", - "personal-information": "Personal Information", - "preferences": "Preferences", - "show-advanced-description": "Show advanced features (API Keys, Webhooks, and Data Management)", - "back-to-profile": "Back to Profile", - "looking-for-privacy-settings": "Looking for Privacy Settings?", - "manage-your-api-tokens": "Manage Your API Tokens", - "manage-user-profile": "Manage User Profile", - "manage-cookbooks": "Manage Cookbooks", - "manage-members": "Manage Members", - "manage-webhooks": "Manage Webhooks", - "manage-notifiers": "Manage Notifiers", - "manage-data-migrations": "Manage Data Migrations" + "personal-description": "Acestea sunt setări personale pentru tine. Modificările de aici nu vor afecta alţi utilizatori.", + "user-settings": "Setări utilizator", + "user-settings-description": "Gestionează-ți preferințele, schimbă-ți parola și actualizează adresa de e-mail.", + "api-tokens-description": "Gestionați tokenurile API pentru acces de la aplicațiile externe.", + "group-description": "Aceste elemente sunt partajate în cadrul grupului dvs. Editarea unuia dintre ele îl va schimba pentru întregul grup!", + "group-settings": "Setarile Grupului", + "group-settings-description": "Gestionează setările de grup obișnuite, cum ar fi setările de confidențialitate.", + "household-description": "Aceste elemente sunt partajate în gospodăria ta. Editarea unuia dintre ele o va schimba pentru întreaga gospodărie!", + "household-settings": "Setări pentru gospodărie", + "household-settings-description": "Gestionați setările pentru gospodărie cum ar fi planul de mese și setările de confidențialitate.", + "cookbooks-description": "Gestionează o colecție de categorii de rețete și generează pagini pentru ele.", + "members": "Membri", + "members-description": "Vezi cine se află în gospodăria ta și gestionează permisiunile lor.", + "webhooks-description": "Configurați webhook-uri care se declanșează în zile în care aveți planurile de mese planificate.", + "notifiers": "Notificatori", + "notifiers-description": "Configurați notificările de e-mail și push care declanșează evenimente specifice.", + "manage-data": "Gestionează Datele", + "manage-data-description": "Gestionează-ți datele Mealie; Alimente, Unități, Categorii, Etichete și multe altele.", + "data-migrations": "Migrări de date", + "data-migrations-description": "Migrați datele existente din alte aplicații, cum ar fi rețetele Nextcloud și Chowdown.", + "email-sent": "E-mail trimis", + "error-sending-email": "Eroare la trimiterea e-mailului", + "personal-information": "Informații personale", + "preferences": "Preferințe", + "show-advanced-description": "Arată caracteristici avansate (Chei API, Webhook-uri și Administrare date)", + "back-to-profile": "Înapoi la profil", + "looking-for-privacy-settings": "Cauți setările de confidențialitate?", + "manage-your-api-tokens": "Gestionați tokenurile API", + "manage-user-profile": "Gestionare profil utilizator", + "manage-cookbooks": "Gestionare Cărți de Bucate", + "manage-members": "Gestionare Membri", + "manage-webhooks": "Gestionare Webhook-uri", + "manage-notifiers": "Gestionează notificatorii", + "manage-data-migrations": "Gestionați migrările de date" }, "cookbook": { - "cookbooks": "Cookbooks", - "description": "Cookbooks are another way to organize recipes by creating cross sections of recipes, organizers, and other filters. Creating a cookbook will add an entry to the side-bar and all the recipes with the filters chosen will be displayed in the cookbook.", - "hide-cookbooks-from-other-households": "Hide Cookbooks from Other Households", - "hide-cookbooks-from-other-households-description": "When enabled, only cookbooks from your household will appear on the sidebar", - "public-cookbook": "Public Cookbook", - "public-cookbook-description": "Public Cookbooks can be shared with non-mealie users and will be displayed on your groups page.", - "filter-options": "Filter Options", - "filter-options-description": "When require all is selected the cookbook will only include recipes that have all of the items selected. This applies to each subset of selectors and not a cross section of the selected items.", - "require-all-categories": "Require All Categories", - "require-all-tags": "Require All Tags", - "require-all-tools": "Require All Tools", - "cookbook-name": "Cookbook Name", - "cookbook-with-name": "Cookbook {0}", - "household-cookbook-name": "{0} Cookbook {1}", - "create-a-cookbook": "Create a Cookbook", - "cookbook": "Cookbook" + "cookbooks": "Cărţi de bucate", + "description": "Cărțile de bucate sunt o altă modalitate de a organiza rețete prin crearea unor secțiuni de rețete, organizatori, și alte filtre. Crearea unei carte de bucate va adăuga o înregistrare în bara laterală și toate rețetele cu filtrele alese vor fi afișate în carte de bucate.", + "hide-cookbooks-from-other-households": "Ascunde cărţile de bucate din alte gospodării", + "hide-cookbooks-from-other-households-description": "Când este activată, vor apărea doar cărți de bucate de la gospodăria ta pe bara laterală", + "public-cookbook": "Carte de bucate publică", + "public-cookbook-description": "Cărțile de bucate publice pot fi partajate cu utilizatorii care nu sunt pe mealie și vor fi afișate pe pagina grupurilor dvs.", + "filter-options": "Opțiuni filtrare", + "filter-options-description": "Atunci când este nevoie ca toate să fie selectate, cartea de bucate va include numai rețete care au toate articolele selectate. Acest lucru se aplică pentru fiecare subset de selectori și nu pentru o secțiune transversală a elementelor selectate.", + "require-all-categories": "Necesită toate categoriile", + "require-all-tags": "Necesită toate etichetele", + "require-all-tools": "Necesită toate ustensilele", + "cookbook-name": "Numele Cărţii de bucate", + "cookbook-with-name": "Cartea de bucate {0}", + "household-cookbook-name": "{0} carte de bucate {1}", + "create-a-cookbook": "Creează o carte de bucate", + "cookbook": "Carte de bucate" }, "query-filter": { "logical-operators": { - "and": "AND", - "or": "OR" + "and": "ȘI", + "or": "SAU" }, "relational-operators": { - "equals": "equals", - "does-not-equal": "does not equal", - "is-greater-than": "is greater than", - "is-greater-than-or-equal-to": "is greater than or equal to", - "is-less-than": "is less than", - "is-less-than-or-equal-to": "is less than or equal to" + "equals": "este egal cu", + "does-not-equal": "nu este egal cu", + "is-greater-than": "este mai mare ca", + "is-greater-than-or-equal-to": "este mai mare sau egală cu", + "is-less-than": "este mai mic decât", + "is-less-than-or-equal-to": "este mai mic sau egal cu" }, "relational-keywords": { - "is": "is", - "is-not": "is not", - "is-one-of": "is one of", - "is-not-one-of": "is not one of", - "contains-all-of": "contains all of", - "is-like": "is like", - "is-not-like": "is not like" + "is": "este", + "is-not": "nu este", + "is-one-of": "este unul din", + "is-not-one-of": "nu este unul din", + "contains-all-of": "conţine toate din", + "is-like": "este similar", + "is-not-like": "nu este similar" } } } diff --git a/frontend/lang/messages/ru-RU.json b/frontend/lang/messages/ru-RU.json index b4e9fcf4d..c956176fa 100644 --- a/frontend/lang/messages/ru-RU.json +++ b/frontend/lang/messages/ru-RU.json @@ -570,13 +570,6 @@ "increase-scale-label": "Добавить порцию", "locked": "Заблокировано", "public-link": "Публичная ссылка", - "timer": { - "kitchen-timer": "Кухонный таймер", - "start-timer": "Запустить таймер", - "pause-timer": "Приостановить таймер", - "resume-timer": "Возобновить таймер", - "stop-timer": "Остановить таймер" - }, "edit-timeline-event": "Редактировать событие в истории", "timeline": "История", "timeline-is-empty": "В истории пока ничего нет. Попробуйте сделать этот рецепт!", diff --git a/frontend/lang/messages/sk-SK.json b/frontend/lang/messages/sk-SK.json index efe56d543..c29d7bd0a 100644 --- a/frontend/lang/messages/sk-SK.json +++ b/frontend/lang/messages/sk-SK.json @@ -570,13 +570,6 @@ "increase-scale-label": "Zvýšiť škálovanie o 1", "locked": "Zamknuté", "public-link": "Verejný odkaz", - "timer": { - "kitchen-timer": "Kuchynský časovač", - "start-timer": "Spustiť časovač", - "pause-timer": "Pozastaviť časovač", - "resume-timer": "Znova spustiť časovač", - "stop-timer": "Zastaviť časovač" - }, "edit-timeline-event": "Upraviť udalosť na časovej osi", "timeline": "Časová os", "timeline-is-empty": "Na časovej osi zatiaľ nič nie je. Skúste pripraviť tento recept!", diff --git a/frontend/lang/messages/sl-SI.json b/frontend/lang/messages/sl-SI.json index 92abb887f..cdfb3e4c5 100644 --- a/frontend/lang/messages/sl-SI.json +++ b/frontend/lang/messages/sl-SI.json @@ -570,13 +570,6 @@ "increase-scale-label": "Zvišaj merilo za 1", "locked": "Zaklenjeno", "public-link": "Javna povezava", - "timer": { - "kitchen-timer": "Kuhinjski časovnik", - "start-timer": "Zaženi časovnik", - "pause-timer": "Ustavi časovnik", - "resume-timer": "Nadaljuj časovnik", - "stop-timer": "Ustavi časovnik" - }, "edit-timeline-event": "Uredi dogodek na časovnici", "timeline": "Časovnica", "timeline-is-empty": "Zaenkrat je časovnica prazna. Poskusi tale recept!", diff --git a/frontend/lang/messages/sr-SP.json b/frontend/lang/messages/sr-SP.json index b2d468601..f51feb488 100644 --- a/frontend/lang/messages/sr-SP.json +++ b/frontend/lang/messages/sr-SP.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Уреди догађај на временској линији", "timeline": "Временска линија", "timeline-is-empty": "Још увек нема ништа на временској линији. Покушајте направити овај рецепт!", diff --git a/frontend/lang/messages/sv-SE.json b/frontend/lang/messages/sv-SE.json index af92a42fa..506660010 100644 --- a/frontend/lang/messages/sv-SE.json +++ b/frontend/lang/messages/sv-SE.json @@ -570,13 +570,6 @@ "increase-scale-label": "Skala upp med 1", "locked": "Låst", "public-link": "Publik länk", - "timer": { - "kitchen-timer": "Kökstimer", - "start-timer": "Starta Timer", - "pause-timer": "Pausa Timer", - "resume-timer": "Återuppta Timer", - "stop-timer": "Stoppa Timer" - }, "edit-timeline-event": "Redigera tidslinjehändelse", "timeline": "Tidslinje", "timeline-is-empty": "Inget på tidslinjen än. Försök att göra detta recept!", diff --git a/frontend/lang/messages/tr-TR.json b/frontend/lang/messages/tr-TR.json index e7ffe3fae..63af78271 100644 --- a/frontend/lang/messages/tr-TR.json +++ b/frontend/lang/messages/tr-TR.json @@ -570,13 +570,6 @@ "increase-scale-label": "Ölçeği 1 artır", "locked": "Kilitli", "public-link": "Genel bağlantı", - "timer": { - "kitchen-timer": "Mutfak Saati", - "start-timer": "Zamanlayıcıyı Başlat", - "pause-timer": "Zamanlayıcıyı Duraklat", - "resume-timer": "Zamanlayıcıyı Sürdür", - "stop-timer": "Zamanlayıcıyı Durdur" - }, "edit-timeline-event": "Zaman Çizelgesi Etkinliğini Düzenle", "timeline": "Zaman çizelgesi", "timeline-is-empty": "Zaman çizelgesinde henüz bir şey yok. Bu tarifi yapmayı deneyin!", diff --git a/frontend/lang/messages/uk-UA.json b/frontend/lang/messages/uk-UA.json index e57386f88..dc65a750c 100644 --- a/frontend/lang/messages/uk-UA.json +++ b/frontend/lang/messages/uk-UA.json @@ -570,13 +570,6 @@ "increase-scale-label": "Збільшити масштабування на 1", "locked": "Заблоковано", "public-link": "Публічне посилання", - "timer": { - "kitchen-timer": "Кухонний таймер", - "start-timer": "Запустити таймер", - "pause-timer": "Призупинити таймер", - "resume-timer": "Відновити таймер", - "stop-timer": "Зупинити таймер" - }, "edit-timeline-event": "Редагувати подію хронології", "timeline": "Хронологія", "timeline-is-empty": "Хронологія порожня. Спробуйте зробити цей рецепт!", diff --git a/frontend/lang/messages/vi-VN.json b/frontend/lang/messages/vi-VN.json index f5ceabf05..37273d1c7 100644 --- a/frontend/lang/messages/vi-VN.json +++ b/frontend/lang/messages/vi-VN.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lang/messages/zh-CN.json b/frontend/lang/messages/zh-CN.json index 0c324965e..0cba6029f 100644 --- a/frontend/lang/messages/zh-CN.json +++ b/frontend/lang/messages/zh-CN.json @@ -570,13 +570,6 @@ "increase-scale-label": "加1倍", "locked": "已锁定", "public-link": "公开链接", - "timer": { - "kitchen-timer": "厨房计时器", - "start-timer": "开始计时", - "pause-timer": "暂停计时", - "resume-timer": "继续计时", - "stop-timer": "终止计时" - }, "edit-timeline-event": "编辑时间轴事件", "timeline": "时间轴", "timeline-is-empty": "时间轴还空空如也,试着先去制作一个食谱吧!", diff --git a/frontend/lang/messages/zh-TW.json b/frontend/lang/messages/zh-TW.json index 999b3b81c..64f030d8a 100644 --- a/frontend/lang/messages/zh-TW.json +++ b/frontend/lang/messages/zh-TW.json @@ -570,13 +570,6 @@ "increase-scale-label": "Increase Scale by 1", "locked": "Locked", "public-link": "Public Link", - "timer": { - "kitchen-timer": "Kitchen Timer", - "start-timer": "Start Timer", - "pause-timer": "Pause Timer", - "resume-timer": "Resume Timer", - "stop-timer": "Stop Timer" - }, "edit-timeline-event": "Edit Timeline Event", "timeline": "Timeline", "timeline-is-empty": "Nothing on the timeline yet. Try making this recipe!", diff --git a/frontend/lib/api/types/admin.ts b/frontend/lib/api/types/admin.ts index 34553897d..69b47c973 100644 --- a/frontend/lib/api/types/admin.ts +++ b/frontend/lib/api/types/admin.ts @@ -161,7 +161,7 @@ export interface RecipeTool { id: string; name: string; slug: string; - onHand?: boolean; + householdsWithTool?: string[]; [k: string]: unknown; } export interface CustomPageImport { diff --git a/frontend/lib/api/types/cookbook.ts b/frontend/lib/api/types/cookbook.ts index 22b5079a2..3a34d5983 100644 --- a/frontend/lib/api/types/cookbook.ts +++ b/frontend/lib/api/types/cookbook.ts @@ -97,7 +97,7 @@ export interface RecipeTool { id: string; name: string; slug: string; - onHand?: boolean; + householdsWithTool?: string[]; [k: string]: unknown; } export interface SaveCookBook { diff --git a/frontend/lib/api/types/household.ts b/frontend/lib/api/types/household.ts index 0e0072391..e0340a1d3 100644 --- a/frontend/lib/api/types/household.ts +++ b/frontend/lib/api/types/household.ts @@ -208,6 +208,27 @@ export interface ReadWebhook { householdId: string; id: string; } +export interface HouseholdRecipeBase { + lastMade?: string | null; +} +export interface HouseholdRecipeCreate { + lastMade?: string | null; + householdId: string; + recipeId: string; +} +export interface HouseholdRecipeOut { + lastMade?: string | null; + householdId: string; + recipeId: string; + id: string; +} +export interface HouseholdRecipeSummary { + lastMade?: string | null; + recipeId: string; +} +export interface HouseholdRecipeUpdate { + lastMade?: string | null; +} export interface HouseholdSave { groupId: string; name: string; @@ -297,7 +318,6 @@ export interface IngredientUnit { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; fraction?: boolean; abbreviation?: string; pluralAbbreviation?: string | null; @@ -318,7 +338,6 @@ export interface CreateIngredientUnit { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; fraction?: boolean; abbreviation?: string; pluralAbbreviation?: string | null; @@ -338,9 +357,9 @@ export interface IngredientFood { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; labelId?: string | null; aliases?: IngredientFoodAlias[]; + householdsWithIngredientFood?: string[]; label?: MultiPurposeLabelSummary | null; createdAt?: string | null; updatedAt?: string | null; @@ -363,9 +382,9 @@ export interface CreateIngredientFood { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; labelId?: string | null; aliases?: CreateIngredientFoodAlias[]; + householdsWithIngredientFood?: string[]; [k: string]: unknown; } export interface CreateIngredientFoodAlias { @@ -592,7 +611,7 @@ export interface RecipeTool { id: string; name: string; slug: string; - onHand?: boolean; + householdsWithTool?: string[]; [k: string]: unknown; } export interface ShoppingListRemoveRecipeParams { diff --git a/frontend/lib/api/types/meal-plan.ts b/frontend/lib/api/types/meal-plan.ts index 4869c7c59..eede212c9 100644 --- a/frontend/lib/api/types/meal-plan.ts +++ b/frontend/lib/api/types/meal-plan.ts @@ -117,7 +117,7 @@ export interface RecipeTool { id: string; name: string; slug: string; - onHand?: boolean; + householdsWithTool?: string[]; [k: string]: unknown; } export interface SavePlanEntry { diff --git a/frontend/lib/api/types/recipe.ts b/frontend/lib/api/types/recipe.ts index ebd84eaff..036c43f8c 100644 --- a/frontend/lib/api/types/recipe.ts +++ b/frontend/lib/api/types/recipe.ts @@ -64,9 +64,9 @@ export interface CreateIngredientFood { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; labelId?: string | null; aliases?: CreateIngredientFoodAlias[]; + householdsWithIngredientFood?: string[]; } export interface CreateIngredientFoodAlias { name: string; @@ -79,7 +79,6 @@ export interface CreateIngredientUnit { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; fraction?: boolean; abbreviation?: string; pluralAbbreviation?: string | null; @@ -136,9 +135,9 @@ export interface IngredientFood { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; labelId?: string | null; aliases?: IngredientFoodAlias[]; + householdsWithIngredientFood?: string[]; label?: MultiPurposeLabelSummary | null; createdAt?: string | null; updatedAt?: string | null; @@ -167,7 +166,6 @@ export interface IngredientUnit { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; fraction?: boolean; abbreviation?: string; pluralAbbreviation?: string | null; @@ -262,7 +260,7 @@ export interface RecipeTool { id: string; name: string; slug: string; - onHand?: boolean; + householdsWithTool?: string[]; } export interface RecipeStep { id?: string | null; @@ -447,24 +445,24 @@ export interface RecipeTimelineEventUpdate { } export interface RecipeToolCreate { name: string; - onHand?: boolean; + householdsWithTool?: string[]; } export interface RecipeToolOut { name: string; - onHand?: boolean; + householdsWithTool?: string[]; id: string; slug: string; } export interface RecipeToolResponse { name: string; - onHand?: boolean; + householdsWithTool?: string[]; id: string; slug: string; recipes?: RecipeSummary[]; } export interface RecipeToolSave { name: string; - onHand?: boolean; + householdsWithTool?: string[]; groupId: string; } export interface RecipeZipTokenResponse { @@ -478,9 +476,9 @@ export interface SaveIngredientFood { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; labelId?: string | null; aliases?: CreateIngredientFoodAlias[]; + householdsWithIngredientFood?: string[]; groupId: string; } export interface SaveIngredientUnit { @@ -491,7 +489,6 @@ export interface SaveIngredientUnit { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; fraction?: boolean; abbreviation?: string; pluralAbbreviation?: string | null; @@ -536,7 +533,6 @@ export interface UnitFoodBase { extras?: { [k: string]: unknown; } | null; - onHand?: boolean; } export interface UpdateImageResponse { image: string; diff --git a/frontend/lib/api/user/households.ts b/frontend/lib/api/user/households.ts index 3866ca500..9995059dd 100644 --- a/frontend/lib/api/user/households.ts +++ b/frontend/lib/api/user/households.ts @@ -11,6 +11,7 @@ import { CreateInviteToken, ReadInviteToken, HouseholdSummary, + HouseholdRecipeSummary, } from "~/lib/api/types/household"; const prefix = "/api"; @@ -26,6 +27,7 @@ const routes = { invitation: `${prefix}/households/invitations`, householdsId: (id: string | number) => `${prefix}/groups/households/${id}`, + householdsSelfRecipesSlug: (recipeSlug: string) => `${prefix}/households/self/recipes/${recipeSlug}`, }; export class HouseholdAPI extends BaseCRUDAPIReadOnly { @@ -37,6 +39,10 @@ export class HouseholdAPI extends BaseCRUDAPIReadOnly { return await this.requests.get(routes.householdsSelf); } + async getCurrentUserHouseholdRecipe(recipeSlug: string) { + return await this.requests.get(routes.householdsSelfRecipesSlug(recipeSlug)); + } + async getPreferences() { return await this.requests.get(routes.preferences); } diff --git a/frontend/lib/icons/icons.ts b/frontend/lib/icons/icons.ts index 9c3a37373..08d527262 100644 --- a/frontend/lib/icons/icons.ts +++ b/frontend/lib/icons/icons.ts @@ -138,12 +138,6 @@ import { mdiDockTop, mdiDockBottom, mdiCheckboxOutline, - mdiTimer, - mdiTimerPlus, - mdiPause, - mdiStop, - mdiPlay, - mdiTimerPause, mdiFlipHorizontal, mdiFlipVertical, mdiRotateLeft, @@ -243,8 +237,6 @@ export const icons = { openInNew: mdiOpenInNew, orderAlphabeticalAscending: mdiOrderAlphabeticalAscending, pageLayoutBody: mdiPageLayoutBody, - pause: mdiPause, - play: mdiPlay, printer: mdiPrinter, printerSettings: mdiPrinterPosCog, refreshCircle: mdiRefreshCircle, @@ -265,12 +257,8 @@ export const icons = { sortClockAscending: mdiSortClockAscending, sortClockDescending: mdiSortClockDescending, star: mdiStar, - stop: mdiStop, testTube: mdiTestTube, timelineText: mdiTimelineText, - timer: mdiTimer, - timerPause: mdiTimerPause, - timerPlus: mdiTimerPlus, tools: mdiTools, potSteam: mdiPotSteamOutline, translate: mdiTranslate, diff --git a/frontend/nuxt.config.js b/frontend/nuxt.config.js index 6e08af69a..5ac923a44 100644 --- a/frontend/nuxt.config.js +++ b/frontend/nuxt.config.js @@ -370,6 +370,7 @@ export default { dir: "auto", name: "Mealie", short_name: "Mealie", + crossorigin: "use-credentials", id: "mealie", description: "Mealie is a recipe management and meal planning app", theme_color: process.env.THEME_LIGHT_PRIMARY || "#E58325", @@ -532,17 +533,6 @@ export default { // ["@nuxtjs/composition-api/dist/babel-plugin"], ], }, - // audio file support - // https://v2.nuxt.com/docs/features/configuration/#extend-webpack-to-load-audio-files - extend(config, ctx) { - config.module.rules.push({ - test: /\.(ogg|mp3|wav|mpe?g)$/i, - loader: 'file-loader', - options: { - name: '[path][name].[ext]' - } - }) - }, transpile: process.env.NODE_ENV !== "production" ? [/@vue[\\/]composition-api/] : null, }, }; diff --git a/frontend/package.json b/frontend/package.json index 1c219a19e..ce8f058f7 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "mealie", -"version": "2.4.1", +"version": "2.4.2", "private": true, "scripts": { "dev": "nuxt", diff --git a/frontend/pages/g/_groupSlug/recipes/tools/index.vue b/frontend/pages/g/_groupSlug/recipes/tools/index.vue index 5ec786051..13c8e0d9f 100644 --- a/frontend/pages/g/_groupSlug/recipes/tools/index.vue +++ b/frontend/pages/g/_groupSlug/recipes/tools/index.vue @@ -5,8 +5,8 @@ :icon="$globals.icons.potSteam" :items="tools" item-type="tools" - @delete="actions.deleteOne" - @update="actions.updateOne" + @delete="deleteOne" + @update="updateOne" > @@ -14,9 +14,14 @@