mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-24 08:43:11 -05:00
Compare commits
106 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1a1798cd88 | ||
|
|
64f47c1589 | ||
|
|
326bb1eb8e | ||
|
|
80dc2ecfb7 | ||
|
|
b72082663f | ||
|
|
f46ae423d3 | ||
|
|
05cdff8ae7 | ||
|
|
0facdf73be | ||
|
|
cbad569134 | ||
|
|
1063433aa9 | ||
|
|
0ba22c81e7 | ||
|
|
0667177a2e | ||
|
|
6fcf22869b | ||
|
|
20b45e57e0 | ||
|
|
7a38a52158 | ||
|
|
e27eca5571 | ||
|
|
a90b2ccafd | ||
|
|
e0d8104643 | ||
|
|
53ee64828b | ||
|
|
6f7fba5ac1 | ||
|
|
89aed15905 | ||
|
|
aac48287a4 | ||
|
|
34daaa0476 | ||
|
|
af56a3e69d | ||
|
|
0908812b47 | ||
|
|
d910fbafe8 | ||
|
|
c7692426d5 | ||
|
|
b7a615add9 | ||
|
|
3167e23b6b | ||
|
|
8b582f8682 | ||
|
|
05f648d7fb | ||
|
|
1f19133870 | ||
|
|
98273da16e | ||
|
|
f857ca18da | ||
|
|
22a0e6d608 | ||
|
|
ed806b9fec | ||
|
|
ae8b489f97 | ||
|
|
71732d4766 | ||
|
|
6695314588 | ||
|
|
c115e6d83f | ||
|
|
e3e970213c | ||
|
|
7fe358e5e7 | ||
|
|
c7f3334479 | ||
|
|
d4467f65fb | ||
|
|
27e61ec6b1 | ||
|
|
6c6dc8103d | ||
|
|
35963dad2e | ||
|
|
acd0c2cb3e | ||
|
|
28d00f7dd5 | ||
|
|
fdd3d4b37a | ||
|
|
b09a85dfab | ||
|
|
b6ceece901 | ||
|
|
54b8760d15 | ||
|
|
187e0300a0 | ||
|
|
c398316b55 | ||
|
|
eb093a755b | ||
|
|
2e982fad82 | ||
|
|
f5570bf9b2 | ||
|
|
ddd7ee0696 | ||
|
|
f1b5b999b9 | ||
|
|
47892f84be | ||
|
|
18002351b6 | ||
|
|
9605c448e7 | ||
|
|
9499c2942c | ||
|
|
f04bd7b777 | ||
|
|
710708ea68 | ||
|
|
bb196da83b | ||
|
|
d500fbf0b4 | ||
|
|
ca94ca973c | ||
|
|
454d1eff1c | ||
|
|
280be88fc5 | ||
|
|
e24c37957b | ||
|
|
46b069ba71 | ||
|
|
2caed5e192 | ||
|
|
406f44e6a7 | ||
|
|
f6787f18ba | ||
|
|
1d64f428db | ||
|
|
77906da9f1 | ||
|
|
35d470f5ea | ||
|
|
d7cdcfa734 | ||
|
|
bfbdf76c2d | ||
|
|
7cc0fafbaa | ||
|
|
5b65ceda93 | ||
|
|
07ecd88685 | ||
|
|
8f1ce1a1c3 | ||
|
|
3146e99b03 | ||
|
|
fe53cc28ba | ||
|
|
d85635997b | ||
|
|
1ca29df52e | ||
|
|
ee5de10ffb | ||
|
|
201ab4b8ac | ||
|
|
45af609161 | ||
|
|
c4a3068492 | ||
|
|
6d4f573526 | ||
|
|
3c14df453e | ||
|
|
9826f3483e | ||
|
|
caf0f5f441 | ||
|
|
b599de9c22 | ||
|
|
fd7aa44c13 | ||
|
|
82b7bacdb7 | ||
|
|
84f86c2682 | ||
|
|
527edb1a92 | ||
|
|
6e11b92e74 | ||
|
|
3f5b25a30e | ||
|
|
662d06b5a8 | ||
|
|
9003d0f1d1 |
@@ -31,7 +31,6 @@
|
||||
"charliermarsh.ruff",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"matangover.mypy",
|
||||
"ms-python.black-formatter",
|
||||
"ms-python.pylint",
|
||||
"ms-python.python",
|
||||
"ms-python.vscode-pylance",
|
||||
@@ -56,5 +55,8 @@
|
||||
"dockerDashComposeVersion": "v2"
|
||||
}
|
||||
},
|
||||
"appPort": 3000
|
||||
"appPort": [
|
||||
"3000:3000",
|
||||
"9000:9000"
|
||||
]
|
||||
}
|
||||
|
||||
240
.github/copilot-instructions.md
vendored
Normal file
240
.github/copilot-instructions.md
vendored
Normal file
@@ -0,0 +1,240 @@
|
||||
# Mealie Development Guide for AI Agents
|
||||
|
||||
## Project Overview
|
||||
|
||||
Mealie is a self-hosted recipe manager, meal planner, and shopping list application with a FastAPI backend (Python 3.12) and Nuxt 3 frontend (Vue 3 + TypeScript). It uses SQLAlchemy ORM with support for SQLite and PostgreSQL databases.
|
||||
|
||||
**Development vs Production:**
|
||||
- **Development:** Frontend (port 3000) and backend (port 9000) run as separate processes
|
||||
- **Production:** Frontend is statically generated and served via FastAPI's SPA module (`mealie/routes/spa/`) in a single container
|
||||
|
||||
## Architecture & Key Patterns
|
||||
|
||||
### Backend Architecture (mealie/)
|
||||
|
||||
**Repository-Service-Controller Pattern:**
|
||||
- **Controllers** (`mealie/routes/**/controller_*.py`): Inherit from `BaseUserController` or `BaseAdminController`, handle HTTP concerns, delegate to services
|
||||
- **Services** (`mealie/services/`): Business logic layer, inherit from `BaseService`, coordinate repos and external dependencies
|
||||
- **Repositories** (`mealie/repos/`): Data access layer using SQLAlchemy, accessed via `AllRepositories` factory
|
||||
- Get repos via dependency injection: `repos: AllRepositories = Depends(get_repositories)`
|
||||
- All repos scoped to group/household context automatically
|
||||
|
||||
**Route Organization:**
|
||||
- Routes in `mealie/routes/` organized by domain (auth, recipe, groups, households, admin)
|
||||
- Use `APIRouter` with FastAPI dependency injection
|
||||
- Apply `@router.get/post/put/delete` decorators with Pydantic response models
|
||||
- Route controllers use `HttpRepo` mixin for common CRUD operations (see `mealie/routes/_base/mixins.py`)
|
||||
|
||||
**Schemas & Type Generation:**
|
||||
- Pydantic schemas in `mealie/schema/` with strict separation: `*In`, `*Out`, `*Create`, `*Update` suffixes
|
||||
- Auto-exported from submodules via `__init__.py` files (generated by `task dev:generate`)
|
||||
- TypeScript types auto-generated from Pydantic schemas - **never manually edit** `frontend/lib/api/types/`
|
||||
|
||||
**Database & Sessions:**
|
||||
- Session management via `Depends(generate_session)` in FastAPI routes
|
||||
- Use `session_context()` context manager in services/scripts
|
||||
- SQLAlchemy models in `mealie/db/models/`, migrations in `mealie/alembic/`
|
||||
- Create migrations: `task py:migrate -- "description"`
|
||||
|
||||
### Frontend Architecture (frontend/)
|
||||
|
||||
**Component Organization (strict naming conventions):**
|
||||
- **Domain Components** (`components/Domain/`): Feature-specific, prefix with domain (e.g., `AdminDashboard`)
|
||||
- **Global Components** (`components/global/`): Reusable primitives, prefix with `Base` (e.g., `BaseButton`)
|
||||
- **Layout Components** (`components/Layout/`): Layout-only, prefix with `App` if props or `The` if singleton
|
||||
- **Page Components** (`components/` with page prefix): Last resort for breaking up complex pages
|
||||
|
||||
**API Client Pattern:**
|
||||
- API clients in `frontend/lib/api/` extend `BaseAPI`, `BaseCRUDAPI`, or `BaseCRUDAPIReadOnly`
|
||||
- Types imported from auto-generated `frontend/lib/api/types/` (DO NOT EDIT MANUALLY)
|
||||
- Composables in `frontend/composables/` for shared state and API logic (e.g., `use-mealie-auth.ts`)
|
||||
- Use `useAuthBackend()` for authentication state, `useMealieAuth()` for user management
|
||||
|
||||
**State Management:**
|
||||
- Nuxt 3 composables for state (no Vuex)
|
||||
- Auth state via `use-mealie-auth.ts` composable
|
||||
- Prefer composables over global state stores
|
||||
|
||||
## Essential Commands (via Task/Taskfile.yml)
|
||||
|
||||
**Development workflow:**
|
||||
```bash
|
||||
task setup # Install all dependencies (Python + Node)
|
||||
task dev:services # Start Postgres & Mailpit containers
|
||||
task py # Start FastAPI backend (port 9000)
|
||||
task ui # Start Nuxt frontend (port 3000)
|
||||
task docs # Start MkDocs documentation server
|
||||
```
|
||||
|
||||
**Code generation (REQUIRED after schema changes):**
|
||||
```bash
|
||||
task dev:generate # Generate TypeScript types, schema exports, test helpers
|
||||
```
|
||||
|
||||
**Testing & Quality:**
|
||||
```bash
|
||||
task py:test # Run pytest (supports args: task py:test -- -k test_name)
|
||||
task py:check # Format + lint + type-check + test (full validation)
|
||||
task py:format # Ruff format
|
||||
task py:lint # Ruff check
|
||||
task py:mypy # Type checking
|
||||
task ui:test # Vitest frontend tests
|
||||
task ui:check # Frontend lint + test
|
||||
```
|
||||
|
||||
**Database:**
|
||||
```bash
|
||||
task py:migrate -- "description" # Generate Alembic migration
|
||||
task py:postgres # Run backend with PostgreSQL config
|
||||
```
|
||||
|
||||
**Docker:**
|
||||
```bash
|
||||
task docker:prod # Build and run production Docker compose
|
||||
```
|
||||
|
||||
## Critical Development Practices
|
||||
|
||||
### Python Backend
|
||||
|
||||
1. **Always use `uv` for Python commands** (not `python` or `pip`):
|
||||
```bash
|
||||
uv run python mealie/app.py
|
||||
uv run pytest tests/
|
||||
```
|
||||
|
||||
2. **Type hints are mandatory:** Use mypy-compatible annotations, handle Optional types explicitly
|
||||
|
||||
3. **Dependency injection pattern:**
|
||||
```python
|
||||
from fastapi import Depends
|
||||
from mealie.repos.all_repositories import get_repositories, AllRepositories
|
||||
|
||||
def my_route(
|
||||
repos: AllRepositories = Depends(get_repositories),
|
||||
user: PrivateUser = Depends(get_current_user)
|
||||
):
|
||||
recipe = repos.recipes.get_one(recipe_id)
|
||||
```
|
||||
|
||||
4. **Settings & Configuration:**
|
||||
- Get settings: `settings = get_app_settings()` (cached singleton)
|
||||
- Get directories: `dirs = get_app_dirs()`
|
||||
- Never instantiate `AppSettings()` directly
|
||||
|
||||
5. **Testing:**
|
||||
- Fixtures in `tests/fixtures/`
|
||||
- Use `api_client` fixture for integration tests
|
||||
- Follow existing patterns in `tests/integration_tests/` and `tests/unit_tests/`
|
||||
|
||||
### Frontend
|
||||
|
||||
1. **Run code generation after backend schema changes:** `task dev:generate`
|
||||
|
||||
2. **TypeScript strict mode:** All code must pass type checking
|
||||
|
||||
3. **Component naming:** Follow strict conventions (see Architecture section above)
|
||||
|
||||
4. **API calls pattern:**
|
||||
```typescript
|
||||
const api = useUserApi();
|
||||
const recipe = await api.recipes.getOne(recipeId);
|
||||
```
|
||||
|
||||
5. **Composables for shared logic:** Prefer composables in `composables/` over inline code duplication
|
||||
|
||||
6. **Translations:** Only modify `en-US` locale files when adding new translation strings - other locales are managed via Crowdin and **must never be modified** (PRs modifying non-English locales will be rejected)
|
||||
|
||||
### Cross-Cutting Concerns
|
||||
|
||||
1. **Code generation is source of truth:** After Pydantic schema changes, run `task dev:generate` to update:
|
||||
- TypeScript types (`frontend/lib/api/types/`)
|
||||
- Schema exports (`mealie/schema/*/__init__.py`)
|
||||
- Test data paths and routes
|
||||
|
||||
2. **Multi-tenancy:** All data scoped to **groups** and **households**:
|
||||
- Groups contain multiple households
|
||||
- Households contain recipes, meal plans, shopping lists
|
||||
- Repositories automatically filter by group/household context
|
||||
|
||||
3. **Pre-commit hooks:** Install via `task setup:py`, enforces Ruff formatting/linting
|
||||
|
||||
4. **Testing before PRs:** Run `task py:check` and `task ui:check` before submitting PRs
|
||||
|
||||
## Pull Request Best Practices
|
||||
|
||||
### Before Submitting a PR
|
||||
|
||||
1. **Draft PRs are optional:** Create a draft PR early if you want feedback while working, or open directly as ready when complete
|
||||
2. **Verify code generation:** If you modified Pydantic schemas, ensure `task dev:generate` was run
|
||||
3. **Follow Conventional Commits:** Title your PR according to the conventional commits format (see PR template)
|
||||
4. **Add release notes:** Include user-facing changes in the PR description
|
||||
|
||||
### What to Review
|
||||
|
||||
**Architecture & Patterns:**
|
||||
- Does the code follow the repository-service-controller pattern?
|
||||
- Are controllers delegating business logic to services?
|
||||
- Are services coordinating repositories, not accessing the database directly?
|
||||
- Is dependency injection used properly (`Depends(get_repositories)`, `Depends(get_current_user)`)?
|
||||
|
||||
**Data Scoping:**
|
||||
- Are repositories correctly scoped to group/household context?
|
||||
- Do route handlers properly validate group/household ownership before operations?
|
||||
- Are multi-tenant boundaries enforced (users can't access other groups' data)?
|
||||
|
||||
**Type Safety:**
|
||||
- Are type hints present on all functions and methods?
|
||||
- Are Pydantic schemas using correct suffixes (`*In`, `*Out`, `*Create`, `*Update`)?
|
||||
- For frontend, does TypeScript code pass strict type checking?
|
||||
|
||||
**Generated Files:**
|
||||
- Verify `frontend/lib/api/types/` files weren't manually edited (they're auto-generated)
|
||||
- Check that `mealie/schema/*/__init__.py` exports match actual schema files (auto-generated)
|
||||
- If schemas changed, confirm generated files were updated via `task dev:generate`
|
||||
|
||||
**Code Quality:**
|
||||
- Is the code readable and well-organized?
|
||||
- Are complex operations documented with clear comments?
|
||||
- Do component names follow the strict naming conventions (Domain/Global/Layout/Page prefixes)?
|
||||
- Are composables used for shared frontend logic instead of duplication?
|
||||
|
||||
**Translations:**
|
||||
- Were only `en-US` locale files modified for new translation strings?
|
||||
- Verify no other locale files (managed by Crowdin) were touched
|
||||
|
||||
**Database Changes:**
|
||||
- Are Alembic migrations included for schema changes?
|
||||
- Are migrations tested against both SQLite and PostgreSQL?
|
||||
|
||||
### Review Etiquette
|
||||
|
||||
- Be constructive and specific in feedback
|
||||
- Suggest code examples when proposing changes
|
||||
- Focus on architecture and logic - formatting/linting is handled by CI
|
||||
- Use "Approve" when ready to merge, "Request Changes" for blocking issues, "Comment" for non-blocking suggestions
|
||||
|
||||
## Common Gotchas
|
||||
|
||||
- **Don't manually edit generated files:** `frontend/lib/api/types/`, schema `__init__.py` files
|
||||
- **Repository context:** Repos are group/household-scoped - passing wrong IDs causes 404s
|
||||
- **Session handling:** Don't create sessions manually, use dependency injection or `session_context()`
|
||||
- **Schema changes require codegen:** After changing Pydantic models, run `task dev:generate`
|
||||
- **Translation files:** Only modify `en-US` locale files - all other locales are managed by Crowdin
|
||||
- **Dev containers:** This project uses VS Code dev containers - leverage the pre-configured environment
|
||||
- **Task commands:** Use `task` commands instead of direct tool invocation for consistency
|
||||
|
||||
## Key Files to Reference
|
||||
|
||||
- `Taskfile.yml` - All development commands and workflows
|
||||
- `mealie/routes/_base/base_controllers.py` - Controller base classes and patterns
|
||||
- `mealie/repos/repository_factory.py` - Repository factory and available repos
|
||||
- `frontend/lib/api/base/base-clients.ts` - API client base classes
|
||||
- `tests/conftest.py` - Test fixtures and setup
|
||||
- `dev/code-generation/main.py` - Code generation entry point
|
||||
|
||||
## Additional Resources
|
||||
|
||||
- [Documentation](https://docs.mealie.io/)
|
||||
- [Contributors Guide](https://nightly.mealie.io/contributors/developers-guide/code-contributions/)
|
||||
- [Discord](https://discord.gg/QuStdQGSGK)
|
||||
132
.github/workflows/release.yml
vendored
132
.github/workflows/release.yml
vendored
@@ -5,17 +5,73 @@ on:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
commit-version-bump:
|
||||
name: Commit version bump to repository
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
outputs:
|
||||
commit-sha: ${{ steps.commit.outputs.commit-sha }}
|
||||
steps:
|
||||
- name: Generate GitHub App Token
|
||||
id: app-token
|
||||
uses: actions/create-github-app-token@v1
|
||||
with:
|
||||
app-id: ${{ secrets.COMMIT_BOT_APP_ID }}
|
||||
private-key: ${{ secrets.COMMIT_BOT_APP_PRIVATE_KEY }}
|
||||
|
||||
- name: Checkout 🛎
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ steps.app-token.outputs.token }}
|
||||
|
||||
- name: Extract Version From Tag Name
|
||||
run: echo "VERSION_NUM=$(echo ${{ github.event.release.tag_name }} | sed 's/^v//')" >> $GITHUB_ENV
|
||||
|
||||
- name: Configure Git
|
||||
run: |
|
||||
git config user.name "mealie-commit-bot[bot]"
|
||||
git config user.email "mealie-commit-bot[bot]@users.noreply.github.com"
|
||||
|
||||
- name: Update all version strings
|
||||
run: |
|
||||
sed -i 's/^version = "[^"]*"/version = "${{ env.VERSION_NUM }}"/' pyproject.toml
|
||||
sed -i '/^name = "mealie"$/,/^version = / s/^version = "[^"]*"/version = "${{ env.VERSION_NUM }}"/' uv.lock
|
||||
sed -i 's/\("version": "\)[^"]*"/\1${{ env.VERSION_NUM }}"/' frontend/package.json
|
||||
sed -i 's/:v[0-9]*\.[0-9]*\.[0-9]*/:v${{ env.VERSION_NUM }}/' docs/docs/documentation/getting-started/installation/installation-checklist.md
|
||||
sed -i 's/:v[0-9]*\.[0-9]*\.[0-9]*/:v${{ env.VERSION_NUM }}/' docs/docs/documentation/getting-started/installation/sqlite.md
|
||||
sed -i 's/:v[0-9]*\.[0-9]*\.[0-9]*/:v${{ env.VERSION_NUM }}/' docs/docs/documentation/getting-started/installation/postgres.md
|
||||
|
||||
- name: Commit and push changes
|
||||
id: commit
|
||||
run: |
|
||||
git add pyproject.toml frontend/package.json uv.lock docs/
|
||||
git commit -m "chore: bump version to ${{ github.event.release.tag_name }}"
|
||||
git push origin HEAD:${{ github.event.repository.default_branch }}
|
||||
echo "commit-sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Move release tag to new commit
|
||||
run: |
|
||||
git tag -f ${{ github.event.release.tag_name }}
|
||||
git push -f origin ${{ github.event.release.tag_name }}
|
||||
|
||||
backend-tests:
|
||||
name: "Backend Server Tests"
|
||||
uses: ./.github/workflows/test-backend.yml
|
||||
needs:
|
||||
- commit-version-bump
|
||||
|
||||
frontend-tests:
|
||||
name: "Frontend Tests"
|
||||
uses: ./.github/workflows/test-frontend.yml
|
||||
needs:
|
||||
- commit-version-bump
|
||||
|
||||
build-package:
|
||||
name: Build Package
|
||||
uses: ./.github/workflows/build-package.yml
|
||||
needs:
|
||||
- commit-version-bump
|
||||
with:
|
||||
tag: ${{ github.event.release.tag_name }}
|
||||
|
||||
@@ -43,10 +99,48 @@ jobs:
|
||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
rollback-on-failure:
|
||||
name: Rollback version commit if deployment fails
|
||||
needs:
|
||||
- commit-version-bump
|
||||
- publish
|
||||
if: always() && needs.publish.result == 'failure'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Generate GitHub App Token
|
||||
id: app-token
|
||||
uses: actions/create-github-app-token@v1
|
||||
with:
|
||||
app-id: ${{ secrets.COMMIT_BOT_APP_ID }}
|
||||
private-key: ${{ secrets.COMMIT_BOT_APP_PRIVATE_KEY }}
|
||||
|
||||
- name: Checkout 🛎
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ steps.app-token.outputs.token }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Configure Git
|
||||
run: |
|
||||
git config user.name "mealie-commit-bot[bot]"
|
||||
git config user.email "mealie-commit-bot[bot]@users.noreply.github.com"
|
||||
|
||||
- name: Delete release tag
|
||||
run: |
|
||||
git push --delete origin ${{ github.event.release.tag_name }}
|
||||
|
||||
- name: Revert version bump commit
|
||||
run: |
|
||||
git revert --no-edit ${{ needs.commit-version-bump.outputs.commit-sha }}
|
||||
git push origin HEAD:${{ github.event.repository.default_branch }}
|
||||
|
||||
notify-discord:
|
||||
name: Notify Discord
|
||||
needs:
|
||||
- publish
|
||||
if: success()
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Discord notification
|
||||
@@ -55,41 +149,3 @@ jobs:
|
||||
uses: Ilshidur/action-discord@0.3.2
|
||||
with:
|
||||
args: "🚀 Version {{ EVENT_PAYLOAD.release.tag_name }} of Mealie has been released. See the release notes https://github.com/mealie-recipes/mealie/releases/tag/{{ EVENT_PAYLOAD.release.tag_name }}"
|
||||
|
||||
update-image-tags:
|
||||
name: Update image tag in sample docker-compose files
|
||||
needs:
|
||||
- publish
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Checkout 🛎
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Extract Version From Tag Name
|
||||
run: echo "VERSION_NUM=$(echo ${{ github.event.release.tag_name }} | sed 's/^v//')" >> $GITHUB_ENV
|
||||
|
||||
- name: Modify version strings
|
||||
run: |
|
||||
sed -i 's/:v[0-9]*.[0-9]*.[0-9]*/:v${{ env.VERSION_NUM }}/' docs/docs/documentation/getting-started/installation/installation-checklist.md
|
||||
sed -i 's/:v[0-9]*.[0-9]*.[0-9]*/:v${{ env.VERSION_NUM }}/' docs/docs/documentation/getting-started/installation/sqlite.md
|
||||
sed -i 's/:v[0-9]*.[0-9]*.[0-9]*/:v${{ env.VERSION_NUM }}/' docs/docs/documentation/getting-started/installation/postgres.md
|
||||
sed -i 's/^version = "[^"]*"/version = "${{ env.VERSION_NUM }}"/' pyproject.toml
|
||||
sed -i 's/\("version": "\)[^"]*"/\1${{ env.VERSION_NUM }}"/' frontend/package.json
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v6
|
||||
# This doesn't currently work for us because it creates the PR but the workflows don't run.
|
||||
# TODO: Provide a personal access token as a parameter here, that solves that problem.
|
||||
# https://github.com/peter-evans/create-pull-request
|
||||
with:
|
||||
commit-message: "Update image tag, for release ${{ github.event.release.tag_name }}"
|
||||
branch: "docs/newrelease-update-version-${{ github.event.release.tag_name }}"
|
||||
labels: |
|
||||
documentation
|
||||
delete-branch: true
|
||||
base: mealie-next
|
||||
title: "docs(auto): Update image tag, for release ${{ github.event.release.tag_name }}"
|
||||
body: "Auto-generated by `.github/workflows/release.yml`, on publish of release ${{ github.event.release.tag_name }}"
|
||||
|
||||
2
.github/workflows/test-frontend.yml
vendored
2
.github/workflows/test-frontend.yml
vendored
@@ -39,7 +39,7 @@ jobs:
|
||||
working-directory: "frontend"
|
||||
|
||||
- name: Run linter 👀
|
||||
run: yarn lint
|
||||
run: yarn lint --max-warnings=0
|
||||
working-directory: "frontend"
|
||||
|
||||
- name: Run tests 🧪
|
||||
|
||||
@@ -12,7 +12,7 @@ repos:
|
||||
exclude: ^tests/data/
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
# Ruff version.
|
||||
rev: v0.14.4
|
||||
rev: v0.14.8
|
||||
hooks:
|
||||
- id: ruff
|
||||
- id: ruff-format
|
||||
|
||||
@@ -228,7 +228,7 @@ tasks:
|
||||
desc: runs the frontend linter
|
||||
dir: frontend
|
||||
cmds:
|
||||
- yarn lint
|
||||
- yarn lint --max-warnings=0
|
||||
|
||||
ui:test:
|
||||
desc: runs the frontend tests
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
###############################################
|
||||
# Frontend Build
|
||||
###############################################
|
||||
FROM node:24@sha256:7f80506b8225bcce2ce8202b1026fcde8f0bfb716b1b833f20250d79d4463276 \
|
||||
FROM node:24@sha256:20988bcdc6dc76690023eb2505dd273bdeefddcd0bde4bfd1efe4ebf8707f747 \
|
||||
AS frontend-builder
|
||||
|
||||
WORKDIR /frontend
|
||||
|
||||
@@ -4,22 +4,22 @@
|
||||
|
||||
### General
|
||||
|
||||
| Variables | Default | Description |
|
||||
| ----------------------------- | :-------------------: | -------------------------------------------------------------------------------------------------- |
|
||||
| PUID | 911 | UserID permissions between host OS and container |
|
||||
| PGID | 911 | GroupID permissions between host OS and container |
|
||||
| DEFAULT_GROUP | Home | The default group for users |
|
||||
| DEFAULT_HOUSEHOLD | Family | The default household for users in each group |
|
||||
| BASE_URL | http://localhost:8080 | Used for Notifications |
|
||||
| TOKEN_TIME | 48 | The time in hours that a login/auth token is valid. Must be <= 87600 (10 years, in hours). |
|
||||
| API_PORT | 9000 | The port exposed by backend API. **Do not change this if you're running in Docker** |
|
||||
| API_DOCS | True | Turns on/off access to the API documentation locally |
|
||||
| TZ | UTC | Must be set to get correct date/time on the server |
|
||||
| ALLOW_SIGNUP<super>\*</super> | false | Allow user sign-up without token |
|
||||
| ALLOW_PASSWORD_LOGIN | true | Whether or not to display the username+password input fields. Keep set to true unless you use OIDC authentication |
|
||||
| LOG_CONFIG_OVERRIDE | | Override the config for logging with a custom path |
|
||||
| LOG_LEVEL | info | Logging level (e.g. critical, error, warning, info, debug) |
|
||||
| DAILY_SCHEDULE_TIME | 23:45 | The time of day to run daily server tasks, in HH:MM format. Use the server's local time, *not* UTC |
|
||||
| Variables | Default | Description |
|
||||
| ----------------------------- | :-------------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| PUID | 911 | UserID permissions between host OS and container |
|
||||
| PGID | 911 | GroupID permissions between host OS and container |
|
||||
| DEFAULT_GROUP | Home | The default group for users |
|
||||
| DEFAULT_HOUSEHOLD | Family | The default household for users in each group |
|
||||
| BASE_URL | http://localhost:8080 | Used for Notifications |
|
||||
| TOKEN_TIME | 48 | The time in hours that a login/auth token is valid. Must be <= 9600 (400 days, in hours). |
|
||||
| API_PORT | 9000 | The port exposed by backend API. **Do not change this if you're running in Docker** |
|
||||
| API_DOCS | True | Turns on/off access to the API documentation locally |
|
||||
| TZ | UTC | Must be set to get correct date/time on the server |
|
||||
| ALLOW_SIGNUP<super>\*</super> | false | Allow user sign-up without token |
|
||||
| ALLOW_PASSWORD_LOGIN | true | Whether or not to display the username+password input fields. Keep set to true unless you use OIDC authentication |
|
||||
| LOG_CONFIG_OVERRIDE | | Override the config for logging with a custom path |
|
||||
| LOG_LEVEL | info | Logging level (e.g. critical, error, warning, info, debug) |
|
||||
| DAILY_SCHEDULE_TIME | 23:45 | The time of day to run daily server tasks, in HH:MM format. Use the server's local time, *not* UTC |
|
||||
|
||||
<super>\*</super> Starting in v1.4.0 this was changed to default to `false` as part of a security review of the application.
|
||||
|
||||
@@ -145,22 +145,95 @@ Setting the following environmental variables will change the theme of the front
|
||||
|
||||
If using YAML sequence syntax, don't include any quotes:<br>`THEME_LIGHT_PRIMARY=#E58325` or `THEME_LIGHT_PRIMARY=E58325`
|
||||
|
||||
| Variables | Default | Description |
|
||||
| --------------------- | :-----: | --------------------------- |
|
||||
| THEME_LIGHT_PRIMARY | #E58325 | Light Theme Config Variable |
|
||||
| THEME_LIGHT_ACCENT | #007A99 | Light Theme Config Variable |
|
||||
| THEME_LIGHT_SECONDARY | #973542 | Light Theme Config Variable |
|
||||
| THEME_LIGHT_SUCCESS | #43A047 | Light Theme Config Variable |
|
||||
| THEME_LIGHT_INFO | #1976D2 | Light Theme Config Variable |
|
||||
| THEME_LIGHT_WARNING | #FF6D00 | Light Theme Config Variable |
|
||||
| THEME_LIGHT_ERROR | #EF5350 | Light Theme Config Variable |
|
||||
| THEME_DARK_PRIMARY | #E58325 | Dark Theme Config Variable |
|
||||
| THEME_DARK_ACCENT | #007A99 | Dark Theme Config Variable |
|
||||
| THEME_DARK_SECONDARY | #973542 | Dark Theme Config Variable |
|
||||
| THEME_DARK_SUCCESS | #43A047 | Dark Theme Config Variable |
|
||||
| THEME_DARK_INFO | #1976D2 | Dark Theme Config Variable |
|
||||
| THEME_DARK_WARNING | #FF6D00 | Dark Theme Config Variable |
|
||||
| THEME_DARK_ERROR | #EF5350 | Dark Theme Config Variable |
|
||||
| Variables | Default | Description |
|
||||
| --------------------- | :-----: | ---------------------------------- |
|
||||
| THEME_LIGHT_PRIMARY | #E58325 | Main brand color and headers |
|
||||
| THEME_LIGHT_ACCENT | #007A99 | Buttons and interactive elements |
|
||||
| THEME_LIGHT_SECONDARY | #973542 | Navigation and sidebar backgrounds |
|
||||
| THEME_LIGHT_SUCCESS | #43A047 | Success messages and confirmations |
|
||||
| THEME_LIGHT_INFO | #1976D2 | Information alerts and tooltips |
|
||||
| THEME_LIGHT_WARNING | #FF6D00 | Warning notifications |
|
||||
| THEME_LIGHT_ERROR | #EF5350 | Error messages and alerts |
|
||||
| THEME_DARK_PRIMARY | #E58325 | Main brand color and headers |
|
||||
| THEME_DARK_ACCENT | #007A99 | Buttons and interactive elements |
|
||||
| THEME_DARK_SECONDARY | #973542 | Navigation and sidebar backgrounds |
|
||||
| THEME_DARK_SUCCESS | #43A047 | Success messages and confirmations |
|
||||
| THEME_DARK_INFO | #1976D2 | Information alerts and tooltips |
|
||||
| THEME_DARK_WARNING | #FF6D00 | Warning notifications |
|
||||
| THEME_DARK_ERROR | #EF5350 | Error messages and alerts |
|
||||
|
||||
#### Theming Examples
|
||||
|
||||
The examples below provide copy-ready Docker Compose environment configurations for three different color palettes. Copy and paste the desired theme into your `docker-compose.yml` file's environment section.
|
||||
|
||||
!!! info
|
||||
These themes are functional and ready to use, but they are provided primarily as examples. The color palettes can be adjusted or refined to better suit your preferences.
|
||||
|
||||
=== "Blue Theme"
|
||||
|
||||
```yaml
|
||||
environment:
|
||||
# Light mode colors
|
||||
THEME_LIGHT_PRIMARY: '#5E9BD1'
|
||||
THEME_LIGHT_ACCENT: '#A3C9E8'
|
||||
THEME_LIGHT_SECONDARY: '#4F89BA'
|
||||
THEME_LIGHT_SUCCESS: '#4CAF50'
|
||||
THEME_LIGHT_INFO: '#4A9ED8'
|
||||
THEME_LIGHT_WARNING: '#EAC46B'
|
||||
THEME_LIGHT_ERROR: '#E57373'
|
||||
# Dark mode colors
|
||||
THEME_DARK_PRIMARY: '#5A8FBF'
|
||||
THEME_DARK_ACCENT: '#90B8D9'
|
||||
THEME_DARK_SECONDARY: '#406D96'
|
||||
THEME_DARK_SUCCESS: '#81C784'
|
||||
THEME_DARK_INFO: '#78B2C0'
|
||||
THEME_DARK_WARNING: '#EBC86E'
|
||||
THEME_DARK_ERROR: '#E57373'
|
||||
```
|
||||
|
||||
=== "Green Theme"
|
||||
|
||||
```yaml
|
||||
environment:
|
||||
# Light mode colors
|
||||
THEME_LIGHT_PRIMARY: '#75A86C'
|
||||
THEME_LIGHT_ACCENT: '#A8D0A6'
|
||||
THEME_LIGHT_SECONDARY: '#638E5E'
|
||||
THEME_LIGHT_SUCCESS: '#4CAF50'
|
||||
THEME_LIGHT_INFO: '#4A9ED8'
|
||||
THEME_LIGHT_WARNING: '#EAC46B'
|
||||
THEME_LIGHT_ERROR: '#E57373'
|
||||
# Dark mode colors
|
||||
THEME_DARK_PRIMARY: '#739B7A'
|
||||
THEME_DARK_ACCENT: '#9FBE9D'
|
||||
THEME_DARK_SECONDARY: '#56775E'
|
||||
THEME_DARK_SUCCESS: '#81C784'
|
||||
THEME_DARK_INFO: '#78B2C0'
|
||||
THEME_DARK_WARNING: '#EBC86E'
|
||||
THEME_DARK_ERROR: '#E57373'
|
||||
```
|
||||
|
||||
=== "Pink Theme"
|
||||
|
||||
```yaml
|
||||
environment:
|
||||
# Light mode colors
|
||||
THEME_LIGHT_PRIMARY: '#D97C96'
|
||||
THEME_LIGHT_ACCENT: '#E891A7'
|
||||
THEME_LIGHT_SECONDARY: '#C86C88'
|
||||
THEME_LIGHT_SUCCESS: '#4CAF50'
|
||||
THEME_LIGHT_INFO: '#2196F3'
|
||||
THEME_LIGHT_WARNING: '#FFC107'
|
||||
THEME_LIGHT_ERROR: '#E57373'
|
||||
# Dark mode colors
|
||||
THEME_DARK_PRIMARY: '#C2185B'
|
||||
THEME_DARK_ACCENT: '#FF80AB'
|
||||
THEME_DARK_SECONDARY: '#AD1457'
|
||||
THEME_DARK_SUCCESS: '#81C784'
|
||||
THEME_DARK_INFO: '#64B5F6'
|
||||
THEME_DARK_WARNING: '#FFD54F'
|
||||
THEME_DARK_ERROR: '#E57373'
|
||||
```
|
||||
|
||||
### Docker Secrets
|
||||
|
||||
|
||||
@@ -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:v3.4.0`
|
||||
2. Replace the image for the API container with `ghcr.io/mealie-recipes/mealie:v3.7.0`
|
||||
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
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ PostgreSQL might be considered if you need to support many concurrent users. In
|
||||
```yaml
|
||||
services:
|
||||
mealie:
|
||||
image: ghcr.io/mealie-recipes/mealie:v3.4.0 # (3)
|
||||
image: ghcr.io/mealie-recipes/mealie:v3.7.0 # (3)
|
||||
container_name: mealie
|
||||
restart: always
|
||||
ports:
|
||||
|
||||
@@ -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:v3.4.0 # (3)
|
||||
image: ghcr.io/mealie-recipes/mealie:v3.7.0 # (3)
|
||||
container_name: mealie
|
||||
restart: always
|
||||
ports:
|
||||
|
||||
@@ -9,6 +9,23 @@
|
||||
- Create a Backup and Download from the UI
|
||||
- Upgrade
|
||||
|
||||
!!! info "Improved Image Processing"
|
||||
Starting with :octicons-tag-24: v3.7.0, we updated our image processing algorithm to improve image quality and compression. New image processing can be up to 40%-50% smaller on disk while providing higher resolution thumbnails. To take advantage of these improvements on older recipes, you can run our image-processing script:
|
||||
|
||||
```shell
|
||||
docker exec -it mealie bash
|
||||
python /opt/mealie/lib64/python3.12/site-packages/mealie/scripts/reprocess_images.py
|
||||
```
|
||||
|
||||
### Options
|
||||
- `--workers N`: Number of worker threads (default: 2, safe for low-powered devices)
|
||||
- `--force-all`: Reprocess all recipes regardless of current image state
|
||||
|
||||
### Example
|
||||
```shell
|
||||
python /opt/mealie/lib64/python3.12/site-packages/mealie/scripts/reprocess_images.py --workers 8
|
||||
```
|
||||
|
||||
## Upgrading to Mealie v1 or later
|
||||
If you are upgrading from pre-v1.0.0 to v1.0.0 or later (v2.0.0, etc.), make sure you read [Migrating to Mealie v1](./migrating-to-mealie-v1.md)!
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
121
frontend/components/Domain/Admin/Setup/EndPageContent.vue
Normal file
121
frontend/components/Domain/Admin/Setup/EndPageContent.vue
Normal file
@@ -0,0 +1,121 @@
|
||||
<template>
|
||||
<v-container max-width="880" class="end-page-content">
|
||||
<div class="d-flex flex-column ga-6">
|
||||
<div>
|
||||
<v-card-title class="text-h4 justify-center">
|
||||
{{ $t('admin.setup.setup-complete') }}
|
||||
</v-card-title>
|
||||
<v-card-subtitle class="justify-center">
|
||||
{{ $t('admin.setup.here-are-a-few-things-to-help-you-get-started') }}
|
||||
</v-card-subtitle>
|
||||
</div>
|
||||
<div
|
||||
v-for="section, idx in sections"
|
||||
:key="idx"
|
||||
class="d-flex flex-column ga-3"
|
||||
>
|
||||
<v-card-title class="text-h6 pl-0">
|
||||
{{ section.title }}
|
||||
</v-card-title>
|
||||
<div class="sections d-flex flex-column ga-2">
|
||||
<v-card
|
||||
v-for="link, linkIdx in section.links"
|
||||
:key="linkIdx"
|
||||
clas="link-card"
|
||||
:href="link.to"
|
||||
:title="link.text"
|
||||
:subtitle="link.description"
|
||||
:append-icon="$globals.icons.chevronRight"
|
||||
>
|
||||
<template #prepend>
|
||||
<v-avatar :icon="link.icon || undefined" variant="tonal" :color="section.color" />
|
||||
</template>
|
||||
</v-card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
export default defineNuxtComponent({
|
||||
setup() {
|
||||
const i18n = useI18n();
|
||||
const $auth = useMealieAuth();
|
||||
const groupSlug = computed(() => $auth.user.value?.groupSlug);
|
||||
const { $globals } = useNuxtApp();
|
||||
|
||||
const sections = ref([
|
||||
{
|
||||
title: i18n.t("profile.data-migrations"),
|
||||
color: "info",
|
||||
links: [
|
||||
{
|
||||
icon: $globals.icons.backupRestore,
|
||||
to: "/admin/backups",
|
||||
text: i18n.t("settings.backup.backup-restore"),
|
||||
description: i18n.t("admin.setup.restore-from-v1-backup"),
|
||||
},
|
||||
{
|
||||
icon: $globals.icons.import,
|
||||
to: "/group/migrations",
|
||||
text: i18n.t("migration.recipe-migration"),
|
||||
description: i18n.t("migration.coming-from-another-application-or-an-even-older-version-of-mealie"),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: i18n.t("recipe.create-recipes"),
|
||||
color: "success",
|
||||
links: [
|
||||
{
|
||||
icon: $globals.icons.createAlt,
|
||||
to: computed(() => `/g/${groupSlug.value || ""}/r/create/new`),
|
||||
text: i18n.t("recipe.create-recipe"),
|
||||
description: i18n.t("recipe.create-recipe-description"),
|
||||
},
|
||||
{
|
||||
icon: $globals.icons.link,
|
||||
to: computed(() => `/g/${groupSlug.value || ""}/r/create/url`),
|
||||
text: i18n.t("recipe.import-with-url"),
|
||||
description: i18n.t("recipe.scrape-recipe-description"),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: i18n.t("user.manage-users"),
|
||||
color: "primary",
|
||||
links: [
|
||||
{
|
||||
icon: $globals.icons.group,
|
||||
to: "/admin/manage/users",
|
||||
text: i18n.t("user.manage-users"),
|
||||
description: i18n.t("user.manage-users-description"),
|
||||
},
|
||||
{
|
||||
icon: $globals.icons.user,
|
||||
to: "/user/profile",
|
||||
text: i18n.t("profile.manage-user-profile"),
|
||||
description: i18n.t("admin.setup.manage-profile-or-get-invite-link"),
|
||||
},
|
||||
],
|
||||
},
|
||||
]);
|
||||
return { sections };
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.v-container {
|
||||
.v-card-title,
|
||||
.v-card-subtitle {
|
||||
padding: 0;
|
||||
white-space: unset;
|
||||
}
|
||||
|
||||
.v-card-item {
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -83,6 +83,11 @@ const fieldDefs: FieldDefinition[] = [
|
||||
label: i18n.t("household.households"),
|
||||
type: Organizer.Household,
|
||||
},
|
||||
{
|
||||
name: "user_id",
|
||||
label: i18n.t("user.users"),
|
||||
type: Organizer.User,
|
||||
},
|
||||
{
|
||||
name: "created_at",
|
||||
label: i18n.t("general.date-created"),
|
||||
|
||||
@@ -58,6 +58,9 @@ const MEAL_TYPE_OPTIONS = [
|
||||
{ title: i18n.t("meal-plan.lunch"), value: "lunch" },
|
||||
{ title: i18n.t("meal-plan.dinner"), value: "dinner" },
|
||||
{ title: i18n.t("meal-plan.side"), value: "side" },
|
||||
{ title: i18n.t("meal-plan.snack"), value: "snack" },
|
||||
{ title: i18n.t("meal-plan.drink"), value: "drink" },
|
||||
{ title: i18n.t("meal-plan.dessert"), value: "dessert" },
|
||||
{ title: i18n.t("meal-plan.type-any"), value: "unset" },
|
||||
];
|
||||
|
||||
@@ -103,6 +106,11 @@ const fieldDefs: FieldDefinition[] = [
|
||||
label: i18n.t("household.households"),
|
||||
type: Organizer.Household,
|
||||
},
|
||||
{
|
||||
name: "user_id",
|
||||
label: i18n.t("user.users"),
|
||||
type: Organizer.User,
|
||||
},
|
||||
{
|
||||
name: "last_made",
|
||||
label: i18n.t("general.last-made"),
|
||||
|
||||
@@ -1,283 +1,297 @@
|
||||
<template>
|
||||
<v-card class="ma-0" style="overflow-x: auto;">
|
||||
<v-card class="ma-0" flat fluid>
|
||||
<v-card-text class="ma-0 pa-0">
|
||||
<v-container fluid class="ma-0 pa-0">
|
||||
<VueDraggable
|
||||
v-model="fields"
|
||||
handle=".handle"
|
||||
:delay="250"
|
||||
:delay-on-touch-only="true"
|
||||
v-bind="{
|
||||
animation: 200,
|
||||
group: 'recipe-instructions',
|
||||
ghostClass: 'ghost',
|
||||
}"
|
||||
@start="drag = true"
|
||||
@end="onDragEnd"
|
||||
<VueDraggable
|
||||
v-model="fields"
|
||||
handle=".handle"
|
||||
:delay="250"
|
||||
:delay-on-touch-only="true"
|
||||
v-bind="{
|
||||
animation: 200,
|
||||
group: 'recipe-instructions',
|
||||
ghostClass: 'ghost',
|
||||
}"
|
||||
@start="drag = true"
|
||||
@end="onDragEnd"
|
||||
>
|
||||
<v-row
|
||||
v-for="(field, index) in fields"
|
||||
:key="field.id"
|
||||
class="d-flex flex-row flex-wrap mx-auto pb-2"
|
||||
:class="$vuetify.display.xs ? (Math.floor(index / 1) % 2 === 0 ? 'bg-dark' : 'bg-light') : ''"
|
||||
style="max-width: 100%;"
|
||||
>
|
||||
<v-row
|
||||
v-for="(field, index) in fields"
|
||||
:key="field.id"
|
||||
class="d-flex flex-nowrap"
|
||||
style="max-width: 100%;"
|
||||
<!-- drag handle -->
|
||||
<v-col
|
||||
:cols="config.items.icon.cols(index)"
|
||||
:sm="config.items.icon.sm(index)"
|
||||
:class="$vuetify.display.smAndDown ? 'd-flex pa-0' : 'd-flex justify-end pr-6'"
|
||||
>
|
||||
<!-- drag handle -->
|
||||
<v-col
|
||||
:cols="config.items.icon.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.icon.style"
|
||||
<v-icon class="handle my-auto" :size="28" style="cursor: move;">
|
||||
{{ $globals.icons.arrowUpDown }}
|
||||
</v-icon>
|
||||
</v-col>
|
||||
|
||||
<!-- and / or -->
|
||||
<v-col
|
||||
v-if="index != 0 || $vuetify.display.smAndUp"
|
||||
:cols="config.items.logicalOperator.cols(index)"
|
||||
:sm="config.items.logicalOperator.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<v-select
|
||||
v-if="index"
|
||||
:model-value="field.logicalOperator"
|
||||
:items="[logOps.AND, logOps.OR]"
|
||||
item-title="label"
|
||||
item-value="value"
|
||||
variant="underlined"
|
||||
@update:model-value="setLogicalOperatorValue(field, index, $event as unknown as LogicalOperator)"
|
||||
>
|
||||
<v-icon
|
||||
class="handle"
|
||||
:size="24"
|
||||
style="cursor: move;margin: auto;"
|
||||
>
|
||||
{{ $globals.icons.arrowUpDown }}
|
||||
</v-icon>
|
||||
</v-col>
|
||||
<!-- and / or -->
|
||||
<v-col
|
||||
:cols="config.items.logicalOperator.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.logicalOperator.style"
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw.label }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
|
||||
<!-- left parenthesis -->
|
||||
<v-col
|
||||
v-if="showAdvanced"
|
||||
:cols="config.items.leftParens.cols(index)"
|
||||
:sm="config.items.leftParens.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<v-select
|
||||
:model-value="field.leftParenthesis"
|
||||
:items="['', '(', '((', '(((']"
|
||||
variant="underlined"
|
||||
@update:model-value="setLeftParenthesisValue(field, index, $event)"
|
||||
>
|
||||
<v-select
|
||||
v-if="index"
|
||||
:model-value="field.logicalOperator"
|
||||
:items="[logOps.AND, logOps.OR]"
|
||||
item-title="label"
|
||||
item-value="value"
|
||||
variant="underlined"
|
||||
@update:model-value="setLogicalOperatorValue(field, index, $event as unknown as LogicalOperator)"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw.label }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
<!-- left parenthesis -->
|
||||
<v-col
|
||||
v-if="showAdvanced"
|
||||
:cols="config.items.leftParens.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.leftParens.style"
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
|
||||
<!-- field name -->
|
||||
<v-col
|
||||
:cols="config.items.fieldName.cols(index)"
|
||||
:sm="config.items.fieldName.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<v-select
|
||||
chips
|
||||
:model-value="field.label"
|
||||
:items="fieldDefs"
|
||||
variant="underlined"
|
||||
item-title="label"
|
||||
@update:model-value="setField(index, $event)"
|
||||
>
|
||||
<v-select
|
||||
:model-value="field.leftParenthesis"
|
||||
:items="['', '(', '((', '(((']"
|
||||
variant="underlined"
|
||||
@update:model-value="setLeftParenthesisValue(field, index, $event)"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
<!-- field name -->
|
||||
<v-col
|
||||
:cols="config.items.fieldName.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.fieldName.style"
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw.label }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
|
||||
<!-- relational operator -->
|
||||
<v-col
|
||||
:cols="config.items.relationalOperator.cols(index)"
|
||||
:sm="config.items.relationalOperator.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<v-select
|
||||
v-if="field.type !== 'boolean'"
|
||||
:model-value="field.relationalOperatorValue"
|
||||
:items="field.relationalOperatorOptions"
|
||||
item-title="label"
|
||||
item-value="value"
|
||||
variant="underlined"
|
||||
@update:model-value="setRelationalOperatorValue(field, index, $event as unknown as RelationalKeyword | RelationalOperator)"
|
||||
>
|
||||
<v-select
|
||||
chips
|
||||
:model-value="field.label"
|
||||
:items="fieldDefs"
|
||||
variant="underlined"
|
||||
item-title="label"
|
||||
@update:model-value="setField(index, $event)"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw.label }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
<!-- relational operator -->
|
||||
<v-col
|
||||
:cols="config.items.relationalOperator.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.relationalOperator.style"
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw.label }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
|
||||
<!-- field value -->
|
||||
<v-col
|
||||
:cols="config.items.fieldValue.cols(index)"
|
||||
:sm="config.items.fieldValue.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<v-select
|
||||
v-if="field.fieldOptions"
|
||||
:model-value="field.values"
|
||||
:items="field.fieldOptions"
|
||||
item-title="label"
|
||||
item-value="value"
|
||||
multiple
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldValues(field, index, $event)"
|
||||
/>
|
||||
<v-text-field
|
||||
v-else-if="field.type === 'string'"
|
||||
:model-value="field.value"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldValue(field, index, $event)"
|
||||
/>
|
||||
<v-text-field
|
||||
v-else-if="field.type === 'number'"
|
||||
:model-value="field.value"
|
||||
type="number"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldValue(field, index, $event)"
|
||||
/>
|
||||
<v-checkbox
|
||||
v-else-if="field.type === 'boolean'"
|
||||
:model-value="field.value"
|
||||
@update:model-value="setFieldValue(field, index, $event!)"
|
||||
/>
|
||||
<v-menu
|
||||
v-else-if="field.type === 'date'"
|
||||
v-model="datePickers[index]"
|
||||
:close-on-content-click="false"
|
||||
transition="scale-transition"
|
||||
offset-y
|
||||
max-width="290px"
|
||||
min-width="auto"
|
||||
>
|
||||
<v-select
|
||||
v-if="field.type !== 'boolean'"
|
||||
:model-value="field.relationalOperatorValue"
|
||||
:items="field.relationalOperatorOptions"
|
||||
item-title="label"
|
||||
item-value="value"
|
||||
variant="underlined"
|
||||
@update:model-value="setRelationalOperatorValue(field, index, $event as unknown as RelationalKeyword | RelationalOperator)"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw.label }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
<!-- field value -->
|
||||
<v-col
|
||||
:cols="config.items.fieldValue.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.fieldValue.style"
|
||||
>
|
||||
<v-select
|
||||
v-if="field.fieldOptions"
|
||||
:model-value="field.values"
|
||||
:items="field.fieldOptions"
|
||||
item-title="label"
|
||||
item-value="value"
|
||||
multiple
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldValues(field, index, $event)"
|
||||
/>
|
||||
<v-text-field
|
||||
v-else-if="field.type === 'string'"
|
||||
:model-value="field.value"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldValue(field, index, $event)"
|
||||
/>
|
||||
<v-text-field
|
||||
v-else-if="field.type === 'number'"
|
||||
:model-value="field.value"
|
||||
type="number"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldValue(field, index, $event)"
|
||||
/>
|
||||
<v-checkbox
|
||||
v-else-if="field.type === 'boolean'"
|
||||
:model-value="field.value"
|
||||
@update:model-value="setFieldValue(field, index, $event!)"
|
||||
/>
|
||||
<v-menu
|
||||
v-else-if="field.type === 'date'"
|
||||
v-model="datePickers[index]"
|
||||
:close-on-content-click="false"
|
||||
transition="scale-transition"
|
||||
offset-y
|
||||
max-width="290px"
|
||||
min-width="auto"
|
||||
>
|
||||
<template #activator="{ props: activatorProps }">
|
||||
<v-text-field
|
||||
:model-value="field.value ? $d(new Date(field.value + 'T00:00:00')) : null"
|
||||
persistent-hint
|
||||
:prepend-icon="$globals.icons.calendar"
|
||||
variant="underlined"
|
||||
color="primary"
|
||||
v-bind="activatorProps"
|
||||
readonly
|
||||
/>
|
||||
</template>
|
||||
<v-date-picker
|
||||
:model-value="field.value ? new Date(field.value + 'T00:00:00') : null"
|
||||
hide-header
|
||||
:first-day-of-week="firstDayOfWeek"
|
||||
:local="$i18n.locale"
|
||||
@update:model-value="val => setFieldValue(field, index, val ? val.toISOString().slice(0, 10) : '')"
|
||||
<template #activator="{ props: activatorProps }">
|
||||
<v-text-field
|
||||
:model-value="field.value ? $d(new Date(field.value + 'T00:00:00')) : null"
|
||||
persistent-hint
|
||||
:prepend-icon="$globals.icons.calendar"
|
||||
variant="underlined"
|
||||
color="primary"
|
||||
v-bind="activatorProps"
|
||||
readonly
|
||||
/>
|
||||
</v-menu>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Category"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Category"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldOrganizers(field, index, $event)"
|
||||
</template>
|
||||
<v-date-picker
|
||||
:model-value="field.value ? new Date(field.value + 'T00:00:00') : null"
|
||||
hide-header
|
||||
:first-day-of-week="firstDayOfWeek"
|
||||
:local="$i18n.locale"
|
||||
@update:model-value="val => setFieldValue(field, index, val ? val.toISOString().slice(0, 10) : '')"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Tag"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Tag"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldOrganizers(field, index, $event)"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Tool"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Tool"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldOrganizers(field, index, $event)"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Food"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Food"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldOrganizers(field, index, $event)"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Household"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Household"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="setFieldOrganizers(field, index, $event)"
|
||||
/>
|
||||
</v-col>
|
||||
<!-- right parenthesis -->
|
||||
<v-col
|
||||
v-if="showAdvanced"
|
||||
:cols="config.items.rightParens.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.rightParens.style"
|
||||
</v-menu>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Category"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Category"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="val => setFieldOrganizers(field, index, (val || []) as OrganizerBase[])"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Tag"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Tag"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="val => setFieldOrganizers(field, index, (val || []) as OrganizerBase[])"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Tool"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Tool"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="val => setFieldOrganizers(field, index, (val || []) as OrganizerBase[])"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Food"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Food"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="val => setFieldOrganizers(field, index, (val || []) as OrganizerBase[])"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.Household"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.Household"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="val => setFieldOrganizers(field, index, (val || []) as OrganizerBase[])"
|
||||
/>
|
||||
<RecipeOrganizerSelector
|
||||
v-else-if="field.type === Organizer.User"
|
||||
v-model="field.organizers"
|
||||
:selector-type="Organizer.User"
|
||||
:show-add="false"
|
||||
:show-label="false"
|
||||
:show-icon="false"
|
||||
variant="underlined"
|
||||
@update:model-value="val => setFieldOrganizers(field, index, (val || []) as OrganizerBase[])"
|
||||
/>
|
||||
</v-col>
|
||||
|
||||
<!-- right parenthesis -->
|
||||
<v-col
|
||||
v-if="showAdvanced"
|
||||
:cols="config.items.rightParens.cols(index)"
|
||||
:sm="config.items.rightParens.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<v-select
|
||||
:model-value="field.rightParenthesis"
|
||||
:items="['', ')', '))', ')))']"
|
||||
variant="underlined"
|
||||
@update:model-value="setRightParenthesisValue(field, index, $event)"
|
||||
>
|
||||
<v-select
|
||||
:model-value="field.rightParenthesis"
|
||||
:items="['', ')', '))', ')))']"
|
||||
variant="underlined"
|
||||
@update:model-value="setRightParenthesisValue(field, index, $event)"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
<!-- field actions -->
|
||||
<v-col
|
||||
:cols="config.items.fieldActions.cols"
|
||||
:class="config.col.class"
|
||||
:style="config.items.fieldActions.style"
|
||||
>
|
||||
<BaseButtonGroup
|
||||
:buttons="[
|
||||
{
|
||||
icon: $globals.icons.delete,
|
||||
text: $t('general.delete'),
|
||||
event: 'delete',
|
||||
disabled: fields.length === 1,
|
||||
},
|
||||
]"
|
||||
class="my-auto"
|
||||
@delete="removeField(index)"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</VueDraggable>
|
||||
</v-container>
|
||||
<template #chip="{ item }">
|
||||
<span :class="config.select.textClass" style="width: 100%;">
|
||||
{{ item.raw }}
|
||||
</span>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
|
||||
<!-- field actions -->
|
||||
<v-col
|
||||
v-if="!$vuetify.display.smAndDown || index === fields.length - 1"
|
||||
:cols="config.items.fieldActions.cols(index)"
|
||||
:sm="config.items.fieldActions.sm(index)"
|
||||
:class="config.col.class"
|
||||
>
|
||||
<BaseButtonGroup
|
||||
:buttons="[
|
||||
{
|
||||
icon: $globals.icons.delete,
|
||||
text: $t('general.delete'),
|
||||
event: 'delete',
|
||||
disabled: fields.length === 1,
|
||||
},
|
||||
]"
|
||||
class="my-auto"
|
||||
@delete="removeField(index)"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</VueDraggable>
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-row fluid class="d-flex justify-end pa-0 mx-2">
|
||||
<v-row fluid class="d-flex justify-end ma-2">
|
||||
<v-spacer />
|
||||
<v-checkbox
|
||||
v-model="showAdvanced"
|
||||
@@ -305,6 +319,7 @@ import RecipeOrganizerSelector from "~/components/Domain/Recipe/RecipeOrganizerS
|
||||
import { Organizer } from "~/lib/api/types/non-generated";
|
||||
import type { LogicalOperator, QueryFilterJSON, QueryFilterJSONPart, RelationalKeyword, RelationalOperator } from "~/lib/api/types/response";
|
||||
import { useCategoryStore, useFoodStore, useHouseholdStore, useTagStore, useToolStore } from "~/composables/store";
|
||||
import { useUserStore } from "~/composables/store/use-user-store";
|
||||
import { type Field, type FieldDefinition, type FieldValue, type OrganizerBase, useQueryFilterBuilder } from "~/composables/use-query-filter-builder";
|
||||
|
||||
const props = defineProps({
|
||||
@@ -344,6 +359,7 @@ const storeMap = {
|
||||
[Organizer.Tool]: useToolStore(),
|
||||
[Organizer.Food]: useFoodStore(),
|
||||
[Organizer.Household]: useHouseholdStore(),
|
||||
[Organizer.User]: useUserStore(),
|
||||
};
|
||||
|
||||
function onDragEnd(event: any) {
|
||||
@@ -602,46 +618,56 @@ function buildQueryFilterJSON(): QueryFilterJSON {
|
||||
}
|
||||
|
||||
const config = computed(() => {
|
||||
const baseColMaxWidth = 55;
|
||||
const multiple = fields.value.length > 1;
|
||||
const adv = state.showAdvanced;
|
||||
|
||||
return {
|
||||
col: {
|
||||
class: "d-flex justify-center align-end field-col pa-1",
|
||||
class: "d-flex justify-center align-end py-0",
|
||||
},
|
||||
select: {
|
||||
textClass: "d-flex justify-center text-center",
|
||||
},
|
||||
items: {
|
||||
icon: {
|
||||
cols: 1,
|
||||
cols: (_index: number) => 2,
|
||||
sm: (_index: number) => 1,
|
||||
style: "width: fit-content;",
|
||||
},
|
||||
leftParens: {
|
||||
cols: state.showAdvanced ? 1 : 0,
|
||||
style: `min-width: ${state.showAdvanced ? baseColMaxWidth : 0}px;`,
|
||||
cols: (index: number) => (adv ? (index === 0 ? 2 : 0) : 0),
|
||||
sm: (_index: number) => (adv ? 1 : 0),
|
||||
},
|
||||
logicalOperator: {
|
||||
cols: 1,
|
||||
style: `min-width: ${baseColMaxWidth}px;`,
|
||||
cols: (_index: number) => 0,
|
||||
sm: (_index: number) => (multiple ? 1 : 0),
|
||||
},
|
||||
fieldName: {
|
||||
cols: state.showAdvanced ? 2 : 3,
|
||||
style: `min-width: ${state.showAdvanced ? baseColMaxWidth * 2 : baseColMaxWidth * 3}px;`,
|
||||
cols: (index: number) => {
|
||||
if (adv) return index === 0 ? 8 : 12;
|
||||
return index === 0 ? 10 : 12;
|
||||
},
|
||||
sm: (_index: number) => (adv ? 2 : 3),
|
||||
},
|
||||
relationalOperator: {
|
||||
cols: 2,
|
||||
style: `min-width: ${baseColMaxWidth * 2}px;`,
|
||||
cols: (_index: number) => 12,
|
||||
sm: (_index: number) => 2,
|
||||
},
|
||||
fieldValue: {
|
||||
cols: state.showAdvanced ? 3 : 4,
|
||||
style: `min-width: ${state.showAdvanced ? baseColMaxWidth * 2 : baseColMaxWidth * 3}px;`,
|
||||
cols: (index: number) => {
|
||||
const last = index === fields.value.length - 1;
|
||||
if (adv) return last ? 8 : 10;
|
||||
return last ? 10 : 12;
|
||||
},
|
||||
sm: (_index: number) => (adv ? 3 : 4),
|
||||
},
|
||||
rightParens: {
|
||||
cols: state.showAdvanced ? 1 : 0,
|
||||
style: `min-width: ${state.showAdvanced ? baseColMaxWidth : 0}px;`,
|
||||
cols: (index: number) => (adv ? (index === fields.value.length - 1 ? 2 : 0) : 0),
|
||||
sm: (_index: number) => (adv ? 1 : 0),
|
||||
},
|
||||
fieldActions: {
|
||||
cols: 1,
|
||||
style: `min-width: ${baseColMaxWidth}px;`,
|
||||
cols: (index: number) => (index === fields.value.length - 1 ? 2 : 0),
|
||||
sm: (_index: number) => 1,
|
||||
},
|
||||
},
|
||||
};
|
||||
@@ -651,5 +677,14 @@ const config = computed(() => {
|
||||
<style scoped>
|
||||
* {
|
||||
font-size: 1em;
|
||||
--bg-opactity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background-color: rgba(0, 0, 0, var(--bg-opactity));
|
||||
}
|
||||
|
||||
.bg-light {
|
||||
background-color: rgba(255, 255, 255, var(--bg-opactity));
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -28,11 +28,12 @@
|
||||
<v-list-item-title class="pl-2">
|
||||
{{ item.name }}
|
||||
</v-list-item-title>
|
||||
<v-list-item-action>
|
||||
<template #append>
|
||||
<v-btn
|
||||
v-if="!edit"
|
||||
color="primary"
|
||||
icon
|
||||
size="small"
|
||||
:href="assetURL(item.fileName ?? '')"
|
||||
target="_blank"
|
||||
top
|
||||
@@ -43,6 +44,7 @@
|
||||
<v-btn
|
||||
color="error"
|
||||
icon
|
||||
size="small"
|
||||
top
|
||||
@click="model.splice(i, 1)"
|
||||
>
|
||||
@@ -53,7 +55,7 @@
|
||||
:copy-text="assetEmbed(item.fileName ?? '')"
|
||||
/>
|
||||
</div>
|
||||
</v-list-item-action>
|
||||
</template>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-card>
|
||||
@@ -90,13 +92,12 @@
|
||||
item-value="name"
|
||||
class="mr-2"
|
||||
>
|
||||
<template #item="{ item }">
|
||||
<v-avatar>
|
||||
<v-icon class="mr-auto">
|
||||
{{ item.raw.icon }}
|
||||
</v-icon>
|
||||
</v-avatar>
|
||||
{{ item.title }}
|
||||
<template #item="{ item, props: itemProps }">
|
||||
<v-list-item v-bind="itemProps">
|
||||
<template #prepend>
|
||||
<v-icon>{{ item.raw.icon }}</v-icon>
|
||||
</template>
|
||||
</v-list-item>
|
||||
</template>
|
||||
</v-select>
|
||||
<AppButtonUpload
|
||||
|
||||
@@ -15,11 +15,11 @@
|
||||
@click.self="$emit('click')"
|
||||
>
|
||||
<RecipeCardImage
|
||||
small
|
||||
:icon-size="imageHeight"
|
||||
:height="imageHeight"
|
||||
:slug="slug"
|
||||
:recipe-id="recipeId"
|
||||
size="small"
|
||||
:image-version="image"
|
||||
>
|
||||
<v-expand-transition v-if="description">
|
||||
|
||||
@@ -19,10 +19,10 @@
|
||||
cover
|
||||
>
|
||||
<RecipeCardImage
|
||||
tiny
|
||||
:icon-size="100"
|
||||
:slug="slug"
|
||||
:recipe-id="recipeId"
|
||||
size="small"
|
||||
:image-version="image"
|
||||
:height="height"
|
||||
/>
|
||||
@@ -41,11 +41,11 @@
|
||||
name="avatar"
|
||||
>
|
||||
<RecipeCardImage
|
||||
tiny
|
||||
:icon-size="100"
|
||||
:slug="slug"
|
||||
:recipe-id="recipeId"
|
||||
:image-version="image"
|
||||
size="small"
|
||||
width="125"
|
||||
:height="height"
|
||||
/>
|
||||
|
||||
@@ -90,6 +90,14 @@
|
||||
<v-list-item-title>{{ $t("general.last-made") }}</v-list-item-title>
|
||||
</div>
|
||||
</v-list-item>
|
||||
<v-list-item @click="sortRecipes(EVENTS.shuffle)">
|
||||
<div class="d-flex align-center flex-nowrap">
|
||||
<v-icon class="mr-2" inline>
|
||||
{{ $globals.icons.diceMultiple }}
|
||||
</v-icon>
|
||||
<v-list-item-title>{{ $t("general.random") }}</v-list-item-title>
|
||||
</div>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-menu>
|
||||
<ContextMenu
|
||||
@@ -223,6 +231,7 @@ const displayTitleIcon = computed(() => {
|
||||
});
|
||||
|
||||
const sortLoading = ref(false);
|
||||
const randomSeed = ref(Date.now().toString());
|
||||
|
||||
const route = useRoute();
|
||||
const groupSlug = computed(() => route.params.groupSlug as string || $auth.user.value?.groupSlug || "");
|
||||
@@ -256,13 +265,18 @@ const queryFilter = computed(() => {
|
||||
async function fetchRecipes(pageCount = 1) {
|
||||
const orderDir = props.query?.orderDirection || preferences.value.orderDirection;
|
||||
const orderByNullPosition = props.query?.orderByNullPosition || orderDir === "asc" ? "first" : "last";
|
||||
const orderBy = props.query?.orderBy || preferences.value.orderBy;
|
||||
const localQuery = { ...props.query };
|
||||
if (orderBy === "random") {
|
||||
localQuery._searchSeed = randomSeed.value;
|
||||
}
|
||||
return await fetchMore(
|
||||
page.value,
|
||||
perPage * pageCount,
|
||||
props.query?.orderBy || preferences.value.orderBy,
|
||||
orderBy,
|
||||
orderDir,
|
||||
orderByNullPosition,
|
||||
props.query,
|
||||
localQuery,
|
||||
// we use a computed queryFilter to filter out recipes that have a null value for the property we're sorting by
|
||||
queryFilter.value,
|
||||
);
|
||||
@@ -288,6 +302,9 @@ watch(
|
||||
);
|
||||
|
||||
async function initRecipes() {
|
||||
if (preferences.value.orderBy === "random") {
|
||||
randomSeed.value = Date.now().toString();
|
||||
}
|
||||
page.value = 1;
|
||||
hasMore.value = true;
|
||||
|
||||
@@ -380,6 +397,15 @@ async function sortRecipes(sortType: string) {
|
||||
true,
|
||||
);
|
||||
break;
|
||||
case EVENTS.shuffle:
|
||||
setter(
|
||||
"random",
|
||||
$globals.icons.diceMultiple,
|
||||
$globals.icons.diceMultiple, // icon in asc and desc is the same for random
|
||||
);
|
||||
// We update the seed value to have a different order
|
||||
randomSeed.value = Date.now().toString();
|
||||
break;
|
||||
default:
|
||||
console.log("Unknown Event", sortType);
|
||||
return;
|
||||
|
||||
@@ -45,31 +45,15 @@
|
||||
@confirm="addRecipeToPlan()"
|
||||
>
|
||||
<v-card-text>
|
||||
<v-menu
|
||||
v-model="pickerMenu"
|
||||
:close-on-content-click="false"
|
||||
transition="scale-transition"
|
||||
offset-y
|
||||
max-width="290px"
|
||||
min-width="auto"
|
||||
>
|
||||
<template #activator="{ props: activatorProps }">
|
||||
<v-text-field
|
||||
:model-value="$d(newMealdate)"
|
||||
:label="$t('general.date')"
|
||||
:prepend-icon="$globals.icons.calendar"
|
||||
v-bind="activatorProps"
|
||||
readonly
|
||||
/>
|
||||
</template>
|
||||
<v-date-picker
|
||||
v-model="newMealdate"
|
||||
hide-header
|
||||
:first-day-of-week="firstDayOfWeek"
|
||||
:local="$i18n.locale"
|
||||
@update:model-value="pickerMenu = false"
|
||||
/>
|
||||
</v-menu>
|
||||
<v-date-picker
|
||||
v-model="newMealdate"
|
||||
class="mx-auto mb-3"
|
||||
hide-header
|
||||
show-adjacent-months
|
||||
color="primary"
|
||||
:first-day-of-week="firstDayOfWeek"
|
||||
:local="$i18n.locale"
|
||||
/>
|
||||
<v-select
|
||||
v-model="newMealType"
|
||||
:return-object="false"
|
||||
@@ -207,7 +191,6 @@ const loading = ref(false);
|
||||
const menuItems = ref<ContextMenuItem[]>([]);
|
||||
const newMealdate = ref(new Date());
|
||||
const newMealType = ref<PlanEntryType>("dinner");
|
||||
const pickerMenu = ref(false);
|
||||
|
||||
const newMealdateString = computed(() => {
|
||||
// Format the date to YYYY-MM-DD in the same timezone as newMealdate
|
||||
|
||||
@@ -56,6 +56,7 @@
|
||||
variant="solo"
|
||||
return-object
|
||||
:items="units || []"
|
||||
:custom-filter="normalizeFilter"
|
||||
item-title="name"
|
||||
class="mx-1"
|
||||
:placeholder="$t('recipe.choose-unit')"
|
||||
@@ -114,6 +115,7 @@
|
||||
variant="solo"
|
||||
return-object
|
||||
:items="foods || []"
|
||||
:custom-filter="normalizeFilter"
|
||||
item-title="name"
|
||||
class="mx-1 py-0"
|
||||
:placeholder="$t('recipe.choose-food')"
|
||||
@@ -171,6 +173,7 @@
|
||||
variant="solo"
|
||||
return-object
|
||||
:items="search.data.value || []"
|
||||
:custom-filter="normalizeFilter"
|
||||
item-title="name"
|
||||
class="mx-1 py-0"
|
||||
:placeholder="$t('search.type-to-search')"
|
||||
@@ -225,6 +228,7 @@ import { ref, computed, reactive, toRefs } from "vue";
|
||||
import { useDisplay } from "vuetify";
|
||||
import { useI18n } from "vue-i18n";
|
||||
import { useFoodStore, useFoodData, useUnitStore, useUnitData } from "~/composables/store";
|
||||
import { normalizeFilter } from "~/composables/use-utils";
|
||||
import { useNuxtApp } from "#app";
|
||||
import type { RecipeIngredient } from "~/lib/api/types/recipe";
|
||||
import { usePublicExploreApi, useUserApi } from "~/composables/api";
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
:title="$t('recipe.made-this')"
|
||||
:submit-text="$t('recipe.add-to-timeline')"
|
||||
can-submit
|
||||
disable-submit-on-enter
|
||||
@submit="createTimelineEvent"
|
||||
>
|
||||
<v-card-text>
|
||||
|
||||
@@ -105,10 +105,9 @@
|
||||
<v-icon>
|
||||
{{ icon }}
|
||||
</v-icon>
|
||||
<v-card-title class="py-1">
|
||||
<v-card-title class="py-1 text-truncate flex-shrink-1 flex-grow-1">
|
||||
{{ item.name }}
|
||||
</v-card-title>
|
||||
<v-spacer />
|
||||
<ContextMenu
|
||||
:items="[presets.delete, presets.edit]"
|
||||
@delete="confirmDelete(item)"
|
||||
|
||||
@@ -4,17 +4,19 @@
|
||||
v-bind="inputAttrs"
|
||||
v-model:search="searchInput"
|
||||
:items="items"
|
||||
:custom-filter="normalizeFilter"
|
||||
:label="label"
|
||||
chips
|
||||
closable-chips
|
||||
item-title="name"
|
||||
:item-title="itemTitle"
|
||||
item-value="name"
|
||||
multiple
|
||||
:variant="variant"
|
||||
:prepend-inner-icon="icon"
|
||||
:append-icon="showAdd ? $globals.icons.create : undefined"
|
||||
return-object
|
||||
auto-select-first
|
||||
class="pa-0"
|
||||
class="pa-0 ma-0"
|
||||
@update:model-value="resetSearchInput"
|
||||
@click:append="dialog = true"
|
||||
>
|
||||
@@ -32,7 +34,6 @@
|
||||
{{ item.value }}
|
||||
</v-chip>
|
||||
</template>
|
||||
|
||||
<template
|
||||
v-if="showAdd"
|
||||
#append
|
||||
@@ -52,11 +53,13 @@ import type { RecipeTool } from "~/lib/api/types/admin";
|
||||
import { Organizer, type RecipeOrganizer } from "~/lib/api/types/non-generated";
|
||||
import type { HouseholdSummary } from "~/lib/api/types/household";
|
||||
import { useCategoryStore, useFoodStore, useHouseholdStore, useTagStore, useToolStore } from "~/composables/store";
|
||||
import { useUserStore } from "~/composables/store/use-user-store";
|
||||
import { normalizeFilter } from "~/composables/use-utils";
|
||||
import type { UserSummary } from "~/lib/api/types/user";
|
||||
|
||||
interface Props {
|
||||
selectorType: RecipeOrganizer;
|
||||
inputAttrs?: Record<string, any>;
|
||||
returnObject?: boolean;
|
||||
showAdd?: boolean;
|
||||
showLabel?: boolean;
|
||||
showIcon?: boolean;
|
||||
@@ -65,7 +68,6 @@ interface Props {
|
||||
|
||||
const props = withDefaults(defineProps<Props>(), {
|
||||
inputAttrs: () => ({}),
|
||||
returnObject: true,
|
||||
showAdd: true,
|
||||
showLabel: true,
|
||||
showIcon: true,
|
||||
@@ -78,7 +80,7 @@ const selected = defineModel<(
|
||||
| RecipeCategory
|
||||
| RecipeTool
|
||||
| IngredientFood
|
||||
| string
|
||||
| UserSummary
|
||||
)[] | undefined>({ required: true });
|
||||
|
||||
onMounted(() => {
|
||||
@@ -106,6 +108,8 @@ const label = computed(() => {
|
||||
return i18n.t("general.foods");
|
||||
case Organizer.Household:
|
||||
return i18n.t("household.households");
|
||||
case Organizer.User:
|
||||
return i18n.t("user.users");
|
||||
default:
|
||||
return i18n.t("general.organizer");
|
||||
}
|
||||
@@ -127,11 +131,19 @@ const icon = computed(() => {
|
||||
return $globals.icons.foods;
|
||||
case Organizer.Household:
|
||||
return $globals.icons.household;
|
||||
case Organizer.User:
|
||||
return $globals.icons.user;
|
||||
default:
|
||||
return $globals.icons.tags;
|
||||
}
|
||||
});
|
||||
|
||||
const itemTitle = computed(() =>
|
||||
props.selectorType === Organizer.User
|
||||
? (i: any) => i?.fullName ?? i?.name ?? ""
|
||||
: "name",
|
||||
);
|
||||
|
||||
// ===========================================================================
|
||||
// Store & Items Setup
|
||||
|
||||
@@ -141,28 +153,19 @@ const storeMap = {
|
||||
[Organizer.Tool]: useToolStore(),
|
||||
[Organizer.Food]: useFoodStore(),
|
||||
[Organizer.Household]: useHouseholdStore(),
|
||||
[Organizer.User]: useUserStore(),
|
||||
};
|
||||
|
||||
const store = computed(() => {
|
||||
const activeStore = computed(() => {
|
||||
const { store } = storeMap[props.selectorType];
|
||||
return store.value;
|
||||
});
|
||||
|
||||
const items = computed(() => {
|
||||
if (!props.returnObject) {
|
||||
return store.value.map(item => item.name);
|
||||
}
|
||||
return store.value;
|
||||
const items = computed<any[]>(() => {
|
||||
const list = (activeStore.value as unknown as any[]) ?? [];
|
||||
return list;
|
||||
});
|
||||
|
||||
function removeByIndex(index: number) {
|
||||
if (selected.value === undefined) {
|
||||
return;
|
||||
}
|
||||
const newSelected = selected.value.filter((_, i) => i !== index);
|
||||
selected.value = [...newSelected];
|
||||
}
|
||||
|
||||
function appendCreated(item: any) {
|
||||
if (selected.value === undefined) {
|
||||
return;
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
v-show="isCookMode && !hasLinkedIngredients"
|
||||
key="cookmode"
|
||||
:height="$vuetify.display.smAndUp ? 'calc(100vh - 48px)' : 'auto'"
|
||||
className="overflow-hidden"
|
||||
class-name="overflow-hidden"
|
||||
>
|
||||
<!-- the calc is to account for the toolbar a more dynamic solution could be needed -->
|
||||
<v-row style="height: 100%" no-gutters class="overflow-hidden">
|
||||
|
||||
@@ -28,7 +28,7 @@ const props = withDefaults(defineProps<Props>(), {
|
||||
});
|
||||
|
||||
const display = useDisplay();
|
||||
const { recipeImage } = useStaticRoutes();
|
||||
const { recipeImage, recipeSmallImage } = useStaticRoutes();
|
||||
const { imageKey } = usePageState(props.recipe.slug);
|
||||
const { user } = usePageUser();
|
||||
|
||||
@@ -46,7 +46,9 @@ const imageHeight = computed(() => {
|
||||
});
|
||||
|
||||
const recipeImageUrl = computed(() => {
|
||||
return recipeImage(props.recipe.id, props.recipe.image, imageKey.value);
|
||||
return display.smAndDown.value
|
||||
? recipeSmallImage(props.recipe.id, props.recipe.image, imageKey.value)
|
||||
: recipeImage(props.recipe.id, props.recipe.image, imageKey.value);
|
||||
});
|
||||
|
||||
watch(
|
||||
|
||||
@@ -196,7 +196,7 @@ import { VueDraggable } from "vue-draggable-plus";
|
||||
import type { IngredientFood, IngredientUnit, ParsedIngredient, RecipeIngredient } from "~/lib/api/types/recipe";
|
||||
import type { Parser } from "~/lib/api/user/recipes/recipe";
|
||||
import type { NoUndefinedField } from "~/lib/api/types/non-generated";
|
||||
import { useAppInfo, useUserApi } from "~/composables/api";
|
||||
import { useUserApi } from "~/composables/api";
|
||||
import { parseIngredientText } from "~/composables/recipes";
|
||||
import { useFoodData, useFoodStore, useUnitData, useUnitStore } from "~/composables/store";
|
||||
import { useGlobalI18n } from "~/composables/use-global-i18n";
|
||||
@@ -213,9 +213,9 @@ const emit = defineEmits<{
|
||||
(e: "save", value: NoUndefinedField<RecipeIngredient[]>): void;
|
||||
}>();
|
||||
|
||||
const { $appInfo } = useNuxtApp();
|
||||
const i18n = useGlobalI18n();
|
||||
const api = useUserApi();
|
||||
const appInfo = useAppInfo();
|
||||
const drag = ref(false);
|
||||
|
||||
const unitStore = useUnitStore();
|
||||
@@ -238,7 +238,7 @@ const availableParsers = computed(() => {
|
||||
{
|
||||
text: i18n.t("recipe.parser.openai-parser"),
|
||||
value: "openai",
|
||||
hide: !appInfo.value?.enableOpenai,
|
||||
hide: !$appInfo.enableOpenai,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
@@ -119,7 +119,7 @@ defineEmits<{
|
||||
|
||||
const { $globals } = useNuxtApp();
|
||||
const display = useDisplay();
|
||||
const { recipeTimelineEventImage } = useStaticRoutes();
|
||||
const { recipeTimelineEventSmallImage } = useStaticRoutes();
|
||||
const { eventTypeOptions } = useTimelineEventTypes();
|
||||
|
||||
const { user: currentUser } = useMealieAuth();
|
||||
@@ -173,7 +173,7 @@ const eventImageUrl = computed<string>(() => {
|
||||
return "";
|
||||
}
|
||||
|
||||
return recipeTimelineEventImage(props.event.recipeId, props.event.id);
|
||||
return recipeTimelineEventSmallImage(props.event.recipeId, props.event.id);
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
@@ -97,7 +97,6 @@
|
||||
<script lang="ts">
|
||||
import { useLoggedInState } from "~/composables/use-logged-in-state";
|
||||
import type { SideBarLink } from "~/types/application-types";
|
||||
import { useAppInfo } from "~/composables/api";
|
||||
import { useCookbookPreferences } from "~/composables/use-users/preferences";
|
||||
import { useCookbookStore, usePublicCookbookStore } from "~/composables/store/use-cookbook-store";
|
||||
import type { ReadCookBook } from "~/lib/api/types/cookbook";
|
||||
@@ -105,7 +104,7 @@ import type { ReadCookBook } from "~/lib/api/types/cookbook";
|
||||
export default defineNuxtComponent({
|
||||
setup() {
|
||||
const i18n = useI18n();
|
||||
const { $globals } = useNuxtApp();
|
||||
const { $appInfo, $globals } = useNuxtApp();
|
||||
const display = useDisplay();
|
||||
const $auth = useMealieAuth();
|
||||
const { isOwnGroup } = useLoggedInState();
|
||||
@@ -135,9 +134,7 @@ export default defineNuxtComponent({
|
||||
return [];
|
||||
});
|
||||
|
||||
const appInfo = useAppInfo();
|
||||
const showImageImport = computed(() => appInfo.value?.enableOpenaiImageServices);
|
||||
|
||||
const showImageImport = computed(() => $appInfo.enableOpenaiImageServices);
|
||||
const languageDialog = ref<boolean>(false);
|
||||
|
||||
const sidebar = ref<boolean>(false);
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
item-title="name"
|
||||
return-object
|
||||
:items="items"
|
||||
:custom-filter="normalizeFilter"
|
||||
:prepend-icon="icon || $globals.icons.tags"
|
||||
auto-select-first
|
||||
clearable
|
||||
@@ -52,6 +53,7 @@
|
||||
|
||||
import type { MultiPurposeLabelSummary } from "~/lib/api/types/labels";
|
||||
import type { IngredientFood, IngredientUnit } from "~/lib/api/types/recipe";
|
||||
import { normalizeFilter } from "~/composables/use-utils";
|
||||
|
||||
export default defineNuxtComponent({
|
||||
props: {
|
||||
@@ -122,6 +124,7 @@ export default defineNuxtComponent({
|
||||
itemIdVal,
|
||||
searchInput,
|
||||
emitCreate,
|
||||
normalizeFilter,
|
||||
};
|
||||
},
|
||||
});
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<v-autocomplete
|
||||
v-model="selectedLocale"
|
||||
:items="locales"
|
||||
:custom-filter="normalizeFilter"
|
||||
item-title="name"
|
||||
item-value="value"
|
||||
class="my-3"
|
||||
@@ -44,6 +45,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { useLocales } from "~/composables/use-locales";
|
||||
import { normalizeFilter } from "~/composables/use-utils";
|
||||
|
||||
export default defineNuxtComponent({
|
||||
props: {
|
||||
@@ -83,6 +85,7 @@ export default defineNuxtComponent({
|
||||
locale,
|
||||
selectedLocale,
|
||||
onLocaleSelect,
|
||||
normalizeFilter,
|
||||
};
|
||||
},
|
||||
});
|
||||
|
||||
@@ -1,3 +1,2 @@
|
||||
export { useAppInfo } from "./use-app-info";
|
||||
export { useStaticRoutes } from "./static-routes";
|
||||
export { useAdminApi, usePublicApi, usePublicExploreApi, useUserApi } from "./api-client";
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
import type { AppInfo } from "~/lib/api/types/admin";
|
||||
|
||||
export function useAppInfo(): Ref<AppInfo | null> {
|
||||
const i18n = useI18n();
|
||||
const { $axios } = useNuxtApp();
|
||||
$axios.defaults.headers.common["Accept-Language"] = i18n.locale.value;
|
||||
|
||||
const { data: appInfo } = useAsyncData("app-info", async () => {
|
||||
const data = await $axios.get<AppInfo>("/api/app/about");
|
||||
return data.data;
|
||||
});
|
||||
|
||||
return appInfo;
|
||||
}
|
||||
@@ -52,7 +52,7 @@ export const useStore = function <T extends BoundT>(
|
||||
return await storeActions.refresh(1, -1, params);
|
||||
},
|
||||
flushStore() {
|
||||
store = ref([]);
|
||||
store.value = [];
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@@ -82,7 +82,6 @@ export function useParsedIngredientText(ingredient: RecipeIngredient, scale = 1,
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: Add support for sub-recipes here?
|
||||
const unitName = useUnitName(unit || undefined, usePluralUnit);
|
||||
const ingName = referencedRecipe ? referencedRecipe.name || "" : useFoodName(food || undefined, usePluralFood);
|
||||
|
||||
|
||||
@@ -1,7 +1,31 @@
|
||||
export { useCategoryStore, usePublicCategoryStore, useCategoryData } from "./use-category-store";
|
||||
export { useFoodStore, usePublicFoodStore, useFoodData } from "./use-food-store";
|
||||
export { useHouseholdStore, usePublicHouseholdStore } from "./use-household-store";
|
||||
export { useLabelStore, useLabelData } from "./use-label-store";
|
||||
export { useTagStore, usePublicTagStore, useTagData } from "./use-tag-store";
|
||||
export { useToolStore, usePublicToolStore, useToolData } from "./use-tool-store";
|
||||
export { useUnitStore, useUnitData } from "./use-unit-store";
|
||||
import { resetCategoryStore } from "./use-category-store";
|
||||
import { resetFoodStore } from "./use-food-store";
|
||||
import { resetHouseholdStore } from "./use-household-store";
|
||||
import { resetLabelStore } from "./use-label-store";
|
||||
import { resetTagStore } from "./use-tag-store";
|
||||
import { resetToolStore } from "./use-tool-store";
|
||||
import { resetUnitStore } from "./use-unit-store";
|
||||
import { resetCookbookStore } from "./use-cookbook-store";
|
||||
import { resetUserStore } from "./use-user-store";
|
||||
|
||||
export { useCategoryStore, usePublicCategoryStore, useCategoryData, resetCategoryStore } from "./use-category-store";
|
||||
export { useFoodStore, usePublicFoodStore, useFoodData, resetFoodStore } from "./use-food-store";
|
||||
export { useHouseholdStore, usePublicHouseholdStore, resetHouseholdStore } from "./use-household-store";
|
||||
export { useLabelStore, useLabelData, resetLabelStore } from "./use-label-store";
|
||||
export { useTagStore, usePublicTagStore, useTagData, resetTagStore } from "./use-tag-store";
|
||||
export { useToolStore, usePublicToolStore, useToolData, resetToolStore } from "./use-tool-store";
|
||||
export { useUnitStore, useUnitData, resetUnitStore } from "./use-unit-store";
|
||||
export { useCookbookStore, usePublicCookbookStore, resetCookbookStore } from "./use-cookbook-store";
|
||||
export { useUserStore, resetUserStore } from "./use-user-store";
|
||||
|
||||
export function clearAllStores() {
|
||||
resetCategoryStore();
|
||||
resetFoodStore();
|
||||
resetHouseholdStore();
|
||||
resetLabelStore();
|
||||
resetTagStore();
|
||||
resetToolStore();
|
||||
resetUnitStore();
|
||||
resetCookbookStore();
|
||||
resetUserStore();
|
||||
}
|
||||
|
||||
@@ -7,6 +7,12 @@ const store: Ref<RecipeCategory[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
const publicLoading = ref(false);
|
||||
|
||||
export function resetCategoryStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
publicLoading.value = false;
|
||||
}
|
||||
|
||||
export const useCategoryData = function () {
|
||||
return useData<RecipeCategory>({
|
||||
id: "",
|
||||
|
||||
@@ -7,6 +7,12 @@ const cookbooks: Ref<ReadCookBook[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
const publicLoading = ref(false);
|
||||
|
||||
export function resetCookbookStore() {
|
||||
cookbooks.value = [];
|
||||
loading.value = false;
|
||||
publicLoading.value = false;
|
||||
}
|
||||
|
||||
export const useCookbookStore = function (i18n?: Composer) {
|
||||
const api = useUserApi(i18n);
|
||||
const store = useStore<ReadCookBook>("cookbook", cookbooks, loading, api.cookbooks);
|
||||
|
||||
@@ -7,6 +7,12 @@ const store: Ref<IngredientFood[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
const publicLoading = ref(false);
|
||||
|
||||
export function resetFoodStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
publicLoading.value = false;
|
||||
}
|
||||
|
||||
export const useFoodData = function () {
|
||||
return useData<IngredientFood>({
|
||||
id: "",
|
||||
|
||||
@@ -7,6 +7,12 @@ const store: Ref<HouseholdSummary[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
const publicLoading = ref(false);
|
||||
|
||||
export function resetHouseholdStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
publicLoading.value = false;
|
||||
}
|
||||
|
||||
export const useHouseholdStore = function (i18n?: Composer) {
|
||||
const api = useUserApi(i18n);
|
||||
return useReadOnlyStore<HouseholdSummary>("household", store, loading, api.households);
|
||||
|
||||
@@ -6,6 +6,11 @@ import { useUserApi } from "~/composables/api";
|
||||
const store: Ref<MultiPurposeLabelOut[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
|
||||
export function resetLabelStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
}
|
||||
|
||||
export const useLabelData = function () {
|
||||
return useData<MultiPurposeLabelOut>({
|
||||
groupId: "",
|
||||
|
||||
@@ -7,6 +7,12 @@ const store: Ref<RecipeTag[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
const publicLoading = ref(false);
|
||||
|
||||
export function resetTagStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
publicLoading.value = false;
|
||||
}
|
||||
|
||||
export const useTagData = function () {
|
||||
return useData<RecipeTag>({
|
||||
id: "",
|
||||
|
||||
@@ -11,6 +11,12 @@ const store: Ref<RecipeTool[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
const publicLoading = ref(false);
|
||||
|
||||
export function resetToolStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
publicLoading.value = false;
|
||||
}
|
||||
|
||||
export const useToolData = function () {
|
||||
return useData<RecipeToolWithOnHand>({
|
||||
id: "",
|
||||
|
||||
@@ -6,6 +6,11 @@ import { useUserApi } from "~/composables/api";
|
||||
const store: Ref<IngredientUnit[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
|
||||
export function resetUnitStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
}
|
||||
|
||||
export const useUnitData = function () {
|
||||
return useData<IngredientUnit>({
|
||||
id: "",
|
||||
|
||||
@@ -7,6 +7,11 @@ import { BaseCRUDAPIReadOnly } from "~/lib/api/base/base-clients";
|
||||
const store: Ref<UserSummary[]> = ref([]);
|
||||
const loading = ref(false);
|
||||
|
||||
export function resetUserStore() {
|
||||
store.value = [];
|
||||
loading.value = false;
|
||||
}
|
||||
|
||||
class GroupUserAPIReadOnly extends BaseCRUDAPIReadOnly<UserSummary> {
|
||||
baseRoute = "/api/groups/members";
|
||||
itemRoute = (idOrUsername: string | number) => `/groups/members/${idOrUsername}`;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { ref, computed } from "vue";
|
||||
import type { UserOut } from "~/lib/api/types/user";
|
||||
import { clearAllStores } from "~/composables/store";
|
||||
|
||||
interface AuthData {
|
||||
value: UserOut | null;
|
||||
@@ -23,10 +24,15 @@ const authUser = ref<UserOut | null>(null);
|
||||
const authStatus = ref<"loading" | "authenticated" | "unauthenticated">("loading");
|
||||
|
||||
export const useAuthBackend = function (): AuthState {
|
||||
const { $axios } = useNuxtApp();
|
||||
const { $appInfo, $axios } = useNuxtApp();
|
||||
const router = useRouter();
|
||||
const tokenName = useRuntimeConfig().public.AUTH_TOKEN;
|
||||
const tokenCookie = useCookie(tokenName);
|
||||
|
||||
const runtimeConfig = useRuntimeConfig();
|
||||
const tokenName = runtimeConfig.public.AUTH_TOKEN;
|
||||
const tokenCookie = useCookie(tokenName, {
|
||||
maxAge: $appInfo.tokenTime * 60 * 60,
|
||||
secure: $appInfo.production && window?.location?.protocol === "https:",
|
||||
});
|
||||
|
||||
function setToken(token: string | null) {
|
||||
tokenCookie.value = token;
|
||||
@@ -96,6 +102,13 @@ export const useAuthBackend = function (): AuthState {
|
||||
setToken(null);
|
||||
authUser.value = null;
|
||||
authStatus.value = "unauthenticated";
|
||||
|
||||
// Clear all cached store data to prevent data leakage between users
|
||||
clearAllStores();
|
||||
|
||||
// Clear Nuxt's useAsyncData cache
|
||||
clearNuxtData();
|
||||
|
||||
await router.push(callbackUrl || "/login");
|
||||
}
|
||||
}
|
||||
@@ -115,30 +128,6 @@ export const useAuthBackend = function (): AuthState {
|
||||
}
|
||||
}
|
||||
|
||||
// Auto-refresh user data periodically when authenticated
|
||||
if (import.meta.client) {
|
||||
let refreshInterval: NodeJS.Timeout | null = null;
|
||||
|
||||
watch(() => authStatus.value, (status) => {
|
||||
if (status === "authenticated") {
|
||||
refreshInterval = setInterval(() => {
|
||||
if (tokenCookie.value) {
|
||||
getSession().catch(() => {
|
||||
// Ignore errors in background refresh
|
||||
});
|
||||
}
|
||||
}, 5 * 60 * 1000); // 5 minutes
|
||||
}
|
||||
else {
|
||||
// Clear interval when not authenticated
|
||||
if (refreshInterval) {
|
||||
clearInterval(refreshInterval);
|
||||
refreshInterval = null;
|
||||
}
|
||||
}
|
||||
}, { immediate: true });
|
||||
}
|
||||
|
||||
return {
|
||||
data: computed(() => authUser.value),
|
||||
status: computed(() => authStatus.value),
|
||||
@@ -15,6 +15,9 @@ export function usePlanTypeOptions() {
|
||||
{ text: i18n.t("meal-plan.lunch"), value: "lunch" },
|
||||
{ text: i18n.t("meal-plan.dinner"), value: "dinner" },
|
||||
{ text: i18n.t("meal-plan.side"), value: "side" },
|
||||
{ text: i18n.t("meal-plan.snack"), value: "snack" },
|
||||
{ text: i18n.t("meal-plan.drink"), value: "drink" },
|
||||
{ text: i18n.t("meal-plan.dessert"), value: "dessert" },
|
||||
] as PlanOption[];
|
||||
}
|
||||
|
||||
|
||||
@@ -21,19 +21,19 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Українська (Ukrainian)",
|
||||
value: "uk-UA",
|
||||
progress: 61,
|
||||
progress: 99,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Türkçe (Turkish)",
|
||||
value: "tr-TR",
|
||||
progress: 35,
|
||||
progress: 36,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Svenska (Swedish)",
|
||||
value: "sv-SE",
|
||||
progress: 66,
|
||||
progress: 67,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -45,7 +45,7 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Slovenščina (Slovenian)",
|
||||
value: "sl-SI",
|
||||
progress: 40,
|
||||
progress: 41,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -57,19 +57,19 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Pусский (Russian)",
|
||||
value: "ru-RU",
|
||||
progress: 43,
|
||||
progress: 46,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Română (Romanian)",
|
||||
value: "ro-RO",
|
||||
progress: 36,
|
||||
progress: 41,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Português (Portuguese)",
|
||||
value: "pt-PT",
|
||||
progress: 38,
|
||||
progress: 40,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -81,7 +81,7 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Polski (Polish)",
|
||||
value: "pl-PL",
|
||||
progress: 43,
|
||||
progress: 53,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -93,7 +93,7 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Nederlands (Dutch)",
|
||||
value: "nl-NL",
|
||||
progress: 53,
|
||||
progress: 55,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -123,13 +123,13 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Italiano (Italian)",
|
||||
value: "it-IT",
|
||||
progress: 46,
|
||||
progress: 47,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Íslenska (Icelandic)",
|
||||
value: "is-IS",
|
||||
progress: 37,
|
||||
progress: 44,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -141,13 +141,13 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Hrvatski (Croatian)",
|
||||
value: "hr-HR",
|
||||
progress: 28,
|
||||
progress: 29,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "עברית (Hebrew)",
|
||||
value: "he-IL",
|
||||
progress: 72,
|
||||
progress: 73,
|
||||
dir: "rtl",
|
||||
},
|
||||
{
|
||||
@@ -159,13 +159,13 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Français (French)",
|
||||
value: "fr-FR",
|
||||
progress: 67,
|
||||
progress: 69,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Français canadien (Canadian French)",
|
||||
value: "fr-CA",
|
||||
progress: 38,
|
||||
progress: 99,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -177,13 +177,13 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Suomi (Finnish)",
|
||||
value: "fi-FI",
|
||||
progress: 40,
|
||||
progress: 41,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Eesti (Estonian)",
|
||||
value: "et-EE",
|
||||
progress: 43,
|
||||
progress: 47,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -201,7 +201,7 @@ export const LOCALES = [
|
||||
{
|
||||
name: "British English",
|
||||
value: "en-GB",
|
||||
progress: 43,
|
||||
progress: 44,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -213,13 +213,13 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Deutsch (German)",
|
||||
value: "de-DE",
|
||||
progress: 96,
|
||||
progress: 97,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
name: "Dansk (Danish)",
|
||||
value: "da-DK",
|
||||
progress: 46,
|
||||
progress: 52,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
@@ -237,7 +237,7 @@ export const LOCALES = [
|
||||
{
|
||||
name: "Български (Bulgarian)",
|
||||
value: "bg-BG",
|
||||
progress: 47,
|
||||
progress: 49,
|
||||
dir: "ltr",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { ref, watch, computed } from "vue";
|
||||
import { useAuthBackend } from "~/composables/useAuthBackend";
|
||||
import { useAuthBackend } from "~/composables/use-auth-backend";
|
||||
import type { UserOut } from "~/lib/api/types/user";
|
||||
|
||||
export const useMealieAuth = function () {
|
||||
@@ -168,6 +168,7 @@ export function useQueryFilterBuilder() {
|
||||
|| type === Organizer.Tool
|
||||
|| type === Organizer.Food
|
||||
|| type === Organizer.Household
|
||||
|| type === Organizer.User
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
@@ -5,9 +5,9 @@ const userRatings = ref<UserRatingSummary[]>([]);
|
||||
const loading = ref(false);
|
||||
const ready = ref(false);
|
||||
|
||||
const $auth = useMealieAuth();
|
||||
|
||||
export const useUserSelfRatings = function () {
|
||||
const $auth = useMealieAuth();
|
||||
|
||||
async function refreshUserRatings() {
|
||||
if (!$auth.user.value || loading.value) {
|
||||
return;
|
||||
|
||||
34
frontend/composables/use-utils.test.ts
Normal file
34
frontend/composables/use-utils.test.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import { describe, expect, test } from "vitest";
|
||||
import { normalize, normalizeFilter } from "./use-utils";
|
||||
|
||||
describe("test normalize", () => {
|
||||
test("base case", () => {
|
||||
expect(normalize("banana")).not.toEqual(normalize("Potatoes"));
|
||||
});
|
||||
test("diacritics", () => {
|
||||
expect(normalize("Rátàtôuile")).toEqual("ratatouile");
|
||||
});
|
||||
test("ligatures", () => {
|
||||
expect(normalize("IJ")).toEqual("ij");
|
||||
expect(normalize("æ")).toEqual("ae");
|
||||
expect(normalize("œ")).toEqual("oe");
|
||||
expect(normalize("ff")).toEqual("ff");
|
||||
expect(normalize("fi")).toEqual("fi");
|
||||
expect(normalize("st")).toEqual("st");
|
||||
});
|
||||
});
|
||||
|
||||
describe("test normalize filter", () => {
|
||||
test("base case", () => {
|
||||
const patternA = "Escargots persillés";
|
||||
const patternB = "persillés";
|
||||
|
||||
expect(normalizeFilter(patternA, patternB)).toBeTruthy();
|
||||
expect(normalizeFilter(patternB, patternA)).toBeFalsy();
|
||||
});
|
||||
test("normalize", () => {
|
||||
const value = "Cœur de bœuf";
|
||||
const query = "coeur";
|
||||
expect(normalizeFilter(value, query)).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -1,4 +1,5 @@
|
||||
import { useDark, useToggle } from "@vueuse/core";
|
||||
import type { FilterFunction } from "vuetify";
|
||||
|
||||
export const useToggleDarkMode = () => {
|
||||
const isDark = useDark();
|
||||
@@ -18,6 +19,38 @@ export const titleCase = function (str: string) {
|
||||
.join(" ");
|
||||
};
|
||||
|
||||
const replaceAllBuilder = (map: Map<string, string>): ((str: string) => string) => {
|
||||
const re = new RegExp(Array.from(map.keys()).join("|"), "gi");
|
||||
return str => str.replace(re, matched => map.get(matched)!);
|
||||
};
|
||||
|
||||
const normalizeLigatures = replaceAllBuilder(new Map([
|
||||
["œ", "oe"],
|
||||
["æ", "ae"],
|
||||
["ij", "ij"],
|
||||
["ff", "ff"],
|
||||
["fi", "fi"],
|
||||
["fl", "fl"],
|
||||
["st", "st"],
|
||||
]));
|
||||
|
||||
export const normalize = (str: string) => {
|
||||
if (!str) {
|
||||
return "";
|
||||
}
|
||||
|
||||
let normalized = str.normalize("NFKD").toLowerCase();
|
||||
normalized = normalized.replace(/\p{Diacritic}/gu, "");
|
||||
normalized = normalizeLigatures(normalized);
|
||||
return normalized;
|
||||
};
|
||||
|
||||
export const normalizeFilter: FilterFunction = (value: string, query: string) => {
|
||||
const normalizedValue = normalize(value);
|
||||
const normalizeQuery = normalize(query);
|
||||
return normalizedValue.includes(normalizeQuery);
|
||||
};
|
||||
|
||||
export function uuid4() {
|
||||
return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, c =>
|
||||
(parseInt(c) ^ (crypto.getRandomValues(new Uint8Array(1))[0] & (15 >> (parseInt(c) / 4)))).toString(16),
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Ontbyt",
|
||||
"lunch": "Middagete",
|
||||
"dinner": "Aandete",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Enige",
|
||||
"day-any": "Enige",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Kies 'n eenheid",
|
||||
"press-enter-to-create": "Druk Enter om te skep",
|
||||
"choose-food": "Keuse van kos",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notas",
|
||||
"toggle-section": "Wissel afdeling",
|
||||
"see-original-text": "Sien oorspronklike teks",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Voer oorspronklike sleutelwoorde as merkers in",
|
||||
"stay-in-edit-mode": "Bly in redigeer modus",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Druk '/'",
|
||||
"advanced": "Gevorderd",
|
||||
"auto-search": "Outomatiese soektog",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Voeg 'n nuwe tema by",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "الإفطار",
|
||||
"lunch": "الغداء",
|
||||
"dinner": "العشاء",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "أي",
|
||||
"day-any": "أي",
|
||||
"editor": "المحرر",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "اختر الوحدة",
|
||||
"press-enter-to-create": "",
|
||||
"choose-food": "اختيار الطعام",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "ملاحظات",
|
||||
"toggle-section": "",
|
||||
"see-original-text": "عرض النص الأصلي",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "جرب الإضافة بالجملة",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "هل لديك بيانات HTML أو JSON خام؟",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "يمكنك الإضافة مباشرة باستخدام بيانات خام",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "استيراد الكلمات المفتاحية الأصلية كوسوم",
|
||||
"stay-in-edit-mode": "البقاء في وضع التعديل",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "اضغط '/'",
|
||||
"advanced": "الإعدادات المتقدمة",
|
||||
"auto-search": "البحث التلقائي",
|
||||
"no-results": "لم يتم العثور على نتائج"
|
||||
"no-results": "لم يتم العثور على نتائج",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "إضافة سمة جديدة",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"about-mealie": "Относно Mealie",
|
||||
"api-docs": "API Документация",
|
||||
"api-port": "API Порт",
|
||||
"application-mode": "Режим на приложение",
|
||||
"application-mode": "Статус на приложението",
|
||||
"database-type": "Тип на база данни",
|
||||
"database-url": "URL адрес база данни",
|
||||
"default-group": "Група по подразбиране",
|
||||
@@ -128,7 +128,7 @@
|
||||
"message": "Съобщение",
|
||||
"monday": "Понеделник",
|
||||
"name": "Име",
|
||||
"new": "Нов",
|
||||
"new": "Добавяне",
|
||||
"never": "няма данни",
|
||||
"no": "Не",
|
||||
"no-recipe-found": "Няма намерени рецепти",
|
||||
@@ -159,7 +159,7 @@
|
||||
"submit": "Изпрати",
|
||||
"success-count": "Успешни: {count}",
|
||||
"sunday": "Неделя",
|
||||
"system": "Система",
|
||||
"system": "В хронологичен ред",
|
||||
"templates": "Шаблони:",
|
||||
"test": "Тест",
|
||||
"themes": "Теми",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Закуска",
|
||||
"lunch": "Обяд",
|
||||
"dinner": "Вечеря",
|
||||
"snack": "Закуска",
|
||||
"drink": "Питие",
|
||||
"dessert": "Десерт",
|
||||
"type-any": "Всички",
|
||||
"day-any": "Всички",
|
||||
"editor": "Редактор",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Импортиране на рецепта от линк",
|
||||
"create-manually": "Създай рецепта ръчно",
|
||||
"make-recipe-image": "Задай като изображението на рецептата",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Добавяне на продукт",
|
||||
"add-recipe": "Добавяне на рецепта"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Страницата не е намерена",
|
||||
@@ -477,7 +480,7 @@
|
||||
"categories": "Категории",
|
||||
"cholesterol-content": "Холестерол",
|
||||
"comment-action": "Коментирай",
|
||||
"comment": "Коментар",
|
||||
"comment": "Добавен коментар",
|
||||
"comments": "Коментари",
|
||||
"delete-confirmation": "Сигурни ли сте, че желаете да изтриете тази рецепта?",
|
||||
"admin-delete-confirmation": "Ще изтриете рецепта, която не е ваша, използвайки администраторски права. Сигурни ли сте?",
|
||||
@@ -497,7 +500,7 @@
|
||||
"insert-section": "Въведете раздел",
|
||||
"insert-above": "Вмъкни отгоре",
|
||||
"insert-below": "Вмъкни отдолу",
|
||||
"instructions": "Инструкции",
|
||||
"instructions": "Начин на приготвяне",
|
||||
"key-name-required": "Ключовото име е задължително",
|
||||
"landscape-view-coming-soon": "Пейзажен изглед",
|
||||
"milligrams": "милиграма",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Рецептата е изтрита",
|
||||
"recipe-image": "Изображение на рецептата",
|
||||
"recipe-image-updated": "Изображението на рецептата беше обновено",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Итриване на изображението на рецептата",
|
||||
"delete-image-confirmation": "Сигурни ли сте, че желаете да изтриете изображението на рецептата?",
|
||||
"recipe-image-deleted": "Изображението на рецептата беше изтрито",
|
||||
"recipe-name": "Наименование",
|
||||
"recipe-settings": "Настройки на рецептата",
|
||||
"recipe-update-failed": "Обновяването на рецептата беше неуспешно",
|
||||
@@ -548,8 +551,8 @@
|
||||
"entry-type": "Тип на записа",
|
||||
"date-format-hint": "MM/DD/YYYY формат",
|
||||
"date-format-hint-yyyy-mm-dd": "YYYY-MM-DD формат",
|
||||
"add-to-list": "Добавяне към списък",
|
||||
"add-to-plan": "Добавяне към план",
|
||||
"add-to-list": "Добавяне към списък за пазаруване",
|
||||
"add-to-plan": "Добави към меню",
|
||||
"add-to-timeline": "Добавяне към историята на събитията",
|
||||
"recipe-added-to-list": "Рецептата е добавена към списъка",
|
||||
"recipes-added-to-list": "Рецептите са добавени към списъка",
|
||||
@@ -565,15 +568,16 @@
|
||||
"choose-unit": "Избери мерна единица",
|
||||
"press-enter-to-create": "Натисните Enter за да създадете",
|
||||
"choose-food": "Избери продукт",
|
||||
"choose-recipe": "Избор на рецепта",
|
||||
"notes": "Бележки",
|
||||
"toggle-section": "Превключване на раздела",
|
||||
"toggle-section": "Създай раздел",
|
||||
"see-original-text": "Виж оригиналния текст",
|
||||
"original-text-with-value": "Оригинален текст: {originalText}",
|
||||
"ingredient-linker": "Инструмент за свързване на съставки",
|
||||
"unlinked": "Все още не е свързано",
|
||||
"linked-to-other-step": "Свързано към друга стъпка",
|
||||
"auto": "Автоматично",
|
||||
"cook-mode": "Начин на приготвяне",
|
||||
"cook-mode": "Инструкции",
|
||||
"link-ingredients": "Свържи съставки",
|
||||
"merge-above": "Обедини с по-горната стъпка",
|
||||
"move-to-bottom": "Премести най-долу",
|
||||
@@ -588,11 +592,11 @@
|
||||
"timeline-is-empty": "Няма история на събитията. Опитайте да приготвите рецептата!",
|
||||
"timeline-no-events-found-try-adjusting-filters": "Няма намерени събития. Опитайте да промените филтрите си за търсене.",
|
||||
"group-global-timeline": "{groupName} История на събитията",
|
||||
"open-timeline": "История на събитията",
|
||||
"open-timeline": "Хронология на събитията",
|
||||
"made-this": "Сготвих рецептата",
|
||||
"how-did-it-turn-out": "Как се получи?",
|
||||
"user-made-this": "{user} направи това",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"user-made-this": "{user} сготви",
|
||||
"made-for-recipe": "Направено за {recipe}",
|
||||
"added-to-timeline": "Добавено към историята на събитията",
|
||||
"failed-to-add-to-timeline": "Неуспешно добавяне към историята на събитията",
|
||||
"failed-to-update-recipe": "Неуспешно актуализиране на рецептата",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Пробвайте масовото импорторане",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Имате ли сурови HTML или JSON данни?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Можете да импортирате директно от сурови данни",
|
||||
"scrape-recipe-website-being-blocked": "Блокиран ли е уебсайтът?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Опитайте вместо това да импортирате суровия HTML код.",
|
||||
"import-original-keywords-as-tags": "Добави оригиналните ключови думи като етикети",
|
||||
"stay-in-edit-mode": "Остани в режим на редакция",
|
||||
"parse-recipe-ingredients-after-import": "Анализиране на съставките на рецептата след импортиране",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Качете още изображения",
|
||||
"set-as-cover-image": "Задай като изображение на корицата на рецептата",
|
||||
"cover-image": "Изображение на корицата",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Влючване на свързаните рецепти",
|
||||
"include-linked-recipe-ingredients": "Включване на съставките от свързаните рецепти",
|
||||
"toggle-recipe": "Вмъкни рецепта"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Търсачка на рецепти",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Натисни '/'",
|
||||
"advanced": "Разширени",
|
||||
"auto-search": "Автоматично търсене",
|
||||
"no-results": "Не са намерени резултати"
|
||||
"no-results": "Не са намерени резултати",
|
||||
"type-to-search": "Въведете текст за търсене..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Добавяне на нова тема",
|
||||
@@ -801,7 +808,7 @@
|
||||
"error-creating-theme-see-log-file": "Грешка при създаването на темата. Виж лог файла.",
|
||||
"error-deleting-theme": "Грешка при изтриването на темата",
|
||||
"error-updating-theme": "Грешка при актуализирането на темата",
|
||||
"info": "Инфо",
|
||||
"info": "Информация",
|
||||
"light": "Светла",
|
||||
"primary": "Основен",
|
||||
"secondary": "Вторичен",
|
||||
@@ -866,7 +873,7 @@
|
||||
"failed": "Неуспешно",
|
||||
"general-about": "Основни настройки",
|
||||
"application-version": "Версия на приложението",
|
||||
"application-version-error-text": "Вашата текуща версия ({0}) не съответства на най-новата версия. Обмисляте актуализиране до най-новата версия ({1}).",
|
||||
"application-version-error-text": "Вашата текуща версия ({0}) не съответства на най-новата версия. Обмислете актуализиране до най-новата версия ({1}).",
|
||||
"mealie-is-up-to-date": "Mealie е обновен до актуалната версия",
|
||||
"secure-site": "Сигурен сайт",
|
||||
"secure-site-error-text": "Сервирайте чрез localhost или защитено с https. Клипбордът и допълнителните API на браузъра може да не работят.",
|
||||
@@ -967,14 +974,14 @@
|
||||
"tag": "Етикет"
|
||||
},
|
||||
"tool": {
|
||||
"tools": "Инструменти",
|
||||
"tools": "Прибори",
|
||||
"on-hand": "Наличности",
|
||||
"create-a-tool": "Създаване на инструмент",
|
||||
"tool-name": "Име на инструмента",
|
||||
"create-new-tool": "Създаване на нов инструмент",
|
||||
"on-hand-checkbox-label": "Показване като налични (отметнато)",
|
||||
"required-tools": "Задължителни инструменти",
|
||||
"tool": "Инструменти"
|
||||
"tool": "Прибори"
|
||||
},
|
||||
"user": {
|
||||
"admin": "Админ",
|
||||
@@ -1015,7 +1022,7 @@
|
||||
"please-enter-password": "Моля, въведете новата си парола.",
|
||||
"register": "Регистриране",
|
||||
"reset-password": "Забравена парола",
|
||||
"sign-in": "Вписване",
|
||||
"sign-in": "Вход в системата",
|
||||
"total-mealplans": "Хранителни планове общо",
|
||||
"total-users": "Общо потребители",
|
||||
"upload-photo": "Качете снимка",
|
||||
@@ -1054,7 +1061,7 @@
|
||||
"very-strong": "Много силна"
|
||||
},
|
||||
"user-management": "Управление на потребителя",
|
||||
"reset-locked-users": "Нулиране на заключените потребители",
|
||||
"reset-locked-users": "Отключване на заключените потребители",
|
||||
"admin-user-creation": "Създаване на администратор",
|
||||
"admin-user-management": "Управление на администраторите",
|
||||
"user-details": "Детайли за потребителя",
|
||||
@@ -1095,7 +1102,7 @@
|
||||
"create-food": "Създай продукт",
|
||||
"food-label": "Заглавие на храната",
|
||||
"edit-food": "Редактирай храна",
|
||||
"food-data": "Данни за храните",
|
||||
"food-data": "Продукти",
|
||||
"example-food-singular": "пример: Домат",
|
||||
"example-food-plural": "пример: Домати",
|
||||
"label-overwrite-warning": "Това ще присвои избрания етикет на всички избрани храни и евентуално ще презапише съществуващите ви етикети.",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Esmorzar",
|
||||
"lunch": "Dinar",
|
||||
"dinner": "Sopar",
|
||||
"snack": "Piscolabis",
|
||||
"drink": "Beguda",
|
||||
"dessert": "Postres",
|
||||
"type-any": "Qualsevol",
|
||||
"day-any": "Qualsevol",
|
||||
"editor": "Editor",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importa per URL",
|
||||
"create-manually": "Crea una recepta manualment",
|
||||
"make-recipe-image": "Fes-la la imatge de la recepta",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Afegeix Aliment",
|
||||
"add-recipe": "Afegeix Recepta"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 - Pàgina no trobada",
|
||||
@@ -480,7 +483,7 @@
|
||||
"comment": "Comentari",
|
||||
"comments": "Comentaris",
|
||||
"delete-confirmation": "Estàs segur que vols suprimir-la?",
|
||||
"admin-delete-confirmation": "You're about to delete a recipe that isn't yours using admin permissions. Are you sure?",
|
||||
"admin-delete-confirmation": "Estàs a punt d'eliminar una recepta que no és teva utilitzant permisos d'administrador. N'estàs segur?",
|
||||
"delete-recipe": "Suprimeix la recepta",
|
||||
"description": "Descripció",
|
||||
"disable-amount": "Oculta les quantitats",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "S'ha suprimit la recepta",
|
||||
"recipe-image": "Imatge de la recepta",
|
||||
"recipe-image-updated": "S'ha actualitzat la imatge de la recepta",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Suprimir la imatge de la recepta",
|
||||
"delete-image-confirmation": "Estàs segur que vols suprimir la imatge d'aquesta recepta?",
|
||||
"recipe-image-deleted": "S'ha suprimit la imatge de la recepta",
|
||||
"recipe-name": "Nom de la recepta",
|
||||
"recipe-settings": "Opcions de la recepta",
|
||||
"recipe-update-failed": "S'ha produït un error a l'actualitzar la recepta",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Tria el tipus d'unitat",
|
||||
"press-enter-to-create": "Premeu enter per a crear-lo",
|
||||
"choose-food": "Tria un aliment",
|
||||
"choose-recipe": "Tria la recepta",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Nova secció",
|
||||
"see-original-text": "Mostra el text original",
|
||||
@@ -596,11 +600,11 @@
|
||||
"added-to-timeline": "Added to timeline",
|
||||
"failed-to-add-to-timeline": "Failed to add to timeline",
|
||||
"failed-to-update-recipe": "Failed to update recipe",
|
||||
"added-to-timeline-but-failed-to-add-image": "Added to timeline, but failed to add image",
|
||||
"added-to-timeline-but-failed-to-add-image": "S'ha afegit a la línia de temps, però no s'ha pogut afegir la imatge",
|
||||
"api-extras-description": "Els extres de receptes són una funcionalitat clau de l'API de Mealie. Permeten crear parells clau/valor JSON personalitzats dins una recepta, per referenciar-los des d'aplicacions de tercers. Pots emprar aquestes claus per proveir informació, per exemple per a desencadenar automatitzacions o missatges personlitzats per a propagar al teu dispositiu desitjat.",
|
||||
"message-key": "Clau del missatge",
|
||||
"parse": "Analitzar",
|
||||
"ingredients-not-parsed-description": "It looks like your ingredients aren't parsed yet. Click the \"{parse}\" button below to parse your ingredients into structured foods.",
|
||||
"ingredients-not-parsed-description": "Sembla que els teus ingredients encara no s'han analitzat. Feu clic al botó \"{parse}\" de sota per transformar els vostres ingredients en aliments estructurats.",
|
||||
"attach-images-hint": "Afegeix imatges arrossegant i deixant anar la imatge a l'editor",
|
||||
"drop-image": "Deixa anar la imatge",
|
||||
"enable-ingredient-amounts-to-use-this-feature": "Habilita les quantitats d'ingredients per a poder fer servir aquesta característica",
|
||||
@@ -618,10 +622,10 @@
|
||||
"create-recipe-from-an-image": "Crear una recepta a partir d'una imatge",
|
||||
"create-recipe-from-an-image-description": "Crear una recepta pujant una imatge d'ella. Mealie intentarà extreure el text de la imatge mitjançant IA i crear-ne la recepta.",
|
||||
"crop-and-rotate-the-image": "Retalla i rota la imatge, per tal que només el text sigui visible, i estigui orientat correctament.",
|
||||
"create-from-images": "Create from Images",
|
||||
"create-from-images": "Crear una recepta a partir d'una imatge",
|
||||
"should-translate-description": "Tradueix la recepta a la meva llengua",
|
||||
"please-wait-image-procesing": "Si us plau, esperi, la imatge s'està processant. Això pot tardar un temps.",
|
||||
"please-wait-images-processing": "Please wait, the images are processing. This may take some time.",
|
||||
"please-wait-images-processing": "Espereu, les imatges s'estan processant. Això pot trigar una estona.",
|
||||
"bulk-url-import": "Importació d'URL en massa",
|
||||
"debug-scraper": "Rastrejador de depuració",
|
||||
"create-a-recipe-by-providing-the-name-all-recipes-must-have-unique-names": "Crea la recepta proporcionant-ne un nom. Totes les receptes han de tenir un nom únic.",
|
||||
@@ -632,9 +636,11 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prova l'importador a granel",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Teniu dades HTML o JSON pla?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Podeu importar directament des de les dades planes",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importa les paraules clau originals com a tags",
|
||||
"stay-in-edit-mode": "Segueix en el mode d'edició",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
"parse-recipe-ingredients-after-import": "Analitza els ingredients de la recepta després d'importar",
|
||||
"import-from-zip": "Importa des d'un ZIP",
|
||||
"import-from-zip-description": "Importa una sola recepta que ha estat importada d'una altra instància de Mealie.",
|
||||
"import-from-html-or-json": "Importar des d'un HTML o JSON",
|
||||
@@ -678,26 +684,26 @@
|
||||
"no-unit": "Sense unitat",
|
||||
"missing-unit": "Crear unitat que manca: {unit}",
|
||||
"missing-food": "Crear menjar que manca: {food}",
|
||||
"this-unit-could-not-be-parsed-automatically": "This unit could not be parsed automatically",
|
||||
"this-food-could-not-be-parsed-automatically": "This food could not be parsed automatically",
|
||||
"this-unit-could-not-be-parsed-automatically": "Aquesta unitat no s'ha pogut analitzar automàticament",
|
||||
"this-food-could-not-be-parsed-automatically": "Aquest aliment no s'ha pogut analitzar automàticament",
|
||||
"no-food": "Sense menjar",
|
||||
"review-parsed-ingredients": "Review parsed ingredients",
|
||||
"confidence-score": "Confidence Score",
|
||||
"ingredient-parser-description": "Your ingredients have been successfully parsed. Please review the ingredients we're not sure about.",
|
||||
"ingredient-parser-final-review-description": "Once all ingredients have been reviewed, you'll have one more chance to review all ingredients before applying the changes to your recipe.",
|
||||
"add-text-as-alias-for-item": "Add \"{text}\" as alias for {item}",
|
||||
"delete-item": "Delete Item"
|
||||
"review-parsed-ingredients": "Revisió d'ingredients analitzats",
|
||||
"confidence-score": "Puntuació de confiança",
|
||||
"ingredient-parser-description": "Els teus ingredients s'han analitzat correctament. Si us plau, revisa els ingredients dels quals no estem segurs.",
|
||||
"ingredient-parser-final-review-description": "Un cop revisats tots els ingredients, tindràs una oportunitat més de revisar tots els ingredients abans d'aplicar els canvis a la teva recepta.",
|
||||
"add-text-as-alias-for-item": "Afegeix \"{text}\" com a àlies de {item}",
|
||||
"delete-item": "Eliminar element"
|
||||
},
|
||||
"reset-servings-count": "Reiniciar racions servides",
|
||||
"not-linked-ingredients": "Ingredients addicionals",
|
||||
"upload-another-image": "Upload another image",
|
||||
"upload-images": "Upload images",
|
||||
"upload-more-images": "Upload more images",
|
||||
"set-as-cover-image": "Set as recipe cover image",
|
||||
"cover-image": "Cover image",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"upload-another-image": "Puja una altra imatge",
|
||||
"upload-images": "Puja imatges",
|
||||
"upload-more-images": "Puja més imatges",
|
||||
"set-as-cover-image": "Estableix com a imatge de portada de recepta",
|
||||
"cover-image": "Imatge de portada",
|
||||
"include-linked-recipes": "Inclou les receptes enllaçades",
|
||||
"include-linked-recipe-ingredients": "Inclou els ingredients de la recepta enllaçada",
|
||||
"toggle-recipe": "Alternar recepta"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Cercador de receptes",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Prem '/'",
|
||||
"advanced": "Avançat",
|
||||
"auto-search": "Cerca automàtica",
|
||||
"no-results": "No s'han trobat resultats"
|
||||
"no-results": "No s'han trobat resultats",
|
||||
"type-to-search": "Escriviu per cercar..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Afegiu un nou tema",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"forgot-password": "Contrasenya oblidada",
|
||||
"forgot-password-text": "Introdueix siusplau la teva adreça de correu electrònic i t'enviarem un enllaç per restablir la teva contrassenya.",
|
||||
"changes-reflected-immediately": "Els canvis en aquest usuari s'actualitzaran immediatament.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Activitat per defecte",
|
||||
"default-activity-hint": "Seleccioneu a quina pàgina voleu navegar en iniciar sessió des d'aquest dispositiu"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "traduït",
|
||||
@@ -1192,7 +1199,7 @@
|
||||
"group-details": "Detalls del grup",
|
||||
"group-details-description": "Abans de crear un compte heu de crear un grup. Al grup només hi serà vostè, però després podeu convidar d'altres. Els membres d'un grup poden compartir menús, llistes de la compra, receptes i molt més!",
|
||||
"use-seed-data": "Afegiu dades predeterminades",
|
||||
"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. These are translated into the language you currently have selected. You can always add to or modify this data later.",
|
||||
"use-seed-data-description": "Mealie disposa d'una col·lecció d'aliments, unitats i etiquetes que es poden utilitzar per omplir el vostre grup amb dades útils per organitzar les vostres receptes. Aquests es tradueixen a l'idioma que heu seleccionat actualment. Sempre podeu afegir o modificar aquestes dades més endavant.",
|
||||
"account-details": "Detalls del compte"
|
||||
},
|
||||
"validation": {
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Snídaně",
|
||||
"lunch": "Oběd",
|
||||
"dinner": "Večeře",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Libovolné",
|
||||
"day-any": "Libovolný",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Vybrat jednotku",
|
||||
"press-enter-to-create": "Stiskněte enter pro vytvoření",
|
||||
"choose-food": "Zvolte jídlo",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Poznámky",
|
||||
"toggle-section": "Přidat/odebrat název sekce",
|
||||
"see-original-text": "Zobrazit původní text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importovat původní klíčová slova jako štítky",
|
||||
"stay-in-edit-mode": "Zůstat v režimu úprav",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Stiskněte '/'",
|
||||
"advanced": "Pokročilé",
|
||||
"auto-search": "Automatické vyhledávání",
|
||||
"no-results": "Nebyly nalezeny žádné výsledky"
|
||||
"no-results": "Nebyly nalezeny žádné výsledky",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Přidat nový motiv",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Morgenmad",
|
||||
"lunch": "Frokost",
|
||||
"dinner": "Aftensmad",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Alle",
|
||||
"day-any": "Alle",
|
||||
"editor": "Redigeringsværktøj",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importér opskrift fra en webside",
|
||||
"create-manually": "Opret opskrift manuelt",
|
||||
"make-recipe-image": "Gør dette til opskriftsbillede",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Tilføj Mad",
|
||||
"add-recipe": "Tilføj opskrift"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Siden blev ikke fundet",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Opskrift slettet",
|
||||
"recipe-image": "Opskriftsbillede",
|
||||
"recipe-image-updated": "Opskriftsbillede ændret",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Slet Opskrift Billede",
|
||||
"delete-image-confirmation": "Er du sikker på, du vil slette dette opskrift billede?",
|
||||
"recipe-image-deleted": "Opskrift billede slettet",
|
||||
"recipe-name": "Opskriftens navn",
|
||||
"recipe-settings": "Opskriftsindstillinger",
|
||||
"recipe-update-failed": "Opdatering af opskrift fejlede",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Vælg enhed",
|
||||
"press-enter-to-create": "Tryk enter for at oprette",
|
||||
"choose-food": "Vælg fødevarer",
|
||||
"choose-recipe": "Vælg Opskrift",
|
||||
"notes": "Kommentarer",
|
||||
"toggle-section": "Sektion",
|
||||
"see-original-text": "Vis den oprindelige tekst",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Jeg har lavet denne",
|
||||
"how-did-it-turn-out": "Hvordan blev det?",
|
||||
"user-made-this": "{user} lavede denne",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Lavet til {recipe}",
|
||||
"added-to-timeline": "Tilføjet til tidslinjen",
|
||||
"failed-to-add-to-timeline": "Kunne ikke tilføje til tidslinjen",
|
||||
"failed-to-update-recipe": "Kunne ikke opdatere opskrift",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prøv masseimport",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Har rå HTML- eller JSON-data?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Du kan importere direkte fra rå data",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importér originale nøgleord som mærker",
|
||||
"stay-in-edit-mode": "Bliv i redigeringstilstand",
|
||||
"parse-recipe-ingredients-after-import": "Fortolk opskrift ingredienser efter import",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Upload flere billeder",
|
||||
"set-as-cover-image": "Angiv som opskriftens coverbillede",
|
||||
"cover-image": "Coverbillede",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Inkluder Relaterede Opskrifter",
|
||||
"include-linked-recipe-ingredients": "Inkluder Relaterede Opskrift Ingredienser",
|
||||
"toggle-recipe": "Vis/Skjul Opskrift"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Opskriftssøger",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Tryk '/'",
|
||||
"advanced": "Avanceret",
|
||||
"auto-search": "Automatisk søgning",
|
||||
"no-results": "Ingen resultater fundet"
|
||||
"no-results": "Ingen resultater fundet",
|
||||
"type-to-search": "Skriv for at søge..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Tilføj et nyt tema",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Frühstück",
|
||||
"lunch": "Mittagessen",
|
||||
"dinner": "Abendessen",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Alle",
|
||||
"day-any": "Alle",
|
||||
"editor": "Bearbeiten",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Ein Rezept von einer Webseite importieren",
|
||||
"create-manually": "Ein Rezept manuell erstellen",
|
||||
"make-recipe-image": "Als Rezept-Titelbild verwenden",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Lebensmittel",
|
||||
"add-recipe": "Rezepte hinzufügen"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Seite nicht gefunden",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Rezept entfernt",
|
||||
"recipe-image": "Rezeptbild",
|
||||
"recipe-image-updated": "Rezeptbild aktualisiert",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Rezeptbild löschen",
|
||||
"delete-image-confirmation": "Bist du dir sicher, dass du dieses Rezept löschen möchtest?",
|
||||
"recipe-image-deleted": "Rezeptbild gelöscht",
|
||||
"recipe-name": "Rezeptname",
|
||||
"recipe-settings": "Rezepteinstellungen",
|
||||
"recipe-update-failed": "Aktualisieren des Rezepts fehlgeschlagen",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Einheit wählen",
|
||||
"press-enter-to-create": "Zum Erstellen Eingabetaste drücken",
|
||||
"choose-food": "Lebensmittel wählen",
|
||||
"choose-recipe": "Rezept wählen",
|
||||
"notes": "Notizen",
|
||||
"toggle-section": "Überschrift ein-/ausblenden",
|
||||
"see-original-text": "Originaltext anzeigen",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Ich hab's gemacht",
|
||||
"how-did-it-turn-out": "Wie ist es geworden?",
|
||||
"user-made-this": "{user} hat's gemacht",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Erstellt für {recipe}",
|
||||
"added-to-timeline": "Zur Zeitleiste hinzugefügt",
|
||||
"failed-to-add-to-timeline": "Fehler beim Hinzufügen zur Zeitleiste",
|
||||
"failed-to-update-recipe": "Fehler beim Aktualisieren des Rezepts",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Probiere den Massenimporter aus",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Hast du Roh-HTML oder JSON Daten?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Du kannst direkt von Rohdaten importieren",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importiere ursprüngliche Stichwörter als Schlagwörter",
|
||||
"stay-in-edit-mode": "Im Bearbeitungsmodus bleiben",
|
||||
"parse-recipe-ingredients-after-import": "Zutaten nach dem Import parsen",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Weitere Bilder hochladen",
|
||||
"set-as-cover-image": "Als Rezept-Titelbild setzen",
|
||||
"cover-image": "Titelbild",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Verknüpfte Rezepte einbeziehen",
|
||||
"include-linked-recipe-ingredients": "Zutaten verknüpfter Rezepte einbeziehen",
|
||||
"toggle-recipe": "Rezept ein/aus"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Rezept-Suche",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "'/' drücken",
|
||||
"advanced": "Erweitert",
|
||||
"auto-search": "Automatische Suche",
|
||||
"no-results": "Keine Ergebnisse gefunden"
|
||||
"no-results": "Keine Ergebnisse gefunden",
|
||||
"type-to-search": "Suchbegriff eingeben..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Neues Thema hinzufügen",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Πρωινό",
|
||||
"lunch": "Μεσημεριανό",
|
||||
"dinner": "Βραδινό",
|
||||
"snack": "Σνακ",
|
||||
"drink": "Ποτό",
|
||||
"dessert": "Επιδόρπιο",
|
||||
"type-any": "Οτιδήποτε",
|
||||
"day-any": "Οποιαδήποτε",
|
||||
"editor": "Επεξεργαστής κειμένου",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Επιλέξτε μονάδα",
|
||||
"press-enter-to-create": "Πατήστε Enter για δημιουργία",
|
||||
"choose-food": "Επιλέξτε τρόφιμο",
|
||||
"choose-recipe": "Επιλέξτε συνταγή",
|
||||
"notes": "Σημειώσεις",
|
||||
"toggle-section": "Ενεργοποίηση/απενεργοποίηση τμήματος",
|
||||
"see-original-text": "Προβολή Αρχικού Κειμένου",
|
||||
@@ -601,7 +605,7 @@
|
||||
"message-key": "Κλειδί Μηνύματος",
|
||||
"parse": "Ανάλυση",
|
||||
"ingredients-not-parsed-description": "Φαίνεται ότι τα συστατικά σας δεν έχουν αναλυθεί ακόμα. Κάντε κλικ στο κουμπί \"{parse}\" παρακάτω για να αναλύσετε τα συστατικά σας σε δομημένα τρόφιμα.",
|
||||
"attach-images-hint": "Επισυνάψτε εικόνες σύροντας τις & αφήνοντάς τις στον επεξεργαστή",
|
||||
"attach-images-hint": "Επισυνάψτε εικόνες σύροντας & αφήνοντάς τες στον επεξεργαστή",
|
||||
"drop-image": "Απόθεση εικόνας",
|
||||
"enable-ingredient-amounts-to-use-this-feature": "Ενεργοποιήστε τις ποσότητες συστατικών για να χρησιμοποιήσετε αυτήν τη δυνατότητα",
|
||||
"recipes-with-units-or-foods-defined-cannot-be-parsed": "Δεν είναι δυνατή η ανάλυση συνταγών με καθορισμένες μονάδες ή τρόφιμα.",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Δοκιμάστε τον μαζικό εισαγωγέα συνταγών μας",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Εχουν ακατέργαστα δεδομένα HTML ή JSON;",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Μπορείτε να κάνετε εισαγωγή απευθείας από ακατέργαστα δεδομένα",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Εισαγωγή αρχικών λέξεων-κλειδιών ως ετικέτες",
|
||||
"stay-in-edit-mode": "Παραμονή σε λειτουργία επεξεργασίας",
|
||||
"parse-recipe-ingredients-after-import": "Ανάλυση συστατικών συνταγής μετά την εισαγωγή",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Πατήστε '/'",
|
||||
"advanced": "Για προχωρημένους",
|
||||
"auto-search": "Αυτόματη Αναζήτηση",
|
||||
"no-results": "Δε βρέθηκαν αποτελέσματα"
|
||||
"no-results": "Δε βρέθηκαν αποτελέσματα",
|
||||
"type-to-search": "Πληκτρολογήστε για αναζήτηση…"
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Προσθήκη νέου θέματος",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Breakfast",
|
||||
"lunch": "Lunch",
|
||||
"dinner": "Dinner",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Any",
|
||||
"day-any": "Any",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Choose Unit",
|
||||
"press-enter-to-create": "Press Enter to Create",
|
||||
"choose-food": "Choose Food",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Toggle Section",
|
||||
"see-original-text": "See Original Text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Import original keywords as tags",
|
||||
"stay-in-edit-mode": "Stay in Edit mode",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Press '/'",
|
||||
"advanced": "Advanced",
|
||||
"auto-search": "Auto Search",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Add a New Theme",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Breakfast",
|
||||
"lunch": "Lunch",
|
||||
"dinner": "Dinner",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Any",
|
||||
"day-any": "Any",
|
||||
"editor": "Editor",
|
||||
@@ -633,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Import original keywords as tags",
|
||||
"stay-in-edit-mode": "Stay in Edit mode",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Desayuno",
|
||||
"lunch": "Comida principal",
|
||||
"dinner": "Cena",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Cualquiera",
|
||||
"day-any": "Cualquier",
|
||||
"editor": "Editor",
|
||||
@@ -400,8 +403,8 @@
|
||||
"title": "Recetas de Tandoor"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie can import recipes from DVO Cook'n X3. Export a cookbook or menu in the \"Cook'n\" format, rename the export extension to .zip, then upload the .zip below.",
|
||||
"title": "DVO Cook'n X3"
|
||||
"description-long": "Mealie no puede importar recetas de DVO Cook'n X3. Exporta un recetario o un menú en el formato \"Cook'n\", renómbralo a la extensión .zip y sube el .zip en la sección de abajo.",
|
||||
"title": "Cook'n DVO X3"
|
||||
},
|
||||
"recipe-data-migrations": "Migración de recetas",
|
||||
"recipe-data-migrations-explanation": "Las recetas pueden migrarse desde otra aplicación soportada a Mealie. Esta es una excelente manera de empezar con Mealie.",
|
||||
@@ -450,7 +453,7 @@
|
||||
"create-manually": "Crear receta manualmente",
|
||||
"make-recipe-image": "Haz de esta la imagen de la receta",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-recipe": "Agregar receta"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Página no encontrada",
|
||||
@@ -517,8 +520,8 @@
|
||||
"recipe-deleted": "Receta eliminada",
|
||||
"recipe-image": "Imagen de la receta",
|
||||
"recipe-image-updated": "Imagen de la receta actualizada",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"delete-image": "Borra la imagen de la receta",
|
||||
"delete-image-confirmation": "¿Estás seguro de que quieres borrar esta imagen de la receta?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"recipe-name": "Nombre de la receta",
|
||||
"recipe-settings": "Ajustes de la receta",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Elija unidad",
|
||||
"press-enter-to-create": "Presione Intro para crear",
|
||||
"choose-food": "Elija comida",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notas",
|
||||
"toggle-section": "Activar sección",
|
||||
"see-original-text": "Mostrar Texto Original",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prueba el importador masivo",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "¿Tiene datos HTML o JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Puede importar directamente desde datos brutos",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importar palabras clave originales como etiquetas",
|
||||
"stay-in-edit-mode": "Permanecer en modo edición",
|
||||
"parse-recipe-ingredients-after-import": "Analizar los ingredientes de la receta después de importarla",
|
||||
@@ -697,7 +703,7 @@
|
||||
"cover-image": "Imagen de portada",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"toggle-recipe": "Alternar Receta"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Buscador de recetas",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Presione '/'",
|
||||
"advanced": "Avanzado",
|
||||
"auto-search": "Búsqueda automática",
|
||||
"no-results": "No se encontraron resultados"
|
||||
"no-results": "No se encontraron resultados",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Añadir un nuevo tema",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"forgot-password": "Olvidé mi contraseña",
|
||||
"forgot-password-text": "Por favor, introduce tu correo electrónico y te enviaremos un enlace para restablecer tu contraseña.",
|
||||
"changes-reflected-immediately": "Los cambios en este grupo se reflejarán inmediatamente.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Actividad predeterminada",
|
||||
"default-activity-hint": "Selecciona la pagina a la que navegar al iniciar la sesion en este dispositivo"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "traducido",
|
||||
|
||||
@@ -62,14 +62,14 @@
|
||||
"notification": "Teade",
|
||||
"refresh": "Värskenda",
|
||||
"scheduled": "Ajastatud",
|
||||
"something-went-wrong": "Miski läks valesti",
|
||||
"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)",
|
||||
"apprise-url-is-left-intentionally-blank": "Since Apprise URLs typically contain sensitive information, this field is left intentionally blank while editing. If you wish to update the URL, please enter the new one here, otherwise leave it blank to keep the current URL.",
|
||||
"apprise-url-is-left-intentionally-blank": "Kuna Apprise URL-id sisaldavad tavaliselt tundlikku teavet, jäetakse see väli redigeerimisel tahtlikult tühjaks. Kui soovite URL-i uuendada, sisestage siia uus URL, muidu jätke väli tühjaks, et säilitada praegune URL.",
|
||||
"enable-notifier": "Luba teavitaja",
|
||||
"what-events": "Millised sündmused peaks see teavitaja tellimaa?",
|
||||
"user-events": "Kasutaja sündmused",
|
||||
@@ -105,8 +105,8 @@
|
||||
"exception": "Erand",
|
||||
"failed-count": "Ebaõnnestunud: {count}",
|
||||
"failure-uploading-file": "Faili üleslaadimine ebaõnnestunud",
|
||||
"favorites": "Lemmiud",
|
||||
"field-required": "Väli nõutud",
|
||||
"favorites": "Lemmikud",
|
||||
"field-required": "Nõutud väli",
|
||||
"file-folder-not-found": "Faili/kausta ei leitud",
|
||||
"file-uploaded": "Fail üles laetud",
|
||||
"filter": "Filter",
|
||||
@@ -119,17 +119,17 @@
|
||||
"import": "Impordi",
|
||||
"json": "JSON",
|
||||
"keyword": "Otsingusõna",
|
||||
"link-copied": "Link kopeeritud!",
|
||||
"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",
|
||||
"loading-recipe": "Retsepti laadimine...",
|
||||
"loading-ocr-data": "OCR admete laadimine...",
|
||||
"loading-recipes": "Retseptide laadimine",
|
||||
"message": "Sõnum",
|
||||
"monday": "Esmaspäev",
|
||||
"name": "Nimi",
|
||||
"new": "Uus",
|
||||
"never": "Uuem",
|
||||
"never": "Mitte kunagi",
|
||||
"no": "Ei",
|
||||
"no-recipe-found": "Retsepti ei leitud",
|
||||
"ok": "OK",
|
||||
@@ -192,7 +192,7 @@
|
||||
"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.",
|
||||
"confirm-delete-own-admin-account": "Pane tähele, et sa proovid kustutada oma admin kasutajat! Seda tegevust ei saa tagasi võtta ning see kustutab su kasutaja jäädavalt.",
|
||||
"organizer": "Korraldaja",
|
||||
"transfer": "Vii üle",
|
||||
"copy": "Kopeeri",
|
||||
@@ -203,8 +203,8 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -212,7 +212,7 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -222,7 +222,7 @@
|
||||
"date-updated": "Üleslaadimise kuupäev"
|
||||
},
|
||||
"group": {
|
||||
"are-you-sure-you-want-to-delete-the-group": "Kas oled kindel, et tahad kustutada <b>{groupName}<b/>",
|
||||
"are-you-sure-you-want-to-delete-the-group": "Kas oled kindel, et tahad kustutada <b>{groupName}<b/>?",
|
||||
"cannot-delete-default-group": "Ei saa kustutada vaikegruppi",
|
||||
"cannot-delete-group-with-users": "Ei saa kustutada kasutajatega gruppi",
|
||||
"confirm-group-deletion": "Kinnita grupi kustutamine",
|
||||
@@ -251,15 +251,15 @@
|
||||
"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-description": "Need on lähteseaded kui loote uut retsepti 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.",
|
||||
"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.",
|
||||
"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",
|
||||
@@ -294,13 +294,13 @@
|
||||
"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.",
|
||||
"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",
|
||||
"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.",
|
||||
"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": {
|
||||
@@ -314,7 +314,7 @@
|
||||
"group": "Grupp (beeta)",
|
||||
"main": "Pearoog",
|
||||
"meal-planner": "Toitumismplaneerija",
|
||||
"meal-plans": "Toitumismplanid",
|
||||
"meal-plans": "Toitumismplaanid",
|
||||
"mealplan-categories": "TOITUMISPLAANI KATEGOORIAD",
|
||||
"mealplan-created": "Toitumisplaan loodud",
|
||||
"mealplan-creation-failed": "Toitumisplaani loomine ebaõnnestus",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Hommikusöök",
|
||||
"lunch": "Lõuna",
|
||||
"dinner": "Õhtusöök",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Kõik",
|
||||
"day-any": "Kõik",
|
||||
"editor": "Editor",
|
||||
@@ -400,7 +403,7 @@
|
||||
"title": "Tandoor-i retsptid"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie can import recipes from DVO Cook'n X3. Export a cookbook or menu in the \"Cook'n\" format, rename the export extension to .zip, then upload the .zip below.",
|
||||
"description-long": "Mealie saab importida retsepte DVO Cook'n X3-st. Ekspordi kokaraamat või menüü „Cook'n“ formaadis, nimeta ekspordi laiendiks .zip ja lae seejärel .zip allpool üles.",
|
||||
"title": "DVO Cook'n X3"
|
||||
},
|
||||
"recipe-data-migrations": "Retsepti andmete ületoomised",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Impordi retsept URL-lt",
|
||||
"create-manually": "Loo retsept manuaalselt",
|
||||
"make-recipe-image": "Sea see retsepti pildiks",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Lisa toit",
|
||||
"add-recipe": "Lisa retsept"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Lehte ei leitud",
|
||||
@@ -480,7 +483,7 @@
|
||||
"comment": "Kommentaar",
|
||||
"comments": "Kommentaarid",
|
||||
"delete-confirmation": "Kas sa oled kindel, et tahad seda retsepti kustutada?",
|
||||
"admin-delete-confirmation": "You're about to delete a recipe that isn't yours using admin permissions. Are you sure?",
|
||||
"admin-delete-confirmation": "Sa oled kustutamas sulle mittekuuluvat retsepti, kasutades administraatori õigusi. Oled kindel?",
|
||||
"delete-recipe": "Kustuta retsept",
|
||||
"description": "Kirjeldus",
|
||||
"disable-amount": "Deaktiveeri koostisosade kogused",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Retsept kustutatud",
|
||||
"recipe-image": "Retsepti pilt",
|
||||
"recipe-image-updated": "Retsepti pilt uuendatud",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Kustuta retsepti pilt",
|
||||
"delete-image-confirmation": "Kas sa oled kindel, et tahad seda retsepti pilti kustutada?",
|
||||
"recipe-image-deleted": "Retsepti pilt kustutatud",
|
||||
"recipe-name": "Retsepti nimi",
|
||||
"recipe-settings": "Retsepti seaded",
|
||||
"recipe-update-failed": "Retsepti uuendamine ebaõnnestus",
|
||||
@@ -550,7 +553,7 @@
|
||||
"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",
|
||||
"add-to-timeline": "Lisa ajajoonele",
|
||||
"recipe-added-to-list": "Retsept lisatud nimekirja",
|
||||
"recipes-added-to-list": "Retseptid lisatud nimekirja",
|
||||
"successfully-added-to-list": "Edukalt lisatud nimekirja",
|
||||
@@ -565,12 +568,13 @@
|
||||
"choose-unit": "Vali ühik",
|
||||
"press-enter-to-create": "Loomiseks vajuta Enter",
|
||||
"choose-food": "Vali toit",
|
||||
"choose-recipe": "Vali retsept",
|
||||
"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",
|
||||
"unlinked": "Not linked yet",
|
||||
"unlinked": "Pole viidatud veel",
|
||||
"linked-to-other-step": "Lingitud järgmise sammuga",
|
||||
"auto": "Automaatne",
|
||||
"cook-mode": "Küpsetusviis",
|
||||
@@ -583,7 +587,7 @@
|
||||
"increase-scale-label": "Suurenda skaalat ühe võrra",
|
||||
"locked": "Lukustatud",
|
||||
"public-link": "Avalik link",
|
||||
"edit-timeline-event": "Muuda sündmust ajasjoonel",
|
||||
"edit-timeline-event": "Muuda sündmust ajajoonel",
|
||||
"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.",
|
||||
@@ -592,15 +596,15 @@
|
||||
"made-this": "Olen seda valmistanud",
|
||||
"how-did-it-turn-out": "Kuidas tuli see välja?",
|
||||
"user-made-this": "{user} on seda valmistanud",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"added-to-timeline": "Added to timeline",
|
||||
"failed-to-add-to-timeline": "Failed to add to timeline",
|
||||
"failed-to-update-recipe": "Failed to update recipe",
|
||||
"added-to-timeline-but-failed-to-add-image": "Added to timeline, but failed to add image",
|
||||
"made-for-recipe": "Tehtud {recipe} jaoks",
|
||||
"added-to-timeline": "Lisatud ajajoonele",
|
||||
"failed-to-add-to-timeline": "Ajajoonele lisamine ebaõnnestus",
|
||||
"failed-to-update-recipe": "Retsepti uuendamine ebaõnnestus",
|
||||
"added-to-timeline-but-failed-to-add-image": "Lisatud ajajoonele, kuid pildi lisamine ebaõnnestus",
|
||||
"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",
|
||||
"ingredients-not-parsed-description": "It looks like your ingredients aren't parsed yet. Click the \"{parse}\" button below to parse your ingredients into structured foods.",
|
||||
"ingredients-not-parsed-description": "Tundub, et teie koostisosad pole veel tuvastatud. Klõpsake allpool olevat nuppu „{parse}”, et tuvastada teie koostisosad struktureeritud toitudeks.",
|
||||
"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",
|
||||
@@ -618,10 +622,10 @@
|
||||
"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-images": "Create from Images",
|
||||
"create-from-images": "Retsepti loomine pildist",
|
||||
"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.",
|
||||
"please-wait-images-processing": "Please wait, the images are processing. This may take some time.",
|
||||
"please-wait-images-processing": "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",
|
||||
@@ -632,9 +636,11 @@
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Impordi originaal võtmesõnad siltidena",
|
||||
"stay-in-edit-mode": "Püsige redigeerimisrežiimis",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
"parse-recipe-ingredients-after-import": "Tuvasta retsepti koostisosad pärast importimist",
|
||||
"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",
|
||||
@@ -678,26 +684,26 @@
|
||||
"no-unit": "Ilma ühikuta",
|
||||
"missing-unit": "Loo puuduv ühik: {unit}",
|
||||
"missing-food": "Loo puuduv toit: {food}",
|
||||
"this-unit-could-not-be-parsed-automatically": "This unit could not be parsed automatically",
|
||||
"this-food-could-not-be-parsed-automatically": "This food could not be parsed automatically",
|
||||
"this-unit-could-not-be-parsed-automatically": "Seda ühikut ei saanud automaatselt tuvastada",
|
||||
"this-food-could-not-be-parsed-automatically": "Seda toitu ei saanud automaatselt tuvastada",
|
||||
"no-food": "Toit puudub",
|
||||
"review-parsed-ingredients": "Review parsed ingredients",
|
||||
"confidence-score": "Confidence Score",
|
||||
"ingredient-parser-description": "Your ingredients have been successfully parsed. Please review the ingredients we're not sure about.",
|
||||
"ingredient-parser-final-review-description": "Once all ingredients have been reviewed, you'll have one more chance to review all ingredients before applying the changes to your recipe.",
|
||||
"add-text-as-alias-for-item": "Add \"{text}\" as alias for {item}",
|
||||
"delete-item": "Delete Item"
|
||||
"review-parsed-ingredients": "Vaata läbi tuvastatud koostisosad",
|
||||
"confidence-score": "Kindluse tase",
|
||||
"ingredient-parser-description": "Koostisosad on edukalt tuvastatud. Palun vaadake üle koostisosad, mille puhul me pole kindlad.",
|
||||
"ingredient-parser-final-review-description": "Kui kõik koostisosad on üle vaadatud, on teil enne muudatuste retsepti salvestamist veel üks võimalus kõik koostisosad üle vaadata.",
|
||||
"add-text-as-alias-for-item": "Lisa \"{text}\" kui teine nimetus {item} jaoks",
|
||||
"delete-item": "Kustuta element"
|
||||
},
|
||||
"reset-servings-count": "Lähtesta portsionite arv",
|
||||
"not-linked-ingredients": "Lisa-koostisosad",
|
||||
"upload-another-image": "Upload another image",
|
||||
"upload-images": "Upload images",
|
||||
"upload-more-images": "Upload more images",
|
||||
"set-as-cover-image": "Set as recipe cover image",
|
||||
"cover-image": "Cover image",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"upload-another-image": "Laadi üles veel üks pilt",
|
||||
"upload-images": "Lae üles pilte",
|
||||
"upload-more-images": "Lae üles veel pilte",
|
||||
"set-as-cover-image": "Määra retsepti kaanepildiks",
|
||||
"cover-image": "Kaanepilt",
|
||||
"include-linked-recipes": "Arva kaasa viidatud retseptid",
|
||||
"include-linked-recipe-ingredients": "Arva kaasa viidatud retseptide koostisosad",
|
||||
"toggle-recipe": "Lülita retsept"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Retsepti otsing",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Vajuta \"/\"",
|
||||
"advanced": "Lisavalikud",
|
||||
"auto-search": "Automaatotsing",
|
||||
"no-results": "Tulemusi ei leitud"
|
||||
"no-results": "Tulemusi ei leitud",
|
||||
"type-to-search": "Tippige otsimiseks..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Lisa uus teema",
|
||||
@@ -757,7 +764,7 @@
|
||||
"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": "If you are using PostgreSQL, please review the {backup-restore-process} prior to restoring.",
|
||||
"postgresql-note": "Kui kasutate PostgreSQL-i, vaadake enne taastamist läbi {backup-restore-process}.",
|
||||
"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"
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"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",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Vaikimisi tegevus",
|
||||
"default-activity-hint": "Valige, millisele lehele soovite navigeerida, kui logite sisse sellelt seadmelt"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "tõlgitud",
|
||||
@@ -1192,7 +1199,7 @@
|
||||
"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": "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. These are translated into the language you currently have selected. You can always add to or modify this data later.",
|
||||
"use-seed-data-description": "Mealie sisaldab toiduainete, ühikute ja siltide kogumit, mida saad enda gruppi kaasata, et hõlbustada retseptide organiseerimist. Need on tõlgitud teie valitud keelde. Neid andmeid saab alati hiljem täiendada või muuta.",
|
||||
"account-details": "Konto üksikasjad"
|
||||
},
|
||||
"validation": {
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Aamiainen",
|
||||
"lunch": "Lounas",
|
||||
"dinner": "Päivällinen",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Mikä tahansa",
|
||||
"day-any": "Koska tahansa",
|
||||
"editor": "Editori",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Tuo resepti osoitteesta",
|
||||
"create-manually": "Luo resepti manuaalisesti",
|
||||
"make-recipe-image": "Luo reseptikuva",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Lisää Ruoka",
|
||||
"add-recipe": "Lisää resepti"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 sivua ei löydy",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Resepti poistettu",
|
||||
"recipe-image": "Reseptikuva",
|
||||
"recipe-image-updated": "Reseptikuva päivitetty",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Poista Reseptin Kuva",
|
||||
"delete-image-confirmation": "Haluatko varmasti poistaa reseptikuvan?",
|
||||
"recipe-image-deleted": "Reseptikuva poistettu",
|
||||
"recipe-name": "Reseptin nimi",
|
||||
"recipe-settings": "Reseptiasetukset",
|
||||
"recipe-update-failed": "Reseptin päivitys epäonnistui",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Valitse Yksikkö",
|
||||
"press-enter-to-create": "Luo painamalla Enter",
|
||||
"choose-food": "Valitse Ruoka",
|
||||
"choose-recipe": "Valitse Resepti",
|
||||
"notes": "Merkinnät",
|
||||
"toggle-section": "Vaihda osio",
|
||||
"see-original-text": "Katso Alkuperäinen Teksti",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Tein tämän",
|
||||
"how-did-it-turn-out": "Miten se onnistui?",
|
||||
"user-made-this": "{user} teki tämän",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Tehty reseptille",
|
||||
"added-to-timeline": "Lisätty aikajanalle",
|
||||
"failed-to-add-to-timeline": "Aikajanaan lisääminen epäonnistui",
|
||||
"failed-to-update-recipe": "Reseptin päivitys epäonnistui",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Kokeile massasiirtotyökalua",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Onko sinulla raakaa HTML- tai JSON-dataa?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Voit tuoda raakadatan suoraan",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Tuo alkuperäiset avainsanat tunnisteiksi",
|
||||
"stay-in-edit-mode": "Pysy muokkaustilassa",
|
||||
"parse-recipe-ingredients-after-import": "Jäsennä reseptin ainesosat tuonnin jälkeen",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Lataa lisää kuvia",
|
||||
"set-as-cover-image": "Aseta reseptin kansikuvaksi",
|
||||
"cover-image": "Kansikuva",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Sisällytä Linkitetyt Reseptit",
|
||||
"include-linked-recipe-ingredients": "Sisällytä Yhdistetyt Reseptin Ainesosat",
|
||||
"toggle-recipe": "Vaihda osio"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Reseptin etsijä",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Paina '/'",
|
||||
"advanced": "Lisäasetukset",
|
||||
"auto-search": "Automaattinen Haku",
|
||||
"no-results": "Ei tuloksia"
|
||||
"no-results": "Ei tuloksia",
|
||||
"type-to-search": "Kirjoita haettavaksi..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Lisää uusi teema",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"forgot-password": "Unohditko salasanasi",
|
||||
"forgot-password-text": "Syötä sähköpostiosoitteesi, niin voit muuttaa salasanaasi linkin kautta.",
|
||||
"changes-reflected-immediately": "Muutokset tähän käyttäjään astuvat välittömästi voimaan.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Oletus Toiminta",
|
||||
"default-activity-hint": "Valitse haluamasi sivu, johon haluat navigoida kirjautuessasi tältä laitteelta"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "käännetty",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Petit-déjeuner",
|
||||
"lunch": "Déjeuner",
|
||||
"dinner": "Souper",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Tous",
|
||||
"day-any": "Tous",
|
||||
"editor": "Éditeur",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importer une recette par son URL",
|
||||
"create-manually": "Créer une recette manuellement",
|
||||
"make-recipe-image": "Faire de cette image l’image de recette",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Ajouter un aliment",
|
||||
"add-recipe": "Ajouter une recette"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Page introuvable",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Recette supprimée",
|
||||
"recipe-image": "Image de la recette",
|
||||
"recipe-image-updated": "L’image de la recette a été mise à jour",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Supprimer l'image de la recette",
|
||||
"delete-image-confirmation": "Êtes-vous sûr de vouloir supprimer l'image de cette recette ?",
|
||||
"recipe-image-deleted": "L’image de la recette a été supprimée",
|
||||
"recipe-name": "Nom de la recette",
|
||||
"recipe-settings": "Paramètres de la recette",
|
||||
"recipe-update-failed": "La mise à jour de la recette a échoué",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Choisissez une unité",
|
||||
"press-enter-to-create": "Clique sur Entrer pour créer",
|
||||
"choose-food": "Choisissez un aliment",
|
||||
"choose-recipe": "Choisissez la recette",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Activer/Désactiver la section",
|
||||
"see-original-text": "Afficher le texte original",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Je l’ai cuisiné",
|
||||
"how-did-it-turn-out": "C’était bon ?",
|
||||
"user-made-this": "{user} l’a cuisiné",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Fait pour {recipe}",
|
||||
"added-to-timeline": "Ajouté à la ligne du temps",
|
||||
"failed-to-add-to-timeline": "Impossible d'ajouter à la ligne du temps",
|
||||
"failed-to-update-recipe": "Impossible de modifier la recette",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Essayez l’importateur de masse",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Vous avez des données brutes en HTML ou JSON ?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Vous pouvez directement importer des données brutes",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importer les mots-clés d'origine en tant que tags",
|
||||
"stay-in-edit-mode": "Rester en mode édition",
|
||||
"parse-recipe-ingredients-after-import": "Analyser les ingrédients de la recette après l'import",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Télécharger d'autres images",
|
||||
"set-as-cover-image": "Définir comme image de couverture de recette",
|
||||
"cover-image": "Image de couverture",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Inclure les recettes liées",
|
||||
"include-linked-recipe-ingredients": "Inclure les ingrédients de la recette liée",
|
||||
"toggle-recipe": "Afficher/Masquer la recette"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Recherche de recette",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Appuyez sur « /»",
|
||||
"advanced": "Avancé",
|
||||
"auto-search": "Recherche automatique",
|
||||
"no-results": "Aucun résultat trouvé"
|
||||
"no-results": "Aucun résultat trouvé",
|
||||
"type-to-search": "Tapez pour chercher..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Ajouter un nouveau thème",
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
"category-events": "Événements de catégories",
|
||||
"when-a-new-user-joins-your-group": "Lorsqu'un nouvel utilisateur rejoint votre groupe",
|
||||
"recipe-events": "Événements de recette",
|
||||
"label-events": "Étiquette des événements"
|
||||
"label-events": "Libellé des événements"
|
||||
},
|
||||
"general": {
|
||||
"add": "Ajouter",
|
||||
@@ -198,7 +198,7 @@
|
||||
"copy": "Copier",
|
||||
"color": "Couleur",
|
||||
"timestamp": "Horodatage",
|
||||
"last-made": "Cuisiné le",
|
||||
"last-made": "Cuisinée le",
|
||||
"learn-more": "En savoir plus",
|
||||
"this-feature-is-currently-inactive": "Cette fonctionnalité est actuellement inactive",
|
||||
"clipboard-not-supported": "Presse-papier non supporté",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Petit déjeuner",
|
||||
"lunch": "Dîner",
|
||||
"dinner": "Souper",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Tous",
|
||||
"day-any": "Tous",
|
||||
"editor": "Éditeur",
|
||||
@@ -375,7 +378,7 @@
|
||||
"recipe-migration": "Migrer les recettes",
|
||||
"chowdown": {
|
||||
"description": "Importer des recettes depuis Chowdown",
|
||||
"description-long": "Mealie supporte nativement le format du dépôt chowdown. Téléchargez le dépôt de code en tant que fichier .zip et téléchargez-le ci-dessous.",
|
||||
"description-long": "Mealie supporte nativement le format du dépôt chowdown. Téléchargez le dépôt de code en tant que fichier .zip et téléverser-le ci-dessous.",
|
||||
"title": "Chowdown"
|
||||
},
|
||||
"nextcloud": {
|
||||
@@ -384,23 +387,23 @@
|
||||
"title": "Nextcloud Cookbook"
|
||||
},
|
||||
"copymethat": {
|
||||
"description-long": "Mealie peut importer des recettes à partir de Copy Me That. Exportez vos recettes au format HTML, puis téléchargez le .zip ci-dessous.",
|
||||
"description-long": "Mealie peut importer des recettes à partir de Copy Me That. Exportez vos recettes au format HTML, puis téléverser-le .zip ci-dessous.",
|
||||
"title": "Gestionnaire de recettes Copy Me That"
|
||||
},
|
||||
"paprika": {
|
||||
"description-long": "Mealie peut importer des recettes depuis l'application Paprika. Exportez vos recettes de paprika, renommez l'extension d'exportation en .zip et téléchargez-les ci-dessous.",
|
||||
"description-long": "Mealie peut importer des recettes depuis l'application Paprika. Exportez vos recettes de paprika, renommez l'extension d'exportation en .zip et téléverser-les ci-dessous.",
|
||||
"title": "Gestionnaire de recettes Paprika"
|
||||
},
|
||||
"mealie-pre-v1": {
|
||||
"description-long": "Mealie peut importer des recettes depuis l'application Mealie depuis une version antérieure à 1.0. Exportez vos recettes depuis votre ancienne instance, et téléchargez le fichier zip ci-dessous. Notez que seules les recettes peuvent être importées à partir de l'exportation.",
|
||||
"description-long": "Mealie peut importer des recettes depuis l'application Mealie depuis une version antérieure à 1.0. Exportez vos recettes depuis votre ancienne instance, et téléverser-le fichier zip ci-dessous. Notez que seules les recettes peuvent être importées à partir de l'exportation.",
|
||||
"title": "Mealie Pré-1.0"
|
||||
},
|
||||
"tandoor": {
|
||||
"description-long": "Mealie peut importer des recettes à partir de Tandoor. Exportez vos données dans le format « Défaut », puis téléchargez le .zip ci-dessous.",
|
||||
"description-long": "Mealie peut importer des recettes à partir de Tandoor. Exportez vos données dans le format « Défaut », puis téléverser-le .zip ci-dessous.",
|
||||
"title": "Recettes Tandoor"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie peut importer des recettes de DVO Cook'n X3. Exportez un livre de recettes ou un menu au format \"Cook'n\", renommez l'extension d'exportation en .zip, puis téléchargez le .zip ci-dessous.",
|
||||
"description-long": "Mealie peut importer des recettes de DVO Cook'n X3. Exportez un livre de recettes ou un menu au format \"Cook'n\", renommez l'extension d'exportation en .zip, puis téléverser-le .zip ci-dessous.",
|
||||
"title": "DVO Cook'n X3"
|
||||
},
|
||||
"recipe-data-migrations": "Migration des données de recettes",
|
||||
@@ -409,22 +412,22 @@
|
||||
"choose-migration-type": "Choisissez le type de migration",
|
||||
"tag-all-recipes": "Étiquetez toutes les recettes avec le mot-clé {tag-name}",
|
||||
"nextcloud-text": "Les recettes Nextcloud peuvent être importées depuis un fichier zip qui contient les données stockées dans Nextcloud. Consultez la structure de dossiers d'exemple ci-dessous pour vous assurer que vos recettes peuvent être importées.",
|
||||
"chowdown-text": "Mealie prend en charge nativement le format de dépôt chowdown. Téléchargez le dépôt de code en tant que fichier .zip et téléchargez-le ci-dessous.",
|
||||
"chowdown-text": "Mealie prend en charge nativement le format de dépôt chowdown. Téléchargez le dépôt de code en tant que fichier .zip et téléverser-le ci-dessous.",
|
||||
"recipe-1": "Recette 1",
|
||||
"recipe-2": "Recette 2",
|
||||
"paprika-text": "Mealie peut importer des recettes depuis l'application Paprika. Exportez vos recettes de paprika, renommez l'extension d'exportation en .zip et téléchargez-les ci-dessous.",
|
||||
"mealie-text": "Mealie peut importer des recettes depuis l'application Mealie depuis une version antérieure à 1.0. Exportez vos recettes depuis votre ancienne instance, et téléchargez le fichier zip ci-dessous. Notez que seules les recettes peuvent être importées à partir de l'exportation.",
|
||||
"paprika-text": "Mealie peut importer des recettes depuis l'application Paprika. Exportez vos recettes de paprika, renommez l'extension d'exportation en .zip et téléverser-les ci-dessous.",
|
||||
"mealie-text": "Mealie peut importer des recettes depuis l'application Mealie depuis une version antérieure à 1.0. Exportez vos recettes depuis votre ancienne instance, et téléverser-le fichier zip ci-dessous. Notez que seules les recettes peuvent être importées à partir de l'exportation.",
|
||||
"plantoeat": {
|
||||
"title": "Plan to Eat",
|
||||
"description-long": "Mealie peut importer des recettes depuis Plan to Eat."
|
||||
},
|
||||
"myrecipebox": {
|
||||
"title": "My Recipe Box",
|
||||
"description-long": "Mealie peut importer des recettes depuis My Recipe Box. Exportez vos recettes au format CSV, puis téléchargez le fichier CSV ci-dessous."
|
||||
"description-long": "Mealie peut importer des recettes depuis My Recipe Box. Exportez vos recettes au format CSV, puis téléverser-le fichier CSV ci-dessous."
|
||||
},
|
||||
"recipekeeper": {
|
||||
"title": "Recipe Keeper",
|
||||
"description-long": "Mealie peut importer des recettes depuis Recipe Keeper. Exportez vos recettes au format Zip, puis téléversez le fichier .zip ci-dessous."
|
||||
"description-long": "Mealie peut importer des recettes depuis Recipe Keeper. Exportez vos recettes au format Zip, puis téléverser-le fichier .zip ci-dessous."
|
||||
}
|
||||
},
|
||||
"new-recipe": {
|
||||
@@ -440,7 +443,7 @@
|
||||
"recipe-url": "Adresse de la recette",
|
||||
"recipe-html-or-json": "Recette HTML ou JSON",
|
||||
"upload-a-recipe": "Télécharger une recette",
|
||||
"upload-individual-zip-file": "Chargez un fichier .zip exporté depuis une autre instance Mealie.",
|
||||
"upload-individual-zip-file": "Téléverser un fichier .zip exporté depuis une autre instance Mealie.",
|
||||
"url-form-hint": "Copiez et collez un lien depuis votre site de recettes favori",
|
||||
"view-scraped-data": "Voir les données récupérées",
|
||||
"trim-whitespace-description": "Ajuster les espaces de début et de fin ainsi que les lignes vides",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importer une recette par son URL",
|
||||
"create-manually": "Créer une recette manuellement",
|
||||
"make-recipe-image": "Faire de cette image l’image de recette",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Ajouter un aliment",
|
||||
"add-recipe": "Ajouter une recette"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Page introuvable",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Recette supprimée",
|
||||
"recipe-image": "Image de la recette",
|
||||
"recipe-image-updated": "L'image de la recette a été mise à jour",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Supprimer l'image de la recette",
|
||||
"delete-image-confirmation": "Êtes-vous sûr(e) de vouloir supprimer l'image de cette recette?",
|
||||
"recipe-image-deleted": "L'image de la recette a été supprimée",
|
||||
"recipe-name": "Nom de la recette",
|
||||
"recipe-settings": "Paramètres de la recette",
|
||||
"recipe-update-failed": "La mise à jour de la recette a échoué",
|
||||
@@ -560,17 +563,18 @@
|
||||
"failed-to-add-to-list": "Ajout dans la liste en échec",
|
||||
"yield": "Rendement",
|
||||
"yields-amount-with-text": "Produit {amount} {text}",
|
||||
"yield-text": "Unité",
|
||||
"yield-text": "Unité du rendement",
|
||||
"quantity": "Quantité",
|
||||
"choose-unit": "Choisir une unité",
|
||||
"press-enter-to-create": "Clique sur Entrer pour créer",
|
||||
"choose-food": "Choisir un aliment",
|
||||
"choose-recipe": "Choisir une recette",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Activer/désactiver la section",
|
||||
"see-original-text": "Afficher le texte original",
|
||||
"original-text-with-value": "Texte original: {originalText}",
|
||||
"ingredient-linker": "Association d’ingrédients",
|
||||
"unlinked": "Pas encore associée",
|
||||
"unlinked": "Pas encore lié",
|
||||
"linked-to-other-step": "Lié à une autre étape",
|
||||
"auto": "Auto",
|
||||
"cook-mode": "Mode Cuisine",
|
||||
@@ -592,10 +596,10 @@
|
||||
"made-this": "Je l’ai cuisiné",
|
||||
"how-did-it-turn-out": "C’était bon ?",
|
||||
"user-made-this": "{user} l’a cuisiné",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Cuisinée pour {recipe}",
|
||||
"added-to-timeline": "Ajouté à l’historique",
|
||||
"failed-to-add-to-timeline": "Ajout dans l’historique en échec",
|
||||
"failed-to-update-recipe": "Impossible de mettre à jour la recette",
|
||||
"failed-to-add-to-timeline": "Échec d'ajout à l'historique",
|
||||
"failed-to-update-recipe": "Échec de la mise à jour de la recette",
|
||||
"added-to-timeline-but-failed-to-add-image": "Ajouté à l’historique, mais impossible d’ajouter l’image",
|
||||
"api-extras-description": "Les suppléments des recettes sont une fonctionnalité clé de l’API Mealie. Ils permettent de créer des paires JSON clé/valeur personnalisées dans une recette, qui peuvent être référencées depuis des applications tierces. Ces clés peuvent être utilisées par exemple pour déclencher des tâches automatisées ou des messages personnalisés à transmettre à l’appareil souhaité.",
|
||||
"message-key": "Clé de message",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Essayez l’importateur de masse",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Vous avez des données brutes en HTML ou JSON ?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Vous pouvez directement importer des données brutes",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importer les mots-clés d'origine en tant que tags",
|
||||
"stay-in-edit-mode": "Rester en mode édition",
|
||||
"parse-recipe-ingredients-after-import": "Analyser les ingrédients de la recette après l'import",
|
||||
@@ -642,8 +648,8 @@
|
||||
"json-import-format-description-colon": "Pour importer via JSON, le format doit être valide :",
|
||||
"json-editor": "Éditeur JSON",
|
||||
"zip-files-must-have-been-exported-from-mealie": "Les fichiers .zip doivent avoir été exportés depuis Mealie",
|
||||
"create-a-recipe-by-uploading-a-scan": "Créer une recette en envoyant un scan.",
|
||||
"upload-a-png-image-from-a-recipe-book": "Importer une image png d'un livre de recettes",
|
||||
"create-a-recipe-by-uploading-a-scan": "Créer une recette en téléversant une image numérisée.",
|
||||
"upload-a-png-image-from-a-recipe-book": "Téléverser une image png d'un livre de recettes",
|
||||
"recipe-bulk-importer": "Importation en masse de recettes",
|
||||
"recipe-bulk-importer-description": "L'importateur en masse de recettes vous permet d'importer plusieurs recettes à la fois en lançant l'import en arrière-plan. Cela peut être utile lors de la migration vers Mealie, ou lorsque vous voulez importer un grand nombre de recettes.",
|
||||
"set-categories-and-tags": "Définir des catégories et des étiquettes",
|
||||
@@ -658,8 +664,8 @@
|
||||
"debug": "Déboguer",
|
||||
"tree-view": "Vue en arborescence",
|
||||
"recipe-servings": "Portions de la recette",
|
||||
"recipe-yield": "Nombre de parts",
|
||||
"recipe-yield-text": "Unité",
|
||||
"recipe-yield": "Rendement",
|
||||
"recipe-yield-text": "Unité du rendement",
|
||||
"unit": "Unité",
|
||||
"upload-image": "Ajouter une image",
|
||||
"screen-awake": "Garder l’écran allumé",
|
||||
@@ -685,19 +691,19 @@
|
||||
"confidence-score": "Score de confiance",
|
||||
"ingredient-parser-description": "Vos ingrédients ont été analysés avec succès. Veuillez vérifier les ingrédients dont nous ne sommes pas certains.",
|
||||
"ingredient-parser-final-review-description": "Une fois que tous les ingrédients ont été analysés, vous aurez encore une chance de vérifier tous les ingrédients avant de les appliquer à votre recette.",
|
||||
"add-text-as-alias-for-item": "Ajouter \"{text}\" comme alias pour {item}",
|
||||
"add-text-as-alias-for-item": "Ajouter \"{text}\" comme un alias pour {item}",
|
||||
"delete-item": "Supprimer l'élément"
|
||||
},
|
||||
"reset-servings-count": "Réinitialiser le nombre de portions",
|
||||
"not-linked-ingredients": "Ingrédients supplémentaires",
|
||||
"upload-another-image": "Télécharger une autre image",
|
||||
"upload-images": "Télécharger des images",
|
||||
"upload-more-images": "Télécharger d'autres images",
|
||||
"upload-another-image": "Téléverser une autre image",
|
||||
"upload-images": "Téléverser des images",
|
||||
"upload-more-images": "Téléverser d'autres images",
|
||||
"set-as-cover-image": "Définir comme image de couverture de la recette",
|
||||
"cover-image": "Image de couverture",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Inclure les recettes liées",
|
||||
"include-linked-recipe-ingredients": "Inclure les ingrédients de la recette liée",
|
||||
"toggle-recipe": "Activer/désactiver la recette"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Recherche de recette",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Appuyez sur « /»",
|
||||
"advanced": "Avancé",
|
||||
"auto-search": "Recherche automatique",
|
||||
"no-results": "Pas de résultats trouvés"
|
||||
"no-results": "Pas de résultats trouvés",
|
||||
"type-to-search": "Tapez pour chercher..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Ajouter un nouveau thème",
|
||||
@@ -1073,7 +1080,7 @@
|
||||
"forgot-password": "Mot de passe oublié",
|
||||
"forgot-password-text": "Veuillez entrer votre adresse e-mail. Un e-mail vous sera envoyé afin de réinitialiser votre mot de passe.",
|
||||
"changes-reflected-immediately": "Les changements apportés à cet utilisateur seront immédiatement pris en compte.",
|
||||
"default-activity": "Activité par défaut ",
|
||||
"default-activity": "Activité principale",
|
||||
"default-activity-hint": "Sélectionnez la page que vous souhaitez ouvrir lors de la connexion sur cet appareil"
|
||||
},
|
||||
"language-dialog": {
|
||||
@@ -1343,7 +1350,7 @@
|
||||
"household-statistics": "Statistiques du foyer",
|
||||
"household-statistics-description": "Vos statistiques du foyer fournissent un aperçu sur la façon dont vous utilisez Mealie.",
|
||||
"storage-capacity": "Capacité de stockage",
|
||||
"storage-capacity-description": "Votre capacité de stockage est un calcul des images et des ressources que vous avez téléchargées.",
|
||||
"storage-capacity-description": "Votre capacité de stockage est un calcul des images et des ressources que vous avez téléversées.",
|
||||
"personal": "Personnel",
|
||||
"personal-description": "Il s'agit de paramètres qui vous sont personnels. Les modifications ici n'affecteront pas les autres utilisateurs.",
|
||||
"user-settings": "Paramètres utilisateur",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Petit-déjeuner",
|
||||
"lunch": "Déjeuner",
|
||||
"dinner": "Dîner",
|
||||
"snack": "Goûter",
|
||||
"drink": "Boissons",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Tous",
|
||||
"day-any": "Tous",
|
||||
"editor": "Éditeur",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importer une recette par son URL",
|
||||
"create-manually": "Créer une recette manuellement",
|
||||
"make-recipe-image": "Faire de cette image l’image de recette",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Ajouter un aliment",
|
||||
"add-recipe": "Ajouter une recette"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Page introuvable",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Recette supprimée",
|
||||
"recipe-image": "Image de la recette",
|
||||
"recipe-image-updated": "L’image de la recette a été mise à jour",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Supprimer l'image de la recette",
|
||||
"delete-image-confirmation": "Êtes-vous sûr de vouloir supprimer l'image de cette recette ?",
|
||||
"recipe-image-deleted": "L’image de la recette a été supprimée",
|
||||
"recipe-name": "Nom de la recette",
|
||||
"recipe-settings": "Paramètres de la recette",
|
||||
"recipe-update-failed": "La mise à jour de la recette a échoué",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Choisissez une unité",
|
||||
"press-enter-to-create": "Clique sur Entrer pour créer",
|
||||
"choose-food": "Choisissez un aliment",
|
||||
"choose-recipe": "Choisissez la recette",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Activer/Désactiver la section",
|
||||
"see-original-text": "Afficher le texte original",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Je l’ai cuisiné",
|
||||
"how-did-it-turn-out": "C’était bon ?",
|
||||
"user-made-this": "{user} l’a cuisiné",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Fait pour {recipe}",
|
||||
"added-to-timeline": "Ajouté à l’historique",
|
||||
"failed-to-add-to-timeline": "Ajout dans l’historique en échec",
|
||||
"failed-to-update-recipe": "Impossible de mettre à jour la recette",
|
||||
@@ -627,11 +631,13 @@
|
||||
"create-a-recipe-by-providing-the-name-all-recipes-must-have-unique-names": "Créer une recette en fournissant le nom. Toutes les recettes doivent avoir des noms uniques.",
|
||||
"new-recipe-names-must-be-unique": "Les noms de nouvelles recettes doivent être uniques",
|
||||
"scrape-recipe": "Récupérer une recette",
|
||||
"scrape-recipe-description": "Récupérer une recette par URL. Fournissez l'URL de la page que vous voulez récupérer, et Mealie essaiera d'en extraire la recette pour l'ajouter à votre collection.",
|
||||
"scrape-recipe-description": "Récupérer une recette par URL. Fournissez l'URL de la page que vous voulez récupérer et Mealie essaiera d'en extraire la recette pour l'ajouter à votre collection.",
|
||||
"scrape-recipe-have-a-lot-of-recipes": "Vous avez un tas de recettes à récupérer d’un coup ?",
|
||||
"scrape-recipe-suggest-bulk-importer": "Essayez l’importateur de masse",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Vous avez des données brutes en HTML ou JSON ?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Vous pouvez directement importer des données brutes",
|
||||
"scrape-recipe-website-being-blocked": "Le site web est bloqué ?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Essayez plutôt d'importer le code HTML brut.",
|
||||
"import-original-keywords-as-tags": "Importer les mots-clés d'origine en tant que tags",
|
||||
"stay-in-edit-mode": "Rester en mode édition",
|
||||
"parse-recipe-ingredients-after-import": "Analyser les ingrédients de la recette après l'import",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Télécharger d'autres images",
|
||||
"set-as-cover-image": "Définir comme image de couverture de la recette",
|
||||
"cover-image": "Image de couverture",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Inclure les recettes liées",
|
||||
"include-linked-recipe-ingredients": "Inclure les ingrédients de la recette liée",
|
||||
"toggle-recipe": "Afficher/Masquer la recette"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Recherche de recette",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Appuyez sur « /»",
|
||||
"advanced": "Avancé",
|
||||
"auto-search": "Recherche automatique",
|
||||
"no-results": "Aucun résultat trouvé"
|
||||
"no-results": "Aucun résultat trouvé",
|
||||
"type-to-search": "Tapez pour chercher..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Ajouter un nouveau thème",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Almorzo",
|
||||
"lunch": "Xantar",
|
||||
"dinner": "Cea",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Calquera",
|
||||
"day-any": "Calquera",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Escolla Unidade",
|
||||
"press-enter-to-create": "Prema 'Enter' para Crear",
|
||||
"choose-food": "Escoller Alimento",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notas",
|
||||
"toggle-section": "Alternar Sección",
|
||||
"see-original-text": "Mostrar Texto Orixinal",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prove o importador en masa",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Ten datos HTML ou JSON en bruto?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "É posível importar diretamente a partir de datos en bruto",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importar palavras-chave orixinais como etiquetas",
|
||||
"stay-in-edit-mode": "Permanecer no modo de edición",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Prema '/'",
|
||||
"advanced": "Avanzado",
|
||||
"auto-search": "Pesquisa Automática",
|
||||
"no-results": "Nengun resultado encontrado"
|
||||
"no-results": "Nengun resultado encontrado",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Adicionar novo tema",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "ארוחת בוקר",
|
||||
"lunch": "ארוחת צהריים",
|
||||
"dinner": "ארוחת ערב",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "הכל",
|
||||
"day-any": "הכל",
|
||||
"editor": "עורך",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "ייבוא מתכון באמצעות לינק",
|
||||
"create-manually": "יצירת מתכון ידנית",
|
||||
"make-recipe-image": "הפוך תמונה זאת לתמונת המתכון",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "הוסף מאכל",
|
||||
"add-recipe": "הוסף מתכון"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 העמוד אינו נמצא",
|
||||
@@ -480,7 +483,7 @@
|
||||
"comment": "הערה",
|
||||
"comments": "הערות",
|
||||
"delete-confirmation": "למחוק את המתכון הזה?",
|
||||
"admin-delete-confirmation": "You're about to delete a recipe that isn't yours using admin permissions. Are you sure?",
|
||||
"admin-delete-confirmation": "אתה עומד למחוק מתכון שאינו שלך באמצעות הרשאות מנהל. האם אתה בטוח?",
|
||||
"delete-recipe": "מחיקת מתכון",
|
||||
"description": "תיאור",
|
||||
"disable-amount": "ביטול כמויות מרכיבים",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "מתכון נמחק",
|
||||
"recipe-image": "תמונת המתכון",
|
||||
"recipe-image-updated": "תמונת המתכון עודכנה",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "מחק תמונת מתכון",
|
||||
"delete-image-confirmation": "האם אתה בטוח שאתה רוצה למחוק את תמונת המתכון?",
|
||||
"recipe-image-deleted": "תמונת מתכון נמחקה",
|
||||
"recipe-name": "שם המתכון",
|
||||
"recipe-settings": "הגדרות המתכון",
|
||||
"recipe-update-failed": "עדכון מתכון נכשל",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "בחירת יחידת מידה",
|
||||
"press-enter-to-create": "הקש Enter כדי להוסיף",
|
||||
"choose-food": "בחר מזון",
|
||||
"choose-recipe": "בחר מתכון",
|
||||
"notes": "הערות",
|
||||
"toggle-section": "צור כותרת",
|
||||
"see-original-text": "הטקסט המקורי",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "נסה את יכולת קריאת רשימה",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "יש לך מידע גולמי ב-HTML או JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "ניתן לייבא ישירות ממידע גולמי",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "ייבוא שמות מפתח מקוריות כתגיות",
|
||||
"stay-in-edit-mode": "השאר במצב עריכה",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "לחץ '/'",
|
||||
"advanced": "מתקדם",
|
||||
"auto-search": "חיפוש אוטומטי",
|
||||
"no-results": "לא נמצאו תוצאות"
|
||||
"no-results": "לא נמצאו תוצאות",
|
||||
"type-to-search": "הקלד לחיפוש..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "הוסף ערכת נושא חדשה",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Doručak",
|
||||
"lunch": "Ručak",
|
||||
"dinner": "Večera",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Bilo koji",
|
||||
"day-any": "Bilo koji",
|
||||
"editor": "Urednik",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Odaberi Jedinicu",
|
||||
"press-enter-to-create": "Pritisni Enter za Kreiranje",
|
||||
"choose-food": "Odaberi Hranu",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Bilješke",
|
||||
"toggle-section": "Preklopi Odjeljak",
|
||||
"see-original-text": "Prikaži Izvorni Tekst",
|
||||
@@ -577,7 +581,7 @@
|
||||
"link-ingredients": "Poveži Sastojke",
|
||||
"merge-above": "Spoji prethodni korak",
|
||||
"move-to-bottom": "Move To Bottom",
|
||||
"move-to-top": "Move To Top",
|
||||
"move-to-top": "Na vrh",
|
||||
"reset-scale": "Vrati skaliranje na stare postavke",
|
||||
"decrease-scale-label": "Smanji skaliranje za 1",
|
||||
"increase-scale-label": "Povećaj skaliranje za 1",
|
||||
@@ -586,17 +590,17 @@
|
||||
"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!",
|
||||
"timeline-no-events-found-try-adjusting-filters": "No events found. Try adjusting your search filters.",
|
||||
"timeline-no-events-found-try-adjusting-filters": "Nisu pronađeni događaji. Pokušaj promjeniti filtere za pretragu.",
|
||||
"group-global-timeline": "{groupName} Globalna vremenska crta",
|
||||
"open-timeline": "Otvori Vremensku Crtu",
|
||||
"made-this": "Napravio/la sam ovo",
|
||||
"how-did-it-turn-out": "Kako je ispalo?",
|
||||
"user-made-this": "{user} je napravio/la ovo",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"added-to-timeline": "Added to timeline",
|
||||
"failed-to-add-to-timeline": "Failed to add to timeline",
|
||||
"failed-to-update-recipe": "Failed to update recipe",
|
||||
"added-to-timeline-but-failed-to-add-image": "Added to timeline, but failed to add image",
|
||||
"made-for-recipe": "Napravljeno za {recipe}",
|
||||
"added-to-timeline": "Dodano na vremensku crtu",
|
||||
"failed-to-add-to-timeline": "Neuspješno dodavanje na vremensku crtu",
|
||||
"failed-to-update-recipe": "Neuspješno ažuriranje recepta",
|
||||
"added-to-timeline-but-failed-to-add-image": "Dodano na vremensku crtu, no nije uspjelo dodavanje fotografije",
|
||||
"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": "Ključ poruke",
|
||||
"parse": "Razluči (parsiraj)",
|
||||
@@ -612,33 +616,35 @@
|
||||
"looking-for-migrations": "Tražite migracije?",
|
||||
"import-with-url": "Učitaj preko URL-a",
|
||||
"create-recipe": "Kreiraj recept",
|
||||
"create-recipe-description": "Create a new recipe from scratch.",
|
||||
"create-recipe-description": "Izradi novi recept od početka",
|
||||
"create-recipes": "Kreiraj recept",
|
||||
"import-with-zip": "Učitaj pomoću .zip-a",
|
||||
"create-recipe-from-an-image": "Create Recipe from an Image",
|
||||
"create-recipe-from-an-image-description": "Create a recipe by uploading an image of it. Mealie will attempt to extract the text from the image using AI and create a recipe from it.",
|
||||
"crop-and-rotate-the-image": "Crop and rotate the image so that only the text is visible, and it's in the correct orientation.",
|
||||
"create-from-images": "Create from Images",
|
||||
"should-translate-description": "Translate the recipe into my language",
|
||||
"please-wait-image-procesing": "Please wait, the image is processing. This may take some time.",
|
||||
"please-wait-images-processing": "Please wait, the images are processing. This may take some time.",
|
||||
"crop-and-rotate-the-image": "Obreži i rotiraj sliku tako da bude vidljiv samo tekst i da bude u ispravnoj orijentaciji.",
|
||||
"create-from-images": "Izradi na temelju fotografije",
|
||||
"should-translate-description": "Prevedi recept na moj jezik",
|
||||
"please-wait-image-procesing": "Molimo pričekajte, slika se obrađuje. Ovo može potrajati.",
|
||||
"please-wait-images-processing": "Molimo pričekajte, slike se obrađuju. Ovo može potrajati.",
|
||||
"bulk-url-import": "Uvoz više URL-ova",
|
||||
"debug-scraper": "Debugiranje skraper-a",
|
||||
"create-a-recipe-by-providing-the-name-all-recipes-must-have-unique-names": "Kreirajte recept pružajući naziv. Svi recepti moraju imati jedinstvena imena.",
|
||||
"new-recipe-names-must-be-unique": "Naziv novog recepta mora imati jedinstveno ime",
|
||||
"scrape-recipe": "Prikupi (skraperaj) recept",
|
||||
"scrape-recipe-description": "Prikupi (skraperaj) recept putem URL-a. Priložite URL web stranice s koje želite prikupiti recept, a Mealie će pokušati prikupiti recept s te stranice i dodati ga u vašu kolekciju.",
|
||||
"scrape-recipe-have-a-lot-of-recipes": "Have a lot of recipes you want to scrape at once?",
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-have-a-lot-of-recipes": "Imate puno recepata koje želite odjednom preuzeti?",
|
||||
"scrape-recipe-suggest-bulk-importer": "Isprobajte masovni uvoz",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Imate neobrađene HTML ili JSON podatke?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Možete uvesti iz neobrađenih podataka izravno",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Uvezi originalne ključne riječi kao oznake",
|
||||
"stay-in-edit-mode": "Ostanite u načinu uređivanja",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
"parse-recipe-ingredients-after-import": "Parsiranje sastojaka recepta nakon uvoza",
|
||||
"import-from-zip": "Uvoz iz Zip-a",
|
||||
"import-from-zip-description": "Uvezi pojedinačni recept koji je izvezen iz druge instance Mealie aplikacije.",
|
||||
"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.",
|
||||
"import-from-html-or-json": "Uvoz iz HTML-a ili JSON-a",
|
||||
"import-from-html-or-json-description": "Uvezite jedan recept iz neobrađenog HTML-a ili JSON-a. Ovo je korisno ako imate recept s web-stranice koju Mealie ne može normalno preuzeti ili iz nekog drugog vanjskog izvora.",
|
||||
"json-import-format-description-colon": "To import via JSON, it must be in valid format:",
|
||||
"json-editor": "JSON uređivač",
|
||||
"zip-files-must-have-been-exported-from-mealie": ".zip datoteke moraju biti izvezeni iz Mealie-a",
|
||||
@@ -712,7 +718,7 @@
|
||||
"max-missing-ingredients": "Max Missing Ingredients",
|
||||
"max-missing-tools": "Max Missing Tools",
|
||||
"selected-tools": "Selected Tools",
|
||||
"other-filters": "Other Filters",
|
||||
"other-filters": "Ostali filtri",
|
||||
"ready-to-make": "Ready to Make",
|
||||
"almost-ready-to-make": "Almost Ready to Make"
|
||||
},
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Pritisni '/'",
|
||||
"advanced": "Napredno",
|
||||
"auto-search": "Auto Pretraga",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Dodaj Novu Temu",
|
||||
@@ -1382,7 +1389,7 @@
|
||||
},
|
||||
"cookbook": {
|
||||
"cookbooks": "Zbirka recepata",
|
||||
"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.",
|
||||
"description": "Zbirke recepata su još jedan način organiziranja recepata stvaranjem presjeka recepata, organizatora i ostalih filtera. Izrada zbirke recepata dodat će stavku na bočnu traku, a svi recepti s odabranim filtrima bit će prikazani u zbirci recepata.",
|
||||
"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": "Javna zbirka recepata",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Reggeli",
|
||||
"lunch": "Ebéd",
|
||||
"dinner": "Vacsora",
|
||||
"snack": "Rágcsa",
|
||||
"drink": "Ital",
|
||||
"dessert": "Desszert",
|
||||
"type-any": "Bármely",
|
||||
"day-any": "Bármely",
|
||||
"editor": "Szerkesztő",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Recept importálása URL-cím alapján",
|
||||
"create-manually": "Recept kézi létrehozása",
|
||||
"make-recipe-image": "Ez legyen a recept képe",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Étel hozzáadása",
|
||||
"add-recipe": "Recept hozzáadása"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404. Az oldal nem található",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Recept törölve",
|
||||
"recipe-image": "Recept képe",
|
||||
"recipe-image-updated": "Recept képe frissítve",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Receptkép törlése",
|
||||
"delete-image-confirmation": "Biztosan törli ezt a receptképet?",
|
||||
"recipe-image-deleted": "Receptkép törölve",
|
||||
"recipe-name": "Recept neve",
|
||||
"recipe-settings": "Recept beállítások",
|
||||
"recipe-update-failed": "Recept frissítése sikertelen",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Válasszon mennyiségi egységet",
|
||||
"press-enter-to-create": "Üssön Enter-t a létrehozáshoz",
|
||||
"choose-food": "Étel kiválasztása",
|
||||
"choose-recipe": "Recept kiválasztása",
|
||||
"notes": "Megjegyzések",
|
||||
"toggle-section": "Szakaszcím megjelenítése/kikapcsolása",
|
||||
"see-original-text": "Eredeti szöveg megjelenítése",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Elkészítettem ezt",
|
||||
"how-did-it-turn-out": "Hogyan sikerült?",
|
||||
"user-made-this": "ezt {user} készítette el",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Készült {recipe} számára",
|
||||
"added-to-timeline": "Idővonalhoz hozzáadva",
|
||||
"failed-to-add-to-timeline": "Nem sikerült az idővonalhoz hozzáadni",
|
||||
"failed-to-update-recipe": "Nem sikerült frissíteni a receptet",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Próbálja ki a tömeges importálót",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Nyers HTML vagy JSON adatai vannak?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "A nyers adatokból közvetlenül is importálhat",
|
||||
"scrape-recipe-website-being-blocked": "A weboldal blokkolva van?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Próbálja meg inkább a nyers HTML-t importálni.",
|
||||
"import-original-keywords-as-tags": "Eredeti kulcsszavak importálása címkeként",
|
||||
"stay-in-edit-mode": "Maradjon Szerkesztés módban",
|
||||
"parse-recipe-ingredients-after-import": "Recept összetevőinek elemzése importálás után",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "További képek feltöltése",
|
||||
"set-as-cover-image": "Beállítás a recept borítóképének",
|
||||
"cover-image": "Borítókép",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Kapcsolódó receptek hozzáadása",
|
||||
"include-linked-recipe-ingredients": "Kapcsolódó recept hozzávalók hozzáadása",
|
||||
"toggle-recipe": "Recept váltása"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Receptkereső",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Üsse be '/'",
|
||||
"advanced": "Haladó mód",
|
||||
"auto-search": "Automatikus keresés",
|
||||
"no-results": "Nincs találat"
|
||||
"no-results": "Nincs találat",
|
||||
"type-to-search": "Írja be a keresett szót..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Új téma hozzáadása",
|
||||
|
||||
@@ -80,7 +80,7 @@
|
||||
"tag-events": "Merki viðburðir",
|
||||
"category-events": "Flokka viðburðir",
|
||||
"when-a-new-user-joins-your-group": "Þegar nýr notandi bætist við í þinn hóp",
|
||||
"recipe-events": "Uppskriftar viðburðir",
|
||||
"recipe-events": "Uppskriftarviðburðir",
|
||||
"label-events": "Merkja viðburð"
|
||||
},
|
||||
"general": {
|
||||
@@ -110,7 +110,7 @@
|
||||
"file-folder-not-found": "Skrá/mappe finnst ekki",
|
||||
"file-uploaded": "Skrá",
|
||||
"filter": "Sía",
|
||||
"friday": "Föstudagur",
|
||||
"friday": "Föstudag",
|
||||
"general": "Almennt",
|
||||
"get": "Sækja",
|
||||
"home": "Heim",
|
||||
@@ -126,7 +126,7 @@
|
||||
"loading-ocr-data": "Hleður OCR gögnum...",
|
||||
"loading-recipes": "Hleð uppskriftum",
|
||||
"message": "Skilaboð",
|
||||
"monday": "Mánudagur",
|
||||
"monday": "Mánudag",
|
||||
"name": "Nafn",
|
||||
"new": "Nýtt",
|
||||
"never": "Aldrei",
|
||||
@@ -144,7 +144,7 @@
|
||||
"recipes": "Uppskriftir",
|
||||
"rename-object": "Endurnefna {0}",
|
||||
"reset": "Endurstilla",
|
||||
"saturday": "Laugardagur",
|
||||
"saturday": "Laugardag",
|
||||
"save": "Vista",
|
||||
"settings": "Stillingar",
|
||||
"share": "Deila",
|
||||
@@ -158,22 +158,22 @@
|
||||
"subject": "Efni",
|
||||
"submit": "Staðfesta",
|
||||
"success-count": "Tókst: {count}",
|
||||
"sunday": "Sunnudagur",
|
||||
"sunday": "Sunnudag",
|
||||
"system": "Kerfi",
|
||||
"templates": "Sniðmót:",
|
||||
"test": "Prufa",
|
||||
"themes": "Þema",
|
||||
"thursday": "Fimmtudagur",
|
||||
"thursday": "Fimmtudag",
|
||||
"title": "Titill",
|
||||
"token": "Tóki",
|
||||
"tuesday": "Þriðjudagur",
|
||||
"tuesday": "Þriðjudag",
|
||||
"type": "Tegund",
|
||||
"update": "Uppfæra",
|
||||
"updated": "Uppfært",
|
||||
"upload": "Hlaða upp",
|
||||
"url": "URL",
|
||||
"view": "Skoða",
|
||||
"wednesday": "Miðvikudagur",
|
||||
"wednesday": "Miðvikudag",
|
||||
"yes": "Já",
|
||||
"foods": "Matvara",
|
||||
"units": "Mælieiningar",
|
||||
@@ -306,7 +306,7 @@
|
||||
"meal-plan": {
|
||||
"create-a-new-meal-plan": "Búa til nýtt matarplan",
|
||||
"update-this-meal-plan": "Uppfæra matarplan",
|
||||
"dinner-this-week": "Kvöldmaturinn í þessari viku",
|
||||
"dinner-this-week": "Kvöldmatur þessa viku",
|
||||
"dinner-today": "Kvöldmaturinn í dag",
|
||||
"dinner-tonight": "KVÖLDMATUR Í KVÖLD",
|
||||
"edit-meal-plan": "Breyta matarplani",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Morgunverður",
|
||||
"lunch": "Hádegisverður",
|
||||
"dinner": "Kvöldverður",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Allir",
|
||||
"day-any": "Alla",
|
||||
"editor": "Ritill",
|
||||
@@ -367,7 +370,7 @@
|
||||
"meal-plan-settings": "Stillingar matarplans"
|
||||
},
|
||||
"migration": {
|
||||
"migration-data-removed": "Flutningsgögn fjarlægð",
|
||||
"migration-data-removed": "Gagnaflutningur fjarlægður",
|
||||
"new-migration": "Ný flutningsgögn",
|
||||
"no-file-selected": "Engin skrá valin",
|
||||
"no-migration-data-available": "Engin gögn tiltæk",
|
||||
@@ -397,7 +400,7 @@
|
||||
},
|
||||
"tandoor": {
|
||||
"description-long": "Mealie getur flutt inn uppskriftir frá Tandoor. Flyttu út gögnin í sjálfgefnu formi svo hleður þú upp .zip skránni hér fyrir neðan.",
|
||||
"title": "Tandoor uppskriftir"
|
||||
"title": "Tandoor Recipes"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie getur flutt inn uppskriftir frá DVO Cook'n X3. Flyttu matreiðslubókina eða valmyndina í „Cook'n“ sniði, endurnefndu skráarendinguna í .zip og flyttu svo .zip skrána inn hér fyrir neðan.",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Hlaða inn uppskrift frá slóð",
|
||||
"create-manually": "Skrifa nýja uppskrift",
|
||||
"make-recipe-image": "Gera þessa að uppskriftar myndinni",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Bæta við matvöru",
|
||||
"add-recipe": "Bæta við uppskrift"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 síðan fannst ekki",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Uppskrift eytt",
|
||||
"recipe-image": "Mynd af uppskrift",
|
||||
"recipe-image-updated": "Mynd af uppskrift uppfærð",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Eyða mynd af uppskrift",
|
||||
"delete-image-confirmation": "Ertu viss um að þú viljir eyða myndinni úr uppskriftinni?",
|
||||
"recipe-image-deleted": "Mynd af uppskrift eytt",
|
||||
"recipe-name": "Nafn uppskriftar",
|
||||
"recipe-settings": "Stillingar uppskriftar",
|
||||
"recipe-update-failed": "Mistókst að uppfæra uppskrift",
|
||||
@@ -545,7 +548,7 @@
|
||||
"locked-by-owner": "Læst af eiganda",
|
||||
"join-the-conversation": "Taka þátt í samtalinu",
|
||||
"add-recipe-to-mealplan": "Bæta uppskrift við matarplan",
|
||||
"entry-type": "Entry Type",
|
||||
"entry-type": "Máltíðartegund",
|
||||
"date-format-hint": "MM/DD/ÁÁÁÁ snið",
|
||||
"date-format-hint-yyyy-mm-dd": "ÁÁÁÁ-MM-DD snið",
|
||||
"add-to-list": "Bæta á lista",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Veldu mælieiningu",
|
||||
"press-enter-to-create": "Ýttu á Enter til að stofna",
|
||||
"choose-food": "Veldu matvöru",
|
||||
"choose-recipe": "Veldu uppskrift",
|
||||
"notes": "Athugasemdir",
|
||||
"toggle-section": "Setja inn skiptingu",
|
||||
"see-original-text": "Sjá upprunalegan texta",
|
||||
@@ -609,7 +613,7 @@
|
||||
"edit-markdown": "Breyta markdown",
|
||||
"recipe-creation": "Setja inn uppskrift",
|
||||
"select-one-of-the-various-ways-to-create-a-recipe": "Veldu einn af möguleikunum til að setja inn uppskrift",
|
||||
"looking-for-migrations": "Ertu að leita af flutningsgögnum?",
|
||||
"looking-for-migrations": "Ertu að leita af gagnaflutningi?",
|
||||
"import-with-url": "Hlaða inn frá slóð",
|
||||
"create-recipe": "Stofna uppskrift",
|
||||
"create-recipe-description": "Stofna nýja uppskrift frá grunni.",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prófaðu að setja inn margar uppskriftir í einu",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Ertu með hrá HTML eða JSON gögn?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Það er hægt að hlaða inn hráum gögnum beint",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Nota upprunanleg merki",
|
||||
"stay-in-edit-mode": "Vera í breytingarham",
|
||||
"parse-recipe-ingredients-after-import": "Greina innhald uppskriftar eftir að búið er að hlaða inn uppskrift",
|
||||
@@ -697,7 +703,7 @@
|
||||
"cover-image": "Forsíðumynd",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"toggle-recipe": "Víxla uppskrift"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Uppskriftaleit",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Ýttu á '/'",
|
||||
"advanced": "Ítarlegt",
|
||||
"auto-search": "Sjálfvirk leit",
|
||||
"no-results": "Ekkert fannst"
|
||||
"no-results": "Ekkert fannst",
|
||||
"type-to-search": "Skrifa til að leita..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Bæta við nýju þema",
|
||||
@@ -781,7 +788,7 @@
|
||||
"latest": "Síðasta",
|
||||
"local-api": "Staðbundið API",
|
||||
"locale-settings": "Staðbundnar stillingar",
|
||||
"migrations": "Migrations",
|
||||
"migrations": "Gagnaflutningur",
|
||||
"new-page": "Ný síða",
|
||||
"notify": "Tilkynna",
|
||||
"organize": "Skipuleggja",
|
||||
@@ -841,7 +848,7 @@
|
||||
"webhooks": {
|
||||
"test-webhooks": "Test Webhooks",
|
||||
"the-urls-listed-below-will-recieve-webhooks-containing-the-recipe-data-for-the-meal-plan-on-its-scheduled-day-currently-webhooks-will-execute-at": "The URLs listed below will receive webhooks containing the recipe data for the meal plan on it's scheduled day. Currently Webhooks will execute at",
|
||||
"webhook-url": "Webhook URL",
|
||||
"webhook-url": "Vefkrækju URL",
|
||||
"webhooks-caps": "WEBHOOKS",
|
||||
"webhooks": "Webhook-vefkrækjur",
|
||||
"webhook-name": "Vefkrækju nafn",
|
||||
@@ -849,21 +856,21 @@
|
||||
},
|
||||
"bug-report": "Villu skýrsla",
|
||||
"bug-report-information": "Notaður þessar upplýsingar til að tilkynna um villu. Með því að veita þróunaraðilum upplýsingar um þína uppsetningu hjálpar þú þeim að leysa vandamálið hraðar.",
|
||||
"tracker": "Tracker",
|
||||
"configuration": "Configuration",
|
||||
"tracker": "Rekjari",
|
||||
"configuration": "Stillingar",
|
||||
"docker-volume": "Docker Volume",
|
||||
"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 krefst þess að bæði frontend gámur og backend deili sama docker volume og geymslu. Það tryggir að froentend gámur getir nálgast myndir og önnur gögn sem geymd eru á disknum.",
|
||||
"volumes-are-misconfigured": "Volumes are misconfigured.",
|
||||
"volumes-are-configured-correctly": "Volumes are configured correctly.",
|
||||
"status-unknown-try-running-a-validation": "Status Unknown. Try running a validation.",
|
||||
"validate": "Validate",
|
||||
"email-configuration-status": "Email Configuration Status",
|
||||
"email-configured": "Email Configured",
|
||||
"email-configuration-status": "Tölvupóstsstillingar",
|
||||
"email-configured": "Tölvupóstur stilltur",
|
||||
"email-test-results": "Email Test Results",
|
||||
"ready": "Ready",
|
||||
"not-ready": "Not Ready - Check Environmental Variables",
|
||||
"succeeded": "Succeeded",
|
||||
"failed": "Failed",
|
||||
"ready": "Tilbúið",
|
||||
"not-ready": "Ekki tilbúið - athugið umhverfisbreytur",
|
||||
"succeeded": "Tókst",
|
||||
"failed": "Mistókst",
|
||||
"general-about": "Upplýsingar",
|
||||
"application-version": "Útgáfa forrits",
|
||||
"application-version-error-text": "Útgáfan þín ({0}) er ekki sú sama og nýjasta útgáfan. Athugaðu hvort þú villt uppfæra í nýjustu útgáfuna ({1}).",
|
||||
@@ -907,29 +914,29 @@
|
||||
"copy-as-markdown": "Afrita sem markdown",
|
||||
"delete-checked": "Eyða völdum",
|
||||
"toggle-label-sort": "Toggle Label Sort",
|
||||
"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",
|
||||
"reorder-labels": "Endurraða merkimiðum",
|
||||
"uncheck-all-items": "Taka hak af öllum vörum",
|
||||
"check-all-items": "Setja hak á allar vörur",
|
||||
"linked-recipes-count": "Engar tengdar uppskriftir|Ein tengd uppskrift|{count} tengdar uppskriftir",
|
||||
"items-checked-count": "Engar matvörur merktar|Ein matvara merkt|{count} matvörur merktar",
|
||||
"no-label": "Engir merkimiðar",
|
||||
"completed-on": "Completed on {date}",
|
||||
"completed-on": "Klárað þann {date}",
|
||||
"you-are-offline": "Þú ert ekki nettengdur",
|
||||
"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?",
|
||||
"you-are-offline-description": "Ekki er hægt að framkvæma allt án nettengingar. Þú getur stofnað, breytt og eytt matvörum, en þú getur ekki samstillt breytingarnar þínar við þjóninn fyrr en tölvan er aftur orðin nettengd.",
|
||||
"are-you-sure-you-want-to-check-all-items": "Ertu viss um að þú viljir merkja við allar matvörurnar?",
|
||||
"are-you-sure-you-want-to-uncheck-all-items": "Ertu viss um að þú viljir taka merkingu af öllum matvörunum?",
|
||||
"are-you-sure-you-want-to-delete-checked-items": "Ertu viss um að þú viljir eyða öllum merktum matvörum?",
|
||||
"no-shopping-lists-found": "Enginn innkaupalisti fannst"
|
||||
},
|
||||
"sidebar": {
|
||||
"all-recipes": "All Recipes",
|
||||
"all-recipes": "Allar uppskriftir",
|
||||
"backups": "Öryggisafrit",
|
||||
"categories": "Flokkar",
|
||||
"cookbooks": "Cookbooks",
|
||||
"cookbooks": "Uppskriftabækur",
|
||||
"dashboard": "Dashboard",
|
||||
"home-page": "Home Page",
|
||||
"manage-users": "Manage Users",
|
||||
"migrations": "Migrations",
|
||||
"manage-users": "Umsjá notenda",
|
||||
"migrations": "Gagnaflutningur",
|
||||
"profile": "Notandaupplýsingar",
|
||||
"search": "Leita",
|
||||
"site-settings": "Kerfisstillingar",
|
||||
@@ -940,18 +947,18 @@
|
||||
"background-tasks": "Bakgrunnsverkefni",
|
||||
"parser": "Greinir",
|
||||
"developer": "Developer",
|
||||
"cookbook": "Cookbook",
|
||||
"create-cookbook": "Create a new cookbook"
|
||||
"cookbook": "Uppskriftarbók",
|
||||
"create-cookbook": "Stofna nýja uppskriftarbók"
|
||||
},
|
||||
"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",
|
||||
"error-signing-up": "Villa við að stofna aðgang",
|
||||
"sign-up": "Stofna aðgang",
|
||||
"sign-up-link-created": "Tengill til að stofna aðgang tilbúinn",
|
||||
"sign-up-link-creation-failed": "Mistókst að útbúa tengil til að stofna aðgang",
|
||||
"sign-up-links": "Tenglar til að stofna aðgang",
|
||||
"sign-up-token-deleted": "Aðgangslykli fyrir skráningu eytt",
|
||||
"sign-up-token-deletion-failed": "Mistókst að eyða aðgangslykli fyrir skráningu",
|
||||
"welcome-to-mealie": "Welcome to Mealie! To become a user of this instance you are required to have a valid invitation link. If you haven't recieved an invitation you are unable to sign-up. To recieve a link, contact the sites administrator."
|
||||
"welcome-to-mealie": "Velkominn í Mealie! Til að verða notandi af þessari síðu þá þarftu að hafa boðstengil. Ef þú hefur ekki fengið boð þá getur þú ekki skráð þig. Til að fá tengil hafðu þá samband við kerfisstjóra."
|
||||
},
|
||||
"tag": {
|
||||
"tag-created": "Merki stofnað",
|
||||
@@ -967,45 +974,45 @@
|
||||
"tag": "Merki"
|
||||
},
|
||||
"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",
|
||||
"tool": "Tool"
|
||||
"tools": "Áhöld",
|
||||
"on-hand": "Til á heimilinu",
|
||||
"create-a-tool": "Stofna áhald",
|
||||
"tool-name": "Nafn á áhaldi",
|
||||
"create-new-tool": "Stofna áhald",
|
||||
"on-hand-checkbox-label": "Merkja sem „til á heimilinu“",
|
||||
"required-tools": "Nauðsynlegt áhald",
|
||||
"tool": "Áhald"
|
||||
},
|
||||
"user": {
|
||||
"admin": "Stjórnandi",
|
||||
"are-you-sure-you-want-to-delete-the-link": "Are you sure you want to delete the link <b>{link}<b/>?",
|
||||
"are-you-sure-you-want-to-delete-the-user": "Are you sure you want to delete the user <b>{activeName} ID: {activeId}<b/>?",
|
||||
"auth-method": "Auth Method",
|
||||
"confirm-link-deletion": "Confirm Link Deletion",
|
||||
"are-you-sure-you-want-to-delete-the-link": "Ertu viss um að þú viljir eyða tenglinum <b>{link}<b/>?",
|
||||
"are-you-sure-you-want-to-delete-the-user": "Ertu viss um að þú viljir eyða notandanum <b>{activeName} ID: {activeId}<b/>?",
|
||||
"auth-method": "Auðkenningaraðferð",
|
||||
"confirm-link-deletion": "Staðfestu að eyða tenglinum",
|
||||
"confirm-password": "Staðfestu lykilorð",
|
||||
"confirm-user-deletion": "Confirm User Deletion",
|
||||
"confirm-user-deletion": "Staðfestu að eyða aðgangnum",
|
||||
"could-not-validate-credentials": "Could Not Validate Credentials",
|
||||
"create-link": "Create Link",
|
||||
"create-user": "Create User",
|
||||
"create-link": "Búa til tengil",
|
||||
"create-user": "Stofna notanda",
|
||||
"current-password": "Núverandi lykilorð",
|
||||
"e-mail-must-be-valid": "E-mail must be valid",
|
||||
"edit-user": "Edit User",
|
||||
"email": "Email",
|
||||
"error-cannot-delete-super-user": "Error! Cannot Delete Super User",
|
||||
"e-mail-must-be-valid": "Verður að nota gilt netfang",
|
||||
"edit-user": "Breyta notanda",
|
||||
"email": "Netfang",
|
||||
"error-cannot-delete-super-user": "Villa! Get ekki eytt ofur notanda",
|
||||
"existing-password-does-not-match": "Núverandi lykilorð stemmir ekki",
|
||||
"full-name": "Full Name",
|
||||
"full-name": "Fullt nafn",
|
||||
"generate-password-reset-link": "Gera tengil til að endurstilla lykilorð",
|
||||
"invite-only": "Invite Only",
|
||||
"invite-only": "Aðeins fyrir boðna",
|
||||
"link-id": "Link ID",
|
||||
"link-name": "Link Name",
|
||||
"login": "Login",
|
||||
"login-oidc": "Login with",
|
||||
"or": "or",
|
||||
"logout": "Logout",
|
||||
"login": "Innskráning",
|
||||
"login-oidc": "Innskáning með",
|
||||
"or": "eða",
|
||||
"logout": "Skrá út",
|
||||
"manage-users": "Manage Users",
|
||||
"manage-users-description": "Create and manage users.",
|
||||
"new-password": "Nýtt lykilorð",
|
||||
"new-user": "New User",
|
||||
"new-user": "Nýr notandi",
|
||||
"password-has-been-reset-to-the-default-password": "Lykilorð hefur verið endurstillt í sjálfgefið lykilorð",
|
||||
"password-must-match": "Lykilorð verða að vera eins",
|
||||
"password-reset-failed": "Mistókst að endurstilla lykilorð",
|
||||
@@ -1023,65 +1030,65 @@
|
||||
"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-id-with-value": "Notanda ID: {id}",
|
||||
"user-id": "Notanda ID",
|
||||
"user-password": "Lykilorð notanda",
|
||||
"user-successfully-logged-in": "User Successfully Logged In",
|
||||
"user-update-failed": "User update failed",
|
||||
"user-updated": "Notandaupplýsingar uppfærðar",
|
||||
"user": "User",
|
||||
"username": "Notandanafn",
|
||||
"users-header": "USERS",
|
||||
"users": "Users",
|
||||
"users-header": "NOTENDUR",
|
||||
"users": "Notendur",
|
||||
"user-not-found": "User not found",
|
||||
"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",
|
||||
"webhook-time": "Vefkrækju tími",
|
||||
"webhooks-enabled": "Vefkrækjur virkjaðar",
|
||||
"you-are-not-allowed-to-create-a-user": "Þú hefur ekki réttindi til að stofna notanda",
|
||||
"you-are-not-allowed-to-delete-this-user": "Þú hefur ekki réttindi til að eyða þessum notanda",
|
||||
"enable-advanced-content": "Virkja ítarlegt efni",
|
||||
"enable-advanced-content-description": "Virkja ítarlegt efni eins og að stækka uppskrift, API keys, vefkrækjur (Webhooks) og gagnastýring. Það er alltaf hægt að breyta þessu síðar",
|
||||
"favorite-recipes": "Favorite Recipes",
|
||||
"enable-advanced-content-description": "Virkjar ítarlegt efni eins og að stækka uppskrift, API keys, vefkrækjur (Webhooks) og gagnastýring. Það er alltaf hægt að breyta þessu síðar",
|
||||
"favorite-recipes": "Uppáhalds uppskriftir",
|
||||
"email-or-username": "Tölvupóstur eða notandanafn",
|
||||
"remember-me": "Remember Me",
|
||||
"remember-me": "Geyma innskráningarupplýsingar",
|
||||
"please-enter-your-email-and-password": "Vinsamlegast sláðu inn netfangið þitt og lykilorð",
|
||||
"invalid-credentials": "Invalid Credentials",
|
||||
"account-locked-please-try-again-later": "Account Locked. Please try again later",
|
||||
"user-favorites": "User Favorites",
|
||||
"invalid-credentials": "Ógild auðkenni",
|
||||
"account-locked-please-try-again-later": "Aðgangurinn lokaður, vinsamlegast reyndu aftur síðar",
|
||||
"user-favorites": "Uppáhald notanda",
|
||||
"password-strength-values": {
|
||||
"weak": "Veikt",
|
||||
"good": "Gott",
|
||||
"strong": "Sterkt",
|
||||
"very-strong": "Mjög sterkt"
|
||||
},
|
||||
"user-management": "User Management",
|
||||
"reset-locked-users": "Reset Locked Users",
|
||||
"user-management": "Umsjá með notendum",
|
||||
"reset-locked-users": "Endurstilla læstan notanda",
|
||||
"admin-user-creation": "Búa til stjórnandaaðgang",
|
||||
"admin-user-management": "Stjórna notendum",
|
||||
"user-details": "User Details",
|
||||
"user-name": "User Name",
|
||||
"authentication-method": "Authentication Method",
|
||||
"authentication-method-hint": "This specifies how a user will authenticate with Mealie. If you're not sure, choose 'Mealie'",
|
||||
"permissions": "Permissions",
|
||||
"user-details": "Upplýsingar um notanda",
|
||||
"user-name": "Notandanafn",
|
||||
"authentication-method": "Auðkenningaraðferð",
|
||||
"authentication-method-hint": "Þetta skilgreinir hvernig notandinn auðkennir sig við Mealie. Ef þú ert ekki viss veldu þá „Mealie“",
|
||||
"permissions": "Réttindi",
|
||||
"administrator": "Stjórnandi",
|
||||
"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",
|
||||
"user-can-invite-other-to-group": "Notandinn getur boðið öðrum í hóp",
|
||||
"user-can-manage-group": "Notandi getur stjórnað hóp",
|
||||
"user-can-manage-household": "Notandi getur stjórnað heimili",
|
||||
"user-can-organize-group-data": "Notandi getur stjórnað hóp gögnum",
|
||||
"enable-advanced-features": "Virkja ítarlega eiginleika",
|
||||
"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!",
|
||||
"it-looks-like-this-is-your-first-time-logging-in": "Það lítur út fyrir að þetta sé fyrsta skiptið sem þú skráir þig inn.",
|
||||
"dont-want-to-see-this-anymore-be-sure-to-change-your-email": "Ef þú villt ekki sjá þessi skilaboð aftur þá þarftu að breyta lykilorðinu þínu í notandastillingum.",
|
||||
"forgot-password": "Gleymt Lykilorð",
|
||||
"forgot-password-text": "Vinsamlegast sláðu inn netfangið þitt og við munum senda þér tengil til að endursetja lykilorðið þitt.",
|
||||
"changes-reflected-immediately": "Changes to this user will be reflected immediately.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"changes-reflected-immediately": "Breytingar á þessum notanda koma strax fram.",
|
||||
"default-activity": "Sjálfgefin upphafssíða",
|
||||
"default-activity-hint": "Veldu þá síðu sem þú vilt byrja á þegar þú skráir þig inn á þessu tæki"
|
||||
},
|
||||
"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": "þýtt",
|
||||
"choose-language": "Veldu tungumál",
|
||||
"select-description": "Veldu tungumálið fyrir notendaviðmótið. Stillingin mun bara gilda fyrir þig, ekki aðra notendur.",
|
||||
"how-to-contribute-description": "Vantar þýðingu á einhverju, er eitthvað vitlaust þýtt eða vantar tungumálið þitt á listann? {read-the-docs-link} um hvernig á að taka þátt!",
|
||||
"read-the-docs": "Lestu handbókina"
|
||||
},
|
||||
"data-pages": {
|
||||
"foods": {
|
||||
@@ -1093,7 +1100,7 @@
|
||||
"source-food": "Upprunaleg matvara",
|
||||
"target-food": "Sameinuð matvara",
|
||||
"create-food": "Stofna matvöru",
|
||||
"food-label": "Merking",
|
||||
"food-label": "Merkimiði",
|
||||
"edit-food": "Breyta matvöru",
|
||||
"food-data": "Matvörur",
|
||||
"example-food-singular": "t.d. laukur",
|
||||
@@ -1125,52 +1132,52 @@
|
||||
},
|
||||
"labels": {
|
||||
"seed-dialog-text": "Bæta algengum merkimiðum á þínu tungumáli við gagnarunninn.",
|
||||
"edit-label": "Edit Label",
|
||||
"new-label": "New Label",
|
||||
"labels": "Labels",
|
||||
"assign-label": "Assign Label"
|
||||
"edit-label": "Breyta merkimiða",
|
||||
"new-label": "Nýr merkimiði",
|
||||
"labels": "Merkimiðar",
|
||||
"assign-label": "Setja merkimiða"
|
||||
},
|
||||
"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",
|
||||
"purge-exports": "Eyða útfluttum gögnum",
|
||||
"are-you-sure-you-want-to-delete-all-export-data": "Ertu viss um að þú viljir eyða öllum útfluttum gögnum?",
|
||||
"confirm-delete-recipes": "Ertu viss um að þú viljir eyða eftirtöldum uppskriftum? Þessi aðgerð er varanleg.",
|
||||
"the-following-recipes-selected-length-will-be-exported": "Eftirtaldar uppskriftir ({0}) verða útfluttar.",
|
||||
"settings-chosen-explanation": "Stillingar sem eru valdar hér, fyrir utan að læsa, verður bætt við allar valdar uppskriftir.",
|
||||
"selected-length-recipe-s-settings-will-be-updated": "{count} uppskrift(um) verða uppfærðar.",
|
||||
"recipe-data": "Uppskriftar gögn",
|
||||
"recipe-data-description": "Notaðu þessa síðu til að breyta gögnum sem eru tengd við uppskriftirnar þínar. Þú getur framkvæmt margar aðgerðir samtímis meðal annars flytja út, eyða, merkja og setja í flokka.",
|
||||
"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",
|
||||
"recipe-columns": "Uppskrifta dálkar",
|
||||
"data-exports-description": "Þessi hluti geymir niðurhals tengla í gögn sem þegar hafa verið útflutt. Þessir útfluttu gögn eru tímabundin, sæktu þau meðan þau eru enn til staðar.",
|
||||
"data-exports": "Útflutt gögn",
|
||||
"tag": "Merki",
|
||||
"categorize": "Flokka",
|
||||
"update-settings": "Uppfæra stillingar",
|
||||
"tag-recipes": "Merkja uppskrift",
|
||||
"categorize-recipes": "Flokka uppskriftir",
|
||||
"export-recipes": "Export Recipes",
|
||||
"delete-recipes": "Delete Recipes",
|
||||
"export-recipes": "Flytja út uppskriftir",
|
||||
"delete-recipes": "Eyða uppskriftum",
|
||||
"source-unit-will-be-deleted": "Upprunalegri mælieiningu verður eytt"
|
||||
},
|
||||
"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": "Gögn fyrir uppskriftaaðgerðir",
|
||||
"new-recipe-action": "Nú uppskriftaaðgerð",
|
||||
"edit-recipe-action": "Breyta uppskriftaaðgerð",
|
||||
"action-type": "Aðgerð"
|
||||
},
|
||||
"create-alias": "Create Alias",
|
||||
"manage-aliases": "Manage Aliases",
|
||||
"create-alias": "Stofna samheiti",
|
||||
"manage-aliases": "Vinna með samheiti",
|
||||
"seed-data": "Grunngögn",
|
||||
"seed": "Sækja grunngögn",
|
||||
"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",
|
||||
"data-management": "Gagnastýring",
|
||||
"data-management-description": "Veldu þau gögn sem þú vilt breyta.",
|
||||
"select-data": "Veldu gögn",
|
||||
"select-language": "Veldu tungumál",
|
||||
"columns": "Dálkar",
|
||||
"combine": "Sameina",
|
||||
"categories": {
|
||||
"edit-category": "Breyta flokkum",
|
||||
"new-category": "Nýr flokkur",
|
||||
"category-data": "Category Data"
|
||||
"category-data": "Flokkar"
|
||||
},
|
||||
"tags": {
|
||||
"new-tag": "Nýtt merki",
|
||||
@@ -1178,9 +1185,9 @@
|
||||
"tag-data": "Merkja upplýsingar"
|
||||
},
|
||||
"tools": {
|
||||
"new-tool": "New Tool",
|
||||
"edit-tool": "Edit Tool",
|
||||
"tool-data": "Tool Data"
|
||||
"new-tool": "Nýtt áhald",
|
||||
"edit-tool": "Breyta áhaldi",
|
||||
"tool-data": "Áhöld"
|
||||
}
|
||||
},
|
||||
"user-registration": {
|
||||
@@ -1203,30 +1210,30 @@
|
||||
},
|
||||
"export": {
|
||||
"export": "Flytja út",
|
||||
"file-name": "File Name",
|
||||
"size": "Size",
|
||||
"link-expires": "Link Expires"
|
||||
"file-name": "Skráarnafn",
|
||||
"size": "Stærð",
|
||||
"link-expires": "Tengill rennur út"
|
||||
},
|
||||
"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": "Gildistími",
|
||||
"share-recipe": "Deila uppskrift",
|
||||
"default-30-days": "Sjálfgefið er 30 dagar",
|
||||
"expires-at": "Rennur út:",
|
||||
"recipe-link-copied-message": "Tengill fyrir uppskriftina afritaður í klippispjald"
|
||||
},
|
||||
"banner-experimental": {
|
||||
"title": "Experimental Feature",
|
||||
"title": "Tilraunareiginleiki",
|
||||
"description": "This page contains experimental or still-baking features. Please excuse the mess.",
|
||||
"issue-link-text": "Track our progress here"
|
||||
},
|
||||
"form": {
|
||||
"quantity-label-abbreviated": "Qty"
|
||||
"quantity-label-abbreviated": "Fjöldi"
|
||||
},
|
||||
"markdown-editor": {
|
||||
"preview-markdown-button-label": "Skoða markdown"
|
||||
},
|
||||
"demo": {
|
||||
"info_message_with_version": "This is a Demo for version: {version}",
|
||||
"info_message_with_version": "Þetta er demó fyrir útgáfu: {version}",
|
||||
"demo_username": "Notandi: {username}",
|
||||
"demo_password": "Lykilorð: {password}"
|
||||
},
|
||||
@@ -1240,7 +1247,7 @@
|
||||
"split-by-block": "Split by text block",
|
||||
"flatten": "Flatten regardless of original formating",
|
||||
"help": {
|
||||
"help": "Help",
|
||||
"help": "Hjálp",
|
||||
"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:",
|
||||
@@ -1264,84 +1271,84 @@
|
||||
},
|
||||
"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": "Geymslu upplýsingar",
|
||||
"page-title": "Viðhald á vefsvæðis",
|
||||
"summary-title": "Samantekt",
|
||||
"button-label-get-summary": "Fá samantekt",
|
||||
"button-label-open-details": "Nánari upplýsingar",
|
||||
"info-description-data-dir-size": "Gagnamöppustærð",
|
||||
"info-description-log-file-size": "Stærð á atvikaskrá",
|
||||
"info-description-cleanable-directories": "Möppur sem má hreinsa",
|
||||
"info-description-cleanable-images": "Myndir sem má hreinsa",
|
||||
"storage": {
|
||||
"title-temporary-directory": "Temporary Directory (.temp)",
|
||||
"title-temporary-directory": "Bráðabirgðamappa (.temp)",
|
||||
"title-backups-directory": "Mappa fyrir öryggisafrit",
|
||||
"title-groups-directory": "Groups Directory (groups)",
|
||||
"title-recipes-directory": "Recipes Directory (recipes)",
|
||||
"title-user-directory": "User Directory (user)"
|
||||
"title-groups-directory": "Hópa mappa (groups)",
|
||||
"title-recipes-directory": "Uppskriftar mappa (recipes)",
|
||||
"title-user-directory": "Notanda mappa (user)"
|
||||
},
|
||||
"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",
|
||||
"action-delete-log-files-name": "Eyða atvikaskrám",
|
||||
"action-delete-log-files-description": "Eyða öllum atvikaskrám",
|
||||
"action-clean-directories-name": "Hreinsa möppurnar",
|
||||
"action-clean-directories-description": "Eyðir öllum uppskriftarmöppum sem ekki eru með gilt UUID",
|
||||
"action-clean-temporary-files-name": "Eyðir bráðabirgðaskrám",
|
||||
"action-clean-temporary-files-description": "Eyðir öllum skrám og möppum í .temp möppunni",
|
||||
"action-clean-images-name": "Hreinsa myndir",
|
||||
"action-clean-images-description": "Eyðir öllum myndum sem ekki hafa endinguna .webp",
|
||||
"actions-description": "Viðhalds aðgerðir eru {destructive_in_bold} og þarf að nota með varúð. Allar þessar aðgerðir eru {irreversible_in_bold}.",
|
||||
"actions-description-destructive": "eyðileggjandi",
|
||||
"actions-description-irreversible": "varanlegar",
|
||||
"logs-action-refresh": "Refresh Logs",
|
||||
"logs-page-title": "Mealie Logs",
|
||||
"logs-tail-lines-label": "Tail Lines"
|
||||
},
|
||||
"mainentance": {
|
||||
"actions-title": "Actions"
|
||||
"actions-title": "Aðgerðir"
|
||||
},
|
||||
"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": "Innihaldsefna málgreining (Natural Language Processor)",
|
||||
"ingredients-natural-language-processor-explanation": "Mealie notar Conditional Random Fields (CRFs) til að greina og vinna með innihaldsefni. Líkanið sem notað er byggir á gagnasafni með yfir 100.000 innihaldsefnum úr gagnasafni sem New York Times tók saman. Athugaðu að þar sem líkanið er einungis þjálfað á ensku geturðu fengið misjafnar niðurstöður þegar það er notað á önnur tungumál. Þessi síða er ætluð til að prófa líkanið.",
|
||||
"ingredients-natural-language-processor-explanation-2": "Þetta er ekki fullkomið en skilar almennt góðum niðurstöðum og er góður grunnur fyrir handvirka greiningu innihaldsefna í einstaka reiti. Þú getur einnig notað „Brute“ vinnsluna, sem notar mynsturgreiningu til að bera kennsl á innihaldsefni.",
|
||||
"nlp": "NLP",
|
||||
"brute": "Brute",
|
||||
"brute": "Grófgreinir",
|
||||
"openai": "OpenAI",
|
||||
"show-individual-confidence": "Show individual confidence",
|
||||
"ingredient-text": "Ingredient Text",
|
||||
"show-individual-confidence": "Sýna öryggi",
|
||||
"ingredient-text": "Texti innihaldsefni",
|
||||
"average-confident": "{0} öryggi",
|
||||
"try-an-example": "Try an example",
|
||||
"parser": "Parser",
|
||||
"background-tasks": "Background Tasks",
|
||||
"try-an-example": "Reyndu dæmi",
|
||||
"parser": "Greinir",
|
||||
"background-tasks": "Bakgrunnsverk",
|
||||
"background-tasks-description": "Here you can view all the running background tasks and their status",
|
||||
"no-logs-found": "No Logs Found",
|
||||
"tasks": "Verkefni",
|
||||
"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",
|
||||
"first-time-setup": "Fyrsta uppsetning",
|
||||
"welcome-to-mealie-get-started": "Mealie býður þig velkominn, kýlum á þetta",
|
||||
"already-set-up-bring-to-homepage": "Allt er þegar klárt hjá mér, sendu mig á heimasíðuna",
|
||||
"common-settings-for-new-sites": "Hér eru nokkrar algengar stillingar fyrir nýjar síður",
|
||||
"setup-complete": "Uppsetningu lokið",
|
||||
"here-are-a-few-things-to-help-you-get-started": "Hér eru nokkur atriði til að hjálpa þér að byrja á því að nota Mealie",
|
||||
"restore-from-v1-backup": "Ertu með öryggisafrit af eldri útgáfur af Mealie útgáfu 1? Þú getur endurheimt hana hér.",
|
||||
"manage-profile-or-get-invite-link": "Manage your own profile, or grab an invite link to share with others."
|
||||
"manage-profile-or-get-invite-link": "Stilltu eigin prófil, eða sæktu boðs-tengil til að deila með öðrum."
|
||||
},
|
||||
"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": "Villugreina OpenAI þjónustur",
|
||||
"debug-openai-services-description": "Notaðu þessa síðu til að villugrein OpenAI þjónustur. Getur séð hvort OpenAI þjónustan er virk og séð niðurstöður úr greiningunni. Ef þú hefur virkjað mynd greininguna er hægt að setja inn mynd til að greina.",
|
||||
"run-test": "Ræsa prufu",
|
||||
"test-results": "Niðurstaða prufunnar",
|
||||
"group-delete-note": "Hópar sem innihalda notendur og heimili er ekki hægt að eyða",
|
||||
"household-delete-note": "Heimili með notendum er ekki hægt að eyða"
|
||||
},
|
||||
"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",
|
||||
"welcome-user": "👋 Velkomin/Velkominn/Velkomið, {0}!",
|
||||
"description": "Umsjá með prófíl, uppskriftum og hópstillingum.",
|
||||
"invite-link": "Boð tengill",
|
||||
"get-invite-link": "Fá boð tengil",
|
||||
"get-public-link": "Fá almennan tengil",
|
||||
"account-summary": "Samantekt á aðgang",
|
||||
"account-summary-description": "Hér er samantekt á upplýsingum um hópinn þinn.",
|
||||
"group-statistics": "Hóp tölfræði",
|
||||
"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.",
|
||||
"household-statistics": "Tölfræði heimilis",
|
||||
"household-statistics-description": "Heimilis tölfræðin gefur einhverja innsýn í hvernig þú ert að nota Mealie.",
|
||||
"storage-capacity": "Geymslupláss",
|
||||
"storage-capacity-description": "Geymsluplássið þitt er samlagning á myndum og öðru sem þú hefur hlaðið inn.",
|
||||
"personal": "Eigin stillingar",
|
||||
@@ -1352,49 +1359,49 @@
|
||||
"group-description": "Þessar einingar er deilt innan hópsins þíns, að breyta hér hefur áhrif á stillingar fyrir allan hópinn!",
|
||||
"group-settings": "Hóp stillingar",
|
||||
"group-settings-description": "Sýsla með hóp stillingar, eins og friðhelgisstillingar.",
|
||||
"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-description": "Þessum einingum er deilt innan heimilis þíns, að breyta hér hefur áhrif á stillingar fyrir alla í heimilinu!",
|
||||
"household-settings": "Heimilis stillingar",
|
||||
"household-settings-description": "Stjórnaðu stillingum heimilis, eins og matarplani og persónuverndarstillingum.",
|
||||
"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": "Set up webhooks that trigger on days that you have mealplans scheduled.",
|
||||
"notifiers": "Notifiers",
|
||||
"notifiers-description": "Set up email and push notifications that trigger on specific events.",
|
||||
"manage-data": "Manage Data",
|
||||
"cookbooks-description": "Stjórna safni uppskriftaflokka og búa til síður fyrir þá.",
|
||||
"members": "Stillingasíða fyrir heimili",
|
||||
"members-description": "Sjáðu hverjir eru í þínu heimili og stjórnaðu réttindum þeirra.",
|
||||
"webhooks-description": "Settu upp vefkrækju sem virkjast á dögum sem þú hefur virkt matarplan.",
|
||||
"notifiers": "Tilkynningar",
|
||||
"notifiers-description": "Settu upp tölvupóst og push-tilkynningar sem virkjast við tiltekna atburði.",
|
||||
"manage-data": "Gagnastýring",
|
||||
"manage-data-description": "Stjórnaðu Mealie gögnunum þínum: matvörum, mælieiningum, flokkum, merkingum og fleiru.",
|
||||
"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",
|
||||
"data-migrations": "Flutningur uppskrifta gagna",
|
||||
"data-migrations-description": "Flytur gögnin þín úr öðrum kerfum eins og Nextcloud Recipes og Chowdown.",
|
||||
"email-sent": "Tölvpóstur sendur",
|
||||
"error-sending-email": "Villa við að senda tölvupóst",
|
||||
"personal-information": "Persónuupplýsingar",
|
||||
"preferences": "Stillingar",
|
||||
"show-advanced-description": "Sýna ítarlega eiginleika (API lykla, vefkræjur (Webhook) og gagnastýringu)",
|
||||
"back-to-profile": "Til baka í prófíl",
|
||||
"looking-for-privacy-settings": "Þarftu að komast í friðhelgisstillingar?",
|
||||
"manage-your-api-tokens": "Umsjá með þínum API aðgangslyklum",
|
||||
"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"
|
||||
"manage-user-profile": "Umsjá notendaprófíls",
|
||||
"manage-cookbooks": "Umsjá uppskrifarbóka",
|
||||
"manage-members": "Umsjá meðlima",
|
||||
"manage-webhooks": "Umsjá vefkrækja",
|
||||
"manage-notifiers": "Umsjá tilkynninga",
|
||||
"manage-data-migrations": "Umsjá gagnaflutnings"
|
||||
},
|
||||
"cookbook": {
|
||||
"cookbooks": "Uppskriftabækur",
|
||||
"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.",
|
||||
"description": "Uppskriftarbækur er önnur leið til að skipuleggja uppskriftir með því að nota síur og flokka. Þegar búin er til uppskriftarbók þá birtist hún hér á hliðarstikunni og í henni eru allar þær uppskriftir sem falla undir skilgreiningu valdrar síu.",
|
||||
"hide-cookbooks-from-other-households": "Fela uppskriftarbækur frá öðrum heimilum",
|
||||
"hide-cookbooks-from-other-households-description": "Þegar þetta er valið þá munu aðeins uppskriftarbækur úr þínu heimili birtast á hliðarstikunni",
|
||||
"public-cookbook": "Opin uppskriftarbók",
|
||||
"public-cookbook-description": "Opnar uppskriftabækur er hægt að deila með þeim sem ekki eru notendur í Mealie kerfinu og eru þær sýnilegar á hópsíðunni þinni.",
|
||||
"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": "Þarf alla flokka",
|
||||
"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}",
|
||||
"cookbook-name": "Nafn á uppskriftabók",
|
||||
"cookbook-with-name": "Uppskriftabók {0}",
|
||||
"household-cookbook-name": "Uppskriftabók {0} {1}",
|
||||
"create-a-cookbook": "Stofna uppskrifabók",
|
||||
"cookbook": "Uppskriftabók"
|
||||
},
|
||||
@@ -1404,19 +1411,19 @@
|
||||
"or": "EÐA"
|
||||
},
|
||||
"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": "þann",
|
||||
"does-not-equal": "ekki þann",
|
||||
"is-greater-than": "eftir þann",
|
||||
"is-greater-than-or-equal-to": "þann eða eftir þann",
|
||||
"is-less-than": "fyrir þann",
|
||||
"is-less-than-or-equal-to": "fyrir þann eða þann"
|
||||
},
|
||||
"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": "er",
|
||||
"is-not": "er ekki",
|
||||
"is-one-of": "er einn af",
|
||||
"is-not-one-of": "er ekki einn af",
|
||||
"contains-all-of": "inniheldur alla af",
|
||||
"is-like": "is like",
|
||||
"is-not-like": "is not like"
|
||||
}
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Colazione",
|
||||
"lunch": "Pranzo",
|
||||
"dinner": "Cena",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Qualsiasi",
|
||||
"day-any": "Qualsiasi",
|
||||
"editor": "Modifica",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importa una ricetta tramite URL",
|
||||
"create-manually": "Crea una ricetta manualmente",
|
||||
"make-recipe-image": "Usa come immagine della ricetta",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Aggiungi cibo",
|
||||
"add-recipe": "Aggiungi ricetta"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Pagina non Trovata",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Ricetta eliminata",
|
||||
"recipe-image": "Immagine Ricetta",
|
||||
"recipe-image-updated": "Immagine ricetta aggiornata",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Elimina Immagine Ricetta",
|
||||
"delete-image-confirmation": "Sei sicuro di voler eliminare questa immagine della ricetta?",
|
||||
"recipe-image-deleted": "Immagine della ricetta eliminata",
|
||||
"recipe-name": "Nome Ricetta",
|
||||
"recipe-settings": "Impostazioni Ricetta",
|
||||
"recipe-update-failed": "Aggiornamento ricetta fallito",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Scegli Unità",
|
||||
"press-enter-to-create": "Premi invio per creare",
|
||||
"choose-food": "Scegli Cibo",
|
||||
"choose-recipe": "Scegli Ricetta",
|
||||
"notes": "Note",
|
||||
"toggle-section": "Attiva Sezione",
|
||||
"see-original-text": "Vedi Testo Originale",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "L'Ho Preparato",
|
||||
"how-did-it-turn-out": "Come è venuto?",
|
||||
"user-made-this": "{user} l'ha preparato",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Creato per {recipe}",
|
||||
"added-to-timeline": "Aggiunto alla cronologia",
|
||||
"failed-to-add-to-timeline": "Impossibile aggiungere alla cronologia",
|
||||
"failed-to-update-recipe": "Impossibile aggiornare la ricetta",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prova l'importatore massivo",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Hai dei dati grezzi HTML o JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "È possibile importare direttamente dai dati grezzi",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importa parole chiave originali come tag",
|
||||
"stay-in-edit-mode": "Rimani in modalità Modifica",
|
||||
"parse-recipe-ingredients-after-import": "Analizza gli ingredienti della ricetta dopo l'importazione",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Carica altre immagini",
|
||||
"set-as-cover-image": "Imposta come immagine di copertina della ricetta",
|
||||
"cover-image": "Immagine di copertina",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Includi Ricette Collegate",
|
||||
"include-linked-recipe-ingredients": "Includi Ingredienti Della Ricetta Collegata",
|
||||
"toggle-recipe": "Attiva/Disattiva Ricetta"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Trova ricette",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Premi '/'",
|
||||
"advanced": "Ricerca Avanzata",
|
||||
"auto-search": "Ricerca automatica",
|
||||
"no-results": "Nessun risultato trovato"
|
||||
"no-results": "Nessun risultato trovato",
|
||||
"type-to-search": "Scrivi per cercare..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Aggiungi un Nuovo Tema",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "朝食",
|
||||
"lunch": "昼食",
|
||||
"dinner": "夕食",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "すべて",
|
||||
"day-any": "すべて",
|
||||
"editor": "エディタ",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "単位を選択",
|
||||
"press-enter-to-create": "Enterキーを押して作成",
|
||||
"choose-food": "食料を選択",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "備考",
|
||||
"toggle-section": "セクションの切り替え",
|
||||
"see-original-text": "元のテキストを見る",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "一括インポートを試す",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "生の HTML または JSON データをお持ちですか?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "生データから直接インポートできます",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "元のキーワードをタグとしてインポート",
|
||||
"stay-in-edit-mode": "編集モードを維持",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -691,11 +697,11 @@
|
||||
"reset-servings-count": "サービング数をリセット",
|
||||
"not-linked-ingredients": "追加の材料",
|
||||
"upload-another-image": "Upload another image",
|
||||
"upload-images": "Upload images",
|
||||
"upload-images": "画像のアップロード",
|
||||
"upload-more-images": "Upload more images",
|
||||
"set-as-cover-image": "Set as recipe cover image",
|
||||
"cover-image": "Cover image",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"cover-image": "カバー画像",
|
||||
"include-linked-recipes": "リンクされたレシピを含める",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
},
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "'/' を押す",
|
||||
"advanced": "詳細",
|
||||
"auto-search": "自動検索",
|
||||
"no-results": "結果は見つかりませんでした。"
|
||||
"no-results": "結果は見つかりませんでした。",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "新しいテーマを追加",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "조식",
|
||||
"lunch": "점심",
|
||||
"dinner": "저녁 식사",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "모두",
|
||||
"day-any": "모두",
|
||||
"editor": "편집기",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "단위 선택",
|
||||
"press-enter-to-create": "Enter 키를 눌러 생성하세요",
|
||||
"choose-food": "음식 선택",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "노트",
|
||||
"toggle-section": "Toggle Section",
|
||||
"see-original-text": "See Original Text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Import original keywords as tags",
|
||||
"stay-in-edit-mode": "Stay in Edit mode",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Press '/'",
|
||||
"advanced": "Advanced",
|
||||
"auto-search": "자동 검색",
|
||||
"no-results": "검색 결과가 없습니다."
|
||||
"no-results": "검색 결과가 없습니다.",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "새 테마 추가",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Pusryčiai",
|
||||
"lunch": "Pietūs",
|
||||
"dinner": "Vakarienė",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Bet kas",
|
||||
"day-any": "Bet kas",
|
||||
"editor": "Redagavimas",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Pasirinkite vienetą",
|
||||
"press-enter-to-create": "Paspauskite 'Enter', norėdami sukurti",
|
||||
"choose-food": "Pasirinkite maistą",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Pastabos",
|
||||
"toggle-section": "Rodyti skyrių",
|
||||
"see-original-text": "Rodyti originalų tekstą",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Įkelti pradinius raktažodžius kaip žymas",
|
||||
"stay-in-edit-mode": "Toliau redaguoti",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Paspauskite '/'",
|
||||
"advanced": "Išplėstinė paieška",
|
||||
"auto-search": "Automatinė paieška",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Pridėti naują temą",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Brokastis",
|
||||
"lunch": "pusdienas",
|
||||
"dinner": "Vakariņas",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Jebkurš",
|
||||
"day-any": "Jebkurš",
|
||||
"editor": "Redaktors",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Izvēlieties vienību",
|
||||
"press-enter-to-create": "Nospiediet taustiņu Enter, lai izveidotu",
|
||||
"choose-food": "Izvēlieties ēdienu",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Piezīmes",
|
||||
"toggle-section": "Pārslēgt sadaļu",
|
||||
"see-original-text": "Skatīt oriģinālo tekstu",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Izmēģiniet lielapjoma importētāju",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Vai jums ir neapstrādāti HTML vai JSON dati?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Jūs varat importēt no neapstrādātiem datiem tieši",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importējiet oriģinālos atslēgvārdus kā tagus",
|
||||
"stay-in-edit-mode": "Palieciet rediģēšanas režīmā",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Nospiediet '/'",
|
||||
"advanced": "Papildu Opcijas",
|
||||
"auto-search": "Automātiskā meklēšana",
|
||||
"no-results": "Nav atrasts neviens rezultāts"
|
||||
"no-results": "Nav atrasts neviens rezultāts",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Pievienot jaunu motīvu",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Ontbijt",
|
||||
"lunch": "Lunch",
|
||||
"dinner": "Diner",
|
||||
"snack": "Tussendoortje",
|
||||
"drink": "Drankje",
|
||||
"dessert": "Toetje",
|
||||
"type-any": "Alle",
|
||||
"day-any": "Elke",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Kies een eenheid",
|
||||
"press-enter-to-create": "Druk op Enter om aan te maken",
|
||||
"choose-food": "Levensmiddelen kiezen",
|
||||
"choose-recipe": "Kies recept",
|
||||
"notes": "Notities",
|
||||
"toggle-section": "Sectie schakelen",
|
||||
"see-original-text": "Zie oorspronkelijke tekst",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Probeer importeren in bulk",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Heb je onbewerkte HTML of JSON gegevens?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "U kunt direct importeren uit onbewerkte gegevens",
|
||||
"scrape-recipe-website-being-blocked": "Wordt de website geblokkeerd?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Probeer de HTML broncode te importeren.",
|
||||
"import-original-keywords-as-tags": "Importeer oorspronkelijke trefwoorden als labels",
|
||||
"stay-in-edit-mode": "Blijf in bewerkingsmodus",
|
||||
"parse-recipe-ingredients-after-import": "Ontleed de ingrediënten van het recept na importeren",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Druk op '/'",
|
||||
"advanced": "Geavanceerd",
|
||||
"auto-search": "Automatisch zoeken",
|
||||
"no-results": "Geen resultaten gevonden"
|
||||
"no-results": "Geen resultaten gevonden",
|
||||
"type-to-search": "Zoek..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Voeg een nieuw thema toe",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Frokost",
|
||||
"lunch": "Lunsj",
|
||||
"dinner": "Middag",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Enhver",
|
||||
"day-any": "Enhver",
|
||||
"editor": "Redigeringsverktøy",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Velg enhet",
|
||||
"press-enter-to-create": "Trykk Enter for å opprette",
|
||||
"choose-food": "Velg matvarer",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notater",
|
||||
"toggle-section": "Legg til seksjon",
|
||||
"see-original-text": "Se opprinnelig tekst",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Prøv masseimportering",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Har du HTML- eller JSON-rådata?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Du kan importere fra rådata direkte",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importer originale søkeord som emneord",
|
||||
"stay-in-edit-mode": "Forbli i redigeringsmodus",
|
||||
"parse-recipe-ingredients-after-import": "Analyser oppskriftens ingredienser etter at importen er fullført",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Trykk på '/'",
|
||||
"advanced": "Avansert",
|
||||
"auto-search": "Autosøk",
|
||||
"no-results": "Ingen resultater funnet"
|
||||
"no-results": "Ingen resultater funnet",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Legg til nytt tema",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Śniadanie",
|
||||
"lunch": "Obiad",
|
||||
"dinner": "Kolacja",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Dowolny",
|
||||
"day-any": "Dowolny",
|
||||
"editor": "Edytor",
|
||||
@@ -400,7 +403,7 @@
|
||||
"title": "Przepisy Tandoor"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie can import recipes from DVO Cook'n X3. Export a cookbook or menu in the \"Cook'n\" format, rename the export extension to .zip, then upload the .zip below.",
|
||||
"description-long": "Mealie może importować przepisy z DVO Cook'n X3. Wyeksportuj książkę kucharską lub menu w formacie \"Cook'n\", zmień rozszerzenie eksportu na .zip, a następnie prześlij plik .zip poniżej.",
|
||||
"title": "DVO Cook'n X3"
|
||||
},
|
||||
"recipe-data-migrations": "Migracja danych przepisów",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importuj przepis przez URL",
|
||||
"create-manually": "Stwórz przepis ręcznie",
|
||||
"make-recipe-image": "Niech to będzie obraz przepisu",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Dodaj Składnik",
|
||||
"add-recipe": "Dodaj przepis"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404. Nie znaleziono strony",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Przepis został usunięty",
|
||||
"recipe-image": "Zdjęcie do przepisu",
|
||||
"recipe-image-updated": "Zdjęcie przepisu zostało zaktualizowane",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Usuń obrazek przepisu",
|
||||
"delete-image-confirmation": "Czy jesteś pewien, że chcesz usunąć obrazek przepisu?",
|
||||
"recipe-image-deleted": "Obrazek przepisu został usunięty",
|
||||
"recipe-name": "Nazwa przepisu",
|
||||
"recipe-settings": "Ustawienia przepisu",
|
||||
"recipe-update-failed": "Aktualizacja przepisu nie powiodła się",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Wybierz jednostkę",
|
||||
"press-enter-to-create": "Naciśnij \"enter\", aby utworzyć",
|
||||
"choose-food": "Wybierz jedzenie",
|
||||
"choose-recipe": "Wybierz Przepis",
|
||||
"notes": "Notatki",
|
||||
"toggle-section": "Przełącz Sekcję",
|
||||
"see-original-text": "Zobacz oryginalny tekst",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Ugotowałem to",
|
||||
"how-did-it-turn-out": "Jak się to udało?",
|
||||
"user-made-this": "{user} ugotował(a) to",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Wykonane do {recipe}",
|
||||
"added-to-timeline": "Dodano do osi czasu",
|
||||
"failed-to-add-to-timeline": "Nie udało się dodać do osi czasu",
|
||||
"failed-to-update-recipe": "Nie udało się zaktualizować przepisu",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Wypróbuj importer zbiorczy",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Masz dane HTML bądź JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Możesz zaimportować bezpośrednio z surowych danych",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importuj oryginalne słowa kluczowe jako tagi",
|
||||
"stay-in-edit-mode": "Pozostań w trybie edycji",
|
||||
"parse-recipe-ingredients-after-import": "Analizuj składniki receptury po zaimportowaniu",
|
||||
@@ -683,9 +689,9 @@
|
||||
"no-food": "Brak potrawy",
|
||||
"review-parsed-ingredients": "Przejrzyj przeanalizowane składniki",
|
||||
"confidence-score": "Wskaźnik pewności",
|
||||
"ingredient-parser-description": "Your ingredients have been successfully parsed. Please review the ingredients we're not sure about.",
|
||||
"ingredient-parser-final-review-description": "Once all ingredients have been reviewed, you'll have one more chance to review all ingredients before applying the changes to your recipe.",
|
||||
"add-text-as-alias-for-item": "Add \"{text}\" as alias for {item}",
|
||||
"ingredient-parser-description": "Twoja lista składników została przetworzona. Sprawdź proszę składniki co , do których mamy wątpliwości",
|
||||
"ingredient-parser-final-review-description": "Gdy wszystkie składniki zostaną sprawdzone, będziesz mieć jeszcze jedną szansę na sprawdzenie ich przed zastosowaniem zmian w przepisie.",
|
||||
"add-text-as-alias-for-item": "Dodaj \"{text}\" jako alternatywną nazwę dla {item}",
|
||||
"delete-item": "Usuń przedmiot"
|
||||
},
|
||||
"reset-servings-count": "Zresetuj liczbę porcji",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Prześlij więcej obrazów",
|
||||
"set-as-cover-image": "Ustaw jako okładkę przepisu",
|
||||
"cover-image": "Okładka",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Dołącz połączone przepisy",
|
||||
"include-linked-recipe-ingredients": "Uwzględnij Składniki Powiązanego Przepisu",
|
||||
"toggle-recipe": "Przełącz Przepis"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Wyszukiwarka przepisów",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Naciśnij '/'",
|
||||
"advanced": "Zaawansowane",
|
||||
"auto-search": "Auto wyszukiwanie",
|
||||
"no-results": "Nie znaleziono wyników"
|
||||
"no-results": "Nie znaleziono wyników",
|
||||
"type-to-search": "Wpisz, aby wyszukać..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Dodaj nowy motyw",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"forgot-password": "Nie pamiętam hasła",
|
||||
"forgot-password-text": "Podaj adres e-mail konta, do którego chcesz odzyskać hasło.",
|
||||
"changes-reflected-immediately": "Zmiany dla tego użytkownika będą zastosowane natychmiastowo.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Domyślna aktywność",
|
||||
"default-activity-hint": "Wybierz stronę, do której chcesz przejść po zalogowaniu się z tego urządzenia"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "przetłumaczone",
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
"event-delete-confirmation": "Tem certeza de que quer excluir este evento?",
|
||||
"event-deleted": "Evento Excluído",
|
||||
"event-updated": "Evento Atualizado",
|
||||
"new-notification-form-description": "Mealie usa a biblioteca Apprise para gerar notificações. Eles oferecem várias opções de serviços para usar em notificações. Consulte sua wiki para um guia completo sobre como criar a URL para o seu serviço. Se disponível, selecionar o tipo da sua notificação pode incluir recursos extras.",
|
||||
"new-notification-form-description": "Mealie usa a biblioteca Apprise para gerar notificações. Eles oferecem várias opções de serviços para serem usados para notificações. Consulte a wiki para um guia completo sobre como criar a URL para o seu serviço. Se disponível, selecionar o tipo de notificação pode incluir recursos extras.",
|
||||
"new-version": "Nova versão disponível!",
|
||||
"notification": "Notificação",
|
||||
"refresh": "Recarregar",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Café da manhã",
|
||||
"lunch": "Almoço",
|
||||
"dinner": "Jantar",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Qualquer",
|
||||
"day-any": "Qualquer",
|
||||
"editor": "Editor",
|
||||
@@ -400,7 +403,7 @@
|
||||
"title": "Receitas do Tandoor"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie can import recipes from DVO Cook'n X3. Export a cookbook or menu in the \"Cook'n\" format, rename the export extension to .zip, then upload the .zip below.",
|
||||
"description-long": "O Mealie pode importar receitas do DVO Cook’n X3. Exporte um livro de receitas ou menu no formato “Cook'n”, renomeie a extensão do arquivo exportado para .zip e, em seguida, envie o arquivo .zip abaixo.",
|
||||
"title": "DVO Cook'n X3"
|
||||
},
|
||||
"recipe-data-migrations": "Migrações de Dados de Receita",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importar uma receita por URL",
|
||||
"create-manually": "Crie uma receita manualmente",
|
||||
"make-recipe-image": "Tornar esta a imagem da receita",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Adicionar Alimento",
|
||||
"add-recipe": "Adicionar Receita"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Página não encontrada",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Receita excluída",
|
||||
"recipe-image": "Imagem da Receita",
|
||||
"recipe-image-updated": "Imagem da receita atualizada",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Deletar Imagem da Receita",
|
||||
"delete-image-confirmation": "Tem certeza que deseja deletar a imagem da receita?",
|
||||
"recipe-image-deleted": "Imagem da receita deletada",
|
||||
"recipe-name": "Nome da Receita",
|
||||
"recipe-settings": "Configurações da Receita",
|
||||
"recipe-update-failed": "Falha ao atualizar a receita",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Escolher unidades",
|
||||
"press-enter-to-create": "Pressione Enter para criar",
|
||||
"choose-food": "Escolher Comida",
|
||||
"choose-recipe": "Selecionar Receita",
|
||||
"notes": "Notas",
|
||||
"toggle-section": "Alternar Seção",
|
||||
"see-original-text": "Exibir texto original",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Eu Fiz Isso",
|
||||
"how-did-it-turn-out": "Como que ficou?",
|
||||
"user-made-this": "{user} fez isso",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Feito para {recipe}",
|
||||
"added-to-timeline": "Adicionado à linha do tempo",
|
||||
"failed-to-add-to-timeline": "Falha ao adicionar à linha do tempo",
|
||||
"failed-to-update-recipe": "Falha ao atualizar receita",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Tente o importador em massa",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Tem dados HTML ou JSON brutos?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Você pode importar diretamente de dados brutos",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importar palavras-chave originais como marcadores",
|
||||
"stay-in-edit-mode": "Permanecer no modo de edição",
|
||||
"parse-recipe-ingredients-after-import": "Interpretar os ingredientes da receita após importar",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Carregar mais imagens",
|
||||
"set-as-cover-image": "Definir como imagem de capa da receita",
|
||||
"cover-image": "Imagem de capa",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Incluir Receita Linkada",
|
||||
"include-linked-recipe-ingredients": "Incluir Ingredientes da Receita Linkada",
|
||||
"toggle-recipe": "Alternar Receita"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Localizador de Receitas",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Pressione '/'",
|
||||
"advanced": "Avançado",
|
||||
"auto-search": "Pesquisa automática",
|
||||
"no-results": "Nenhum resultado encontrado"
|
||||
"no-results": "Nenhum resultado encontrado",
|
||||
"type-to-search": "Digite para pesquisar..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Adicionar um novo tema",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"forgot-password": "Esqueci minha senha",
|
||||
"forgot-password-text": "Digite seu endereço de e-mail e enviaremos um link para redefinir sua senha.",
|
||||
"changes-reflected-immediately": "As alterações deste usuário serão refletidas imediatamente.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Atividade padrão",
|
||||
"default-activity-hint": "Selecione para qual página você deseja ser direcionado ao fazer \"login\" neste dispositivo"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "traduzido",
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
"new-notification": "Nova Notificação",
|
||||
"event-notifiers": "Notificadores de eventos",
|
||||
"apprise-url-skipped-if-blank": "URL da Apprise (ignorado se vazio)",
|
||||
"apprise-url-is-left-intentionally-blank": "Since Apprise URLs typically contain sensitive information, this field is left intentionally blank while editing. If you wish to update the URL, please enter the new one here, otherwise leave it blank to keep the current URL.",
|
||||
"apprise-url-is-left-intentionally-blank": "Como os URLs do Apprise normalmente contêm informação sensível, este campo é deixado propositadamente em branco durante a edição. Caso pretenda manter o URL atual, deixe este campo em branco.",
|
||||
"enable-notifier": "Ativar Notificador",
|
||||
"what-events": "Que eventos este notificador deve subscrever?",
|
||||
"user-events": "Eventos do utilizador",
|
||||
@@ -81,7 +81,7 @@
|
||||
"category-events": "Eventos de Categoria",
|
||||
"when-a-new-user-joins-your-group": "Quando um novo utilizador entra no seu grupo",
|
||||
"recipe-events": "Eventos de receita",
|
||||
"label-events": "Label Events"
|
||||
"label-events": "Eventos de etiqueta"
|
||||
},
|
||||
"general": {
|
||||
"add": "Adicionar",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Pequeno-almoço",
|
||||
"lunch": "Almoço",
|
||||
"dinner": "Jantar",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Qualquer",
|
||||
"day-any": "Qualquer",
|
||||
"editor": "Editor",
|
||||
@@ -400,7 +403,7 @@
|
||||
"title": "Receitas do Tandoor"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie can import recipes from DVO Cook'n X3. Export a cookbook or menu in the \"Cook'n\" format, rename the export extension to .zip, then upload the .zip below.",
|
||||
"description-long": "O Mealie pode importar receitas do DVO Cook’n X3. Exporte um livro de receitas ou um menu no formato “Cook’n”, mude a extensão do ficheiro exportado para .zip e, em seguida, carregue o ficheiro .zip abaixo.",
|
||||
"title": "DVO Cook'n X3"
|
||||
},
|
||||
"recipe-data-migrations": "Migrações de dados de receita",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importar uma receita do URL",
|
||||
"create-manually": "Crie uma receita manualmente",
|
||||
"make-recipe-image": "Faça desta a imagem da receita",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Adicionar alimento",
|
||||
"add-recipe": "Adicionar receita"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Página não encontrada",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Receita apagada",
|
||||
"recipe-image": "Imagem da Receita",
|
||||
"recipe-image-updated": "Imagem da receita atualizada",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Eliminar imagem da receita",
|
||||
"delete-image-confirmation": "Tem a certeza de que pretende eliminar esta imagem da receita?",
|
||||
"recipe-image-deleted": "Imagem da receita eliminada",
|
||||
"recipe-name": "Nome da Receita",
|
||||
"recipe-settings": "Definições da receita",
|
||||
"recipe-update-failed": "Falha na atualização da receita",
|
||||
@@ -565,12 +568,13 @@
|
||||
"choose-unit": "Escolha uma unidade",
|
||||
"press-enter-to-create": "Prima 'Enter' para criar",
|
||||
"choose-food": "Escolher Alimento",
|
||||
"choose-recipe": "Escolher receita",
|
||||
"notes": "Notas",
|
||||
"toggle-section": "Alternar secção",
|
||||
"see-original-text": "Mostrar texto original",
|
||||
"original-text-with-value": "Texto Original: {originalText}",
|
||||
"ingredient-linker": "Conector de ingredientes",
|
||||
"unlinked": "Not linked yet",
|
||||
"unlinked": "Ainda não ligado(a)",
|
||||
"linked-to-other-step": "Ligado a outro passo",
|
||||
"auto": "Auto",
|
||||
"cook-mode": "Modo Cozinheiro",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Eu fiz isto",
|
||||
"how-did-it-turn-out": "Que tal ficou?",
|
||||
"user-made-this": "{user} fez isto",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Feito para {recipe}",
|
||||
"added-to-timeline": "Adicionado à linha do tempo",
|
||||
"failed-to-add-to-timeline": "Falha ao adicionar à linha do tempo",
|
||||
"failed-to-update-recipe": "Falha ao atualizar a receita",
|
||||
@@ -632,9 +636,11 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Experimente o importador em massa",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Tem dados HTML ou JSON em bruto?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "É possível importar diretamente a partir de dados em bruto",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importar palavras-chave originais como etiquetas",
|
||||
"stay-in-edit-mode": "Permanecer no modo de edição",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
"parse-recipe-ingredients-after-import": "Analisar ingredientes da receita após a importação",
|
||||
"import-from-zip": "Importar de Zip",
|
||||
"import-from-zip-description": "Importar uma única receita que foi exportada de outra instância Mealie.",
|
||||
"import-from-html-or-json": "Importar a partir de HTML ou JSON",
|
||||
@@ -681,23 +687,23 @@
|
||||
"this-unit-could-not-be-parsed-automatically": "Não foi possível processar automaticamente esta unidade",
|
||||
"this-food-could-not-be-parsed-automatically": "Não foi possível processar automaticamente este alimento",
|
||||
"no-food": "Nenhum Ingrediente",
|
||||
"review-parsed-ingredients": "Review parsed ingredients",
|
||||
"confidence-score": "Confidence Score",
|
||||
"ingredient-parser-description": "Your ingredients have been successfully parsed. Please review the ingredients we're not sure about.",
|
||||
"ingredient-parser-final-review-description": "Once all ingredients have been reviewed, you'll have one more chance to review all ingredients before applying the changes to your recipe.",
|
||||
"add-text-as-alias-for-item": "Add \"{text}\" as alias for {item}",
|
||||
"delete-item": "Delete Item"
|
||||
"review-parsed-ingredients": "Rever ingredientes analisados",
|
||||
"confidence-score": "Pontuação de confiança",
|
||||
"ingredient-parser-description": "Os seus ingredientes foram analisados com sucesso. Por favor, reveja os ingredientes acerca dos quais não temos a certeza.",
|
||||
"ingredient-parser-final-review-description": "Depois de todos os ingredientes serem revistos, terá mais uma oportunidade para rever todos os ingredientes antes de aplicar as alterações à sua receita.",
|
||||
"add-text-as-alias-for-item": "Adicionar \"{text}\" como alias de {item}",
|
||||
"delete-item": "Eliminar item"
|
||||
},
|
||||
"reset-servings-count": "Reiniciar Contador de Doses",
|
||||
"not-linked-ingredients": "Ingredientes Adicionais",
|
||||
"upload-another-image": "Carregar outra imagem",
|
||||
"upload-images": "Carregar imagens",
|
||||
"upload-more-images": "Carregar mais imagens",
|
||||
"set-as-cover-image": "Set as recipe cover image",
|
||||
"cover-image": "Cover image",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"set-as-cover-image": "Definir como imagem de capa da receita",
|
||||
"cover-image": "Imagem de capa",
|
||||
"include-linked-recipes": "Incluir receitas ligadas",
|
||||
"include-linked-recipe-ingredients": "Incluir ingredientes das receitas ligadas",
|
||||
"toggle-recipe": "Alternar receita"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Localizador de Receitas",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Prima '/'",
|
||||
"advanced": "Avançado",
|
||||
"auto-search": "Pesquisa Automática",
|
||||
"no-results": "Nenhum resultado encontrado"
|
||||
"no-results": "Nenhum resultado encontrado",
|
||||
"type-to-search": "Escreva para pesquisar..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Adicionar novo tema",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"forgot-password": "Esqueceu-se da palavra-passe",
|
||||
"forgot-password-text": "Por favor, digite o seu endereço de email para enviarmos um link para redefinir a sua palavra-passe.",
|
||||
"changes-reflected-immediately": "As alterações a este utilizador serão aplicadas imediatamente.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Atividade predefinida",
|
||||
"default-activity-hint": "Selecione para que página pretende navegar ao iniciar sessão a partir deste dispositivo"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "traduzido",
|
||||
@@ -1192,7 +1199,7 @@
|
||||
"group-details": "Detalhes do Grupo",
|
||||
"group-details-description": "Antes de criar uma conta é necessário criar um grupo. Será o único membro do seu grupo, mas poderá convidar outros mais tarde. Os membros do seu grupo podem partilhar planos de refeição, listas de compras, receitas e muito mais!",
|
||||
"use-seed-data": "Utilizar dados gerados",
|
||||
"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. These are translated into the language you currently have selected. You can always add to or modify this data later.",
|
||||
"use-seed-data-description": "O Mealie inclui uma coleção de Alimentos, Unidades e Etiquetas que pode ser usada para preencher o seu grupo com dados úteis para organizar as suas receitas. Estes estão traduzidos para o idioma que tem atualmente selecionado. Pode sempre adicionar ou modificar estes dados mais tarde.",
|
||||
"account-details": "Detalhes da Conta"
|
||||
},
|
||||
"validation": {
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
"new-notification": "Notificare nouă",
|
||||
"event-notifiers": "Notificatori de evenimente",
|
||||
"apprise-url-skipped-if-blank": "URL Apprise (ignorat daca e gol)",
|
||||
"apprise-url-is-left-intentionally-blank": "Since Apprise URLs typically contain sensitive information, this field is left intentionally blank while editing. If you wish to update the URL, please enter the new one here, otherwise leave it blank to keep the current URL.",
|
||||
"apprise-url-is-left-intentionally-blank": "Deoarece URL-urile Apprise conțin de obicei informații sensibile, acest câmp este lăsat intenționat gol în timpul editării. Dacă doriți să actualizați URL-ul, vă rugăm să introduceți cel nou aici, altfel lăsați-l gol pentru a păstra URL-ul curent.",
|
||||
"enable-notifier": "Activare notificator",
|
||||
"what-events": "La ce evenimente ar trebui să se înscrie acest notificator?",
|
||||
"user-events": "Evenimente Utilizator",
|
||||
@@ -81,7 +81,7 @@
|
||||
"category-events": "Categorie de Evenimente",
|
||||
"when-a-new-user-joins-your-group": "Când un utilizator nou se alătură grupului tău",
|
||||
"recipe-events": "Evenimente rețetă",
|
||||
"label-events": "Label Events"
|
||||
"label-events": "Etichete Evenimente"
|
||||
},
|
||||
"general": {
|
||||
"add": "Adaugă",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Mic dejun",
|
||||
"lunch": "Prânz",
|
||||
"dinner": "Cină",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Oricare",
|
||||
"day-any": "Oricare",
|
||||
"editor": "Editor",
|
||||
@@ -400,7 +403,7 @@
|
||||
"title": "Rețete Tandoor"
|
||||
},
|
||||
"cookn": {
|
||||
"description-long": "Mealie can import recipes from DVO Cook'n X3. Export a cookbook or menu in the \"Cook'n\" format, rename the export extension to .zip, then upload the .zip below.",
|
||||
"description-long": "Mealie poate importa rețete din DVO Cook'n X3. Exportă o carte de bucate sau un meniu în formatul \"Cook'n\", redenumește extensia de export în .zip, apoi încarcă fișierul .zip mai jos.",
|
||||
"title": "DVO Cook'n X3"
|
||||
},
|
||||
"recipe-data-migrations": "Migrarea datelor rețetelor",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importă rețetă prin URL",
|
||||
"create-manually": "Creează o rețetă manual",
|
||||
"make-recipe-image": "Setează ca imaginea rețetei",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Adaugă Aliment",
|
||||
"add-recipe": "Adaugă Rețetă"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 Pagina nu a fost găsită",
|
||||
@@ -480,7 +483,7 @@
|
||||
"comment": "Comentariu",
|
||||
"comments": "Comentarii",
|
||||
"delete-confirmation": "Sunteți sigur că doriți să ștergeți această rețetă?",
|
||||
"admin-delete-confirmation": "You're about to delete a recipe that isn't yours using admin permissions. Are you sure?",
|
||||
"admin-delete-confirmation": "Ești pe cale să ștergi o rețetă care nu este a ta folosind permisiuni de administrator. Ești sigur?",
|
||||
"delete-recipe": "Șterge rețeta",
|
||||
"description": "Descriere",
|
||||
"disable-amount": "Dezactivați cantitățile Ingredientelor",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Rețeta a fost ștearsă",
|
||||
"recipe-image": "Imagine rețetă",
|
||||
"recipe-image-updated": "Imagine rețetă actualizată",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Șterge Imaginea Rețetei",
|
||||
"delete-image-confirmation": "Sunteți sigur că doriți să ștergeți această imagine de rețetă?",
|
||||
"recipe-image-deleted": "Imaginea rețetei a fost ștearsă",
|
||||
"recipe-name": "Numele rețetei",
|
||||
"recipe-settings": "Setări rețetă",
|
||||
"recipe-update-failed": "Actualizarea rețetei a eșuat",
|
||||
@@ -565,12 +568,13 @@
|
||||
"choose-unit": "Alegeţi unitatea",
|
||||
"press-enter-to-create": "Apăsați Enter pentru a crea",
|
||||
"choose-food": "Alege Mâncarea",
|
||||
"choose-recipe": "Alege Rețeta",
|
||||
"notes": "Notițe",
|
||||
"toggle-section": "Activează/dezactivează secțiunea",
|
||||
"see-original-text": "Vezi Textul Original",
|
||||
"original-text-with-value": "Text original: {originalText}",
|
||||
"ingredient-linker": "Legarea cu ingrediente",
|
||||
"unlinked": "Not linked yet",
|
||||
"unlinked": "Încă nu este conectat",
|
||||
"linked-to-other-step": "Conectat la alt pas",
|
||||
"auto": "Auto",
|
||||
"cook-mode": "Modul de gătire",
|
||||
@@ -592,15 +596,15 @@
|
||||
"made-this": "Am făcut asta",
|
||||
"how-did-it-turn-out": "Cum a ieșit?",
|
||||
"user-made-this": "{user} a făcut asta",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"added-to-timeline": "Added to timeline",
|
||||
"failed-to-add-to-timeline": "Failed to add to timeline",
|
||||
"failed-to-update-recipe": "Failed to update recipe",
|
||||
"added-to-timeline-but-failed-to-add-image": "Added to timeline, but failed to add image",
|
||||
"made-for-recipe": "Făcut pentru {recipe}",
|
||||
"added-to-timeline": "Adăugat la cronologie",
|
||||
"failed-to-add-to-timeline": "Eroare la adăugarea în cronologie",
|
||||
"failed-to-update-recipe": "Eroare la actualizarea rețetei",
|
||||
"added-to-timeline-but-failed-to-add-image": "Adăugat la cronologie, dar nu s-a putut adăuga imaginea",
|
||||
"api-extras-description": "Recipes extras sunt o caracteristică cheie a API-ului Mealie. Îți permit să creezi perechi personalizate de cheie/valoare JSON într-o rețetă, ca să faci referire la aplicații terțe. Puteți utiliza aceste chei pentru a furniza informații, de exemplu pentru a declanșa automatizări sau mesaje personalizate pentru a transmite dispozitivul dorit.",
|
||||
"message-key": "Cheie mesaj",
|
||||
"parse": "Parsează",
|
||||
"ingredients-not-parsed-description": "It looks like your ingredients aren't parsed yet. Click the \"{parse}\" button below to parse your ingredients into structured foods.",
|
||||
"ingredients-not-parsed-description": "Se pare că ingredientele tale nu sunt încă analizate. Apăsați butonul \"{parse}\" de mai jos pentru a analiza ingredientele în alimente structurate.",
|
||||
"attach-images-hint": "Atașează imagini trăgându-le cu mouse-ul și plasându-le în editor",
|
||||
"drop-image": "Trage imaginea",
|
||||
"enable-ingredient-amounts-to-use-this-feature": "Activaţi cantităţile de ingrediente pentru a utiliza această funcționalitate",
|
||||
@@ -618,10 +622,10 @@
|
||||
"create-recipe-from-an-image": "Creează o rețetă dintr-o imagine",
|
||||
"create-recipe-from-an-image-description": "Creează o rețetă prin încărcarea unei imagini a acesteia. Mealie va încerca să extragă textul din imagine folosind AI și să creeze o rețetă din el.",
|
||||
"crop-and-rotate-the-image": "Decupați și rotiți imaginea astfel încât numai textul să fie vizibil, iar orientarea să fie corectă.",
|
||||
"create-from-images": "Create from Images",
|
||||
"create-from-images": "Creează din Imagini",
|
||||
"should-translate-description": "Tradu rețeta în limba mea",
|
||||
"please-wait-image-procesing": "Te rog așteaptă, imaginea este procesata. Acest lucru poate dura ceva timp.",
|
||||
"please-wait-images-processing": "Please wait, the images are processing. This may take some time.",
|
||||
"please-wait-images-processing": "Vă rugăm să așteptați, imaginile sunt în procesare. Acest lucru poate dura ceva timp.",
|
||||
"bulk-url-import": "Import URL în bulk",
|
||||
"debug-scraper": "Depanare funcție Importare",
|
||||
"create-a-recipe-by-providing-the-name-all-recipes-must-have-unique-names": "Creează o rețetă furnizând numele. Toate rețetele trebuie să aibă nume unice.",
|
||||
@@ -632,9 +636,11 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Încearcă importatorul în bulk",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Ai date de tip HTML sau JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Poți importa datele direct",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importă cuvintele cheie originale ca tag-uri",
|
||||
"stay-in-edit-mode": "Rămâi în modul Editare",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
"parse-recipe-ingredients-after-import": "Analizează ingredientele rețetei după import",
|
||||
"import-from-zip": "Importă din zip",
|
||||
"import-from-zip-description": "Importă o rețetă care a fost exportată dintr-o altă instanță a Mealie.",
|
||||
"import-from-html-or-json": "Importă din HTML sau JSON",
|
||||
@@ -678,26 +684,26 @@
|
||||
"no-unit": "Nicio unitate",
|
||||
"missing-unit": "Creează unitate lipsă: {unit}",
|
||||
"missing-food": "Creează mâncare lipsă: {food}",
|
||||
"this-unit-could-not-be-parsed-automatically": "This unit could not be parsed automatically",
|
||||
"this-food-could-not-be-parsed-automatically": "This food could not be parsed automatically",
|
||||
"this-unit-could-not-be-parsed-automatically": "Această unitate nu a putut fi analizată automat",
|
||||
"this-food-could-not-be-parsed-automatically": "Acest aliment nu a putut fi analizat automat",
|
||||
"no-food": "Niciun aliment",
|
||||
"review-parsed-ingredients": "Review parsed ingredients",
|
||||
"confidence-score": "Confidence Score",
|
||||
"ingredient-parser-description": "Your ingredients have been successfully parsed. Please review the ingredients we're not sure about.",
|
||||
"ingredient-parser-final-review-description": "Once all ingredients have been reviewed, you'll have one more chance to review all ingredients before applying the changes to your recipe.",
|
||||
"add-text-as-alias-for-item": "Add \"{text}\" as alias for {item}",
|
||||
"delete-item": "Delete Item"
|
||||
"review-parsed-ingredients": "Revizuiește ingredientele analizate",
|
||||
"confidence-score": "Scor de încredere",
|
||||
"ingredient-parser-description": "Ingredientele tale au fost analizate cu succes. Te rugăm să revizuiești ingredientele despre care nu suntem siguri.",
|
||||
"ingredient-parser-final-review-description": "Odată ce toate ingredientele au fost revizuite, vei mai avea o șansă de a revizui toate ingredientele înainte de a aplica modificările la rețetă.",
|
||||
"add-text-as-alias-for-item": "Adaugă \"{text}\" ca alias pentru {item}",
|
||||
"delete-item": "Șterge Articol"
|
||||
},
|
||||
"reset-servings-count": "Resetează numărul de serviri",
|
||||
"not-linked-ingredients": "Ingrediente suplimentare",
|
||||
"upload-another-image": "Upload another image",
|
||||
"upload-images": "Upload images",
|
||||
"upload-more-images": "Upload more images",
|
||||
"set-as-cover-image": "Set as recipe cover image",
|
||||
"cover-image": "Cover image",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"upload-another-image": "Încărcă o altă imagine",
|
||||
"upload-images": "Încărcă imagini",
|
||||
"upload-more-images": "Încărcă mai multe imagini",
|
||||
"set-as-cover-image": "Setează ca imagine copertă rețetă",
|
||||
"cover-image": "Imagine copertă",
|
||||
"include-linked-recipes": "Include rețetele conectate",
|
||||
"include-linked-recipe-ingredients": "Include ingredientele rețetelor conectate",
|
||||
"toggle-recipe": "Comută Rețeta"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Căutător de rețete",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Apasă „/”",
|
||||
"advanced": "Avansat",
|
||||
"auto-search": "Căutare automată",
|
||||
"no-results": "Nu s-au găsit rezultate"
|
||||
"no-results": "Nu s-au găsit rezultate",
|
||||
"type-to-search": "Tastați pentru a căuta..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Adaugă o nouă temă",
|
||||
@@ -1073,8 +1080,8 @@
|
||||
"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": "Modificările aduse acestui utilizator vor fi reflectate imediat.",
|
||||
"default-activity": "Default Activity",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity": "Activitate implicită",
|
||||
"default-activity-hint": "Selectați la care pagină doriți să navigați la conectarea de pe acest dispozitiv"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "tradus",
|
||||
@@ -1192,7 +1199,7 @@
|
||||
"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 ships with a collection of Foods, Units, and Labels that can be used to populate your group with helpful data for organizing your recipes. These are translated into the language you currently have selected. You can always add to or modify this data later.",
|
||||
"use-seed-data-description": "Mealie este livrată cu o colecție de alimente, unități și etichete care pot fi folosite pentru a popula grupul tău cu date utile pentru organizarea rețetelor. Acestea sunt traduse în limba pe care ai selectat-o în prezent. Puteți oricând adăuga sau modifica aceste date mai târziu.",
|
||||
"account-details": "Detalii Cont"
|
||||
},
|
||||
"validation": {
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"database-type": "Тип базы данных",
|
||||
"database-url": "URL базы данных",
|
||||
"default-group": "Группа по умолчанию",
|
||||
"default-household": "Дом по умолчанию",
|
||||
"default-household": "Домохозяйство по умолчанию",
|
||||
"demo": "Демо",
|
||||
"demo-status": "Демо-статус",
|
||||
"development": "В разработке",
|
||||
@@ -26,11 +26,11 @@
|
||||
"sponsor": "Спонсор"
|
||||
},
|
||||
"asset": {
|
||||
"assets": "Приложения",
|
||||
"assets": "Файлы",
|
||||
"code": "Код",
|
||||
"file": "Файл",
|
||||
"image": "Изображение",
|
||||
"new-asset": "Новое приложение",
|
||||
"new-asset": "Новый файл",
|
||||
"pdf": "PDF",
|
||||
"recipe": "Рецепт",
|
||||
"show-assets": "Показать приложения",
|
||||
@@ -45,13 +45,13 @@
|
||||
"category-filter": "Фильтр по категориям",
|
||||
"category-update-failed": "Не удалось обновить категорию",
|
||||
"category-updated": "Категория обновлена",
|
||||
"uncategorized-count": "Без категории {count}",
|
||||
"uncategorized-count": "Без категории: {count}",
|
||||
"create-a-category": "Создать категорию",
|
||||
"category-name": "Название категории",
|
||||
"category": "Категория"
|
||||
},
|
||||
"events": {
|
||||
"apprise-url": "Apprise URL-адрес",
|
||||
"apprise-url": "URL-адрес для уведомлений Apprise",
|
||||
"database": "База данных",
|
||||
"delete-event": "Удалить событие",
|
||||
"event-delete-confirmation": "Вы уверены, что хотите удалить данное событие?",
|
||||
@@ -246,9 +246,9 @@
|
||||
"keep-my-recipes-private-description": "Устанавливает группу и все рецепты по умолчанию приватными. Вы всегда можете изменить это позже."
|
||||
},
|
||||
"manage-members": "Настройки участников",
|
||||
"manage-members-description": "Пользователь",
|
||||
"manage-members-description": "Управление правами доступа участников в вашем домохозяйстве. {manage} позволяет пользователю получить доступ к странице управления данными, {invite} позволяет пользователю генерировать пригласительные ссылки для других пользователей. Владельцы групп не могут изменять свои собственные права.",
|
||||
"manage": "Редактировать",
|
||||
"manage-household": "Управление Домом",
|
||||
"manage-household": "Управление домохозяйством",
|
||||
"invite": "Пригласить",
|
||||
"looking-to-update-your-profile": "Хотите обновить свой профиль?",
|
||||
"default-recipe-preferences-description": "Это настройки по умолчанию при создании нового рецепта в вашей группе. Они могут быть изменены для отдельных рецептов в меню настроек рецепта.",
|
||||
@@ -288,17 +288,17 @@
|
||||
"create-household": "Создать домохозяйство",
|
||||
"household-name": "Название домохозяйства",
|
||||
"household-group": "Группа домохозяйства",
|
||||
"household-management": "Управление домохозяйствами",
|
||||
"manage-households": "Управление Домами",
|
||||
"admin-household-management": "Управление Домохозяйством",
|
||||
"household-management": "Управление домохозяйством",
|
||||
"manage-households": "Управление всеми домохозяйствами",
|
||||
"admin-household-management": "Администраторское управление домохозяйствами",
|
||||
"admin-household-management-text": "Изменения в данном домохозяйстве будут отражены немедленно.",
|
||||
"household-id-value": "Id домохозяйства: {0}",
|
||||
"private-household": "Частное домохозяйство",
|
||||
"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": "Это настройки по умолчанию, когда в вашем домашнем хозяйстве создается новый рецепт. Они могут быть изменены для отдельных рецептов в меню настроек рецепта.",
|
||||
"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": "Параметры домохозяйства"
|
||||
@@ -323,7 +323,7 @@
|
||||
"mealplan-settings": "Настройки плана питания",
|
||||
"mealplan-update-failed": "Не удалось обновить план питания",
|
||||
"mealplan-updated": "План питания обновлен",
|
||||
"mealplan-households-description": "Если домохозяйство не выбрано, то рецепты могут быть добавлены из любого домашнего хозяйства",
|
||||
"mealplan-households-description": "Если домохозяйство не выбрано, то рецепты могут быть добавлены из любого домохозяйства",
|
||||
"any-category": "Любая категория",
|
||||
"any-tag": "Любая метка",
|
||||
"any-household": "Любое домохозяйство",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Завтрак",
|
||||
"lunch": "Обед",
|
||||
"dinner": "Ужин",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Любой",
|
||||
"day-any": "Любой",
|
||||
"editor": "Редактор",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Импортировать рецепт по URL",
|
||||
"create-manually": "Создать рецепт вручную",
|
||||
"make-recipe-image": "Сделать это изображением рецепта",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Добавить продукт",
|
||||
"add-recipe": "Добавить рецепт"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 - страница не найдена",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Рецепт удален",
|
||||
"recipe-image": "Изображение рецепта",
|
||||
"recipe-image-updated": "Изображение рецепта обновлено",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Удалить изображение рецепта",
|
||||
"delete-image-confirmation": "Вы уверены, что хотите удалить данное изображение рецепта?",
|
||||
"recipe-image-deleted": "Изображение рецепта удалено",
|
||||
"recipe-name": "Название рецепта",
|
||||
"recipe-settings": "Настройки рецепта",
|
||||
"recipe-update-failed": "Ошибка обновления рецепта",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Выберите единицу измерения",
|
||||
"press-enter-to-create": "Нажмите Enter для создания",
|
||||
"choose-food": "Выберите продукт",
|
||||
"choose-recipe": "Выберите рецепт",
|
||||
"notes": "Заметки",
|
||||
"toggle-section": "Переключить раздел",
|
||||
"see-original-text": "Показать исходный текст",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Я приготовил это",
|
||||
"how-did-it-turn-out": "Что получилось?",
|
||||
"user-made-this": "{user} приготовил это",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Сделано для {recipe}",
|
||||
"added-to-timeline": "Добавлено в ленту",
|
||||
"failed-to-add-to-timeline": "Не удалось добавить в ленту",
|
||||
"failed-to-update-recipe": "Не удалось обновить рецепт",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Воспользуйтесь массовым импортом",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "У Вас есть данные HTML или JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Вы можете импортировать напрямую из необработанных данных",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Импортировать исходные ключевые слова как теги",
|
||||
"stay-in-edit-mode": "Остаться в режиме редактирования",
|
||||
"parse-recipe-ingredients-after-import": "Распознавание ингредиентов рецепта после импорта",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Загрузить больше изображений",
|
||||
"set-as-cover-image": "Установить как обложку рецепта",
|
||||
"cover-image": "Обложка",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Включить привязанные рецепты",
|
||||
"include-linked-recipe-ingredients": "Включить ингредиенты привязанного рецепта",
|
||||
"toggle-recipe": "Переключить рецепт"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Поиск рецептов",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Нажмите '/'",
|
||||
"advanced": "Дополнительно",
|
||||
"auto-search": "Авто поиск",
|
||||
"no-results": "Ничего не найдено"
|
||||
"no-results": "Ничего не найдено",
|
||||
"type-to-search": "Начните печатать для поиска..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Добавить новую тему",
|
||||
@@ -1060,7 +1067,7 @@
|
||||
"user-details": "Данные пользователя",
|
||||
"user-name": "Имя пользователя",
|
||||
"authentication-method": "Метод аутентификации",
|
||||
"authentication-method-hint": "This specifies how a user will authenticate with Mealie. If you're not sure, choose 'Mealie",
|
||||
"authentication-method-hint": "Определяет способ аутентификации пользователя с Mealie. Если вы не уверены, выберите 'Mealie'",
|
||||
"permissions": "Права доступа",
|
||||
"administrator": "Администратор",
|
||||
"user-can-invite-other-to-group": "Пользователь может пригласить других в группу",
|
||||
@@ -1087,8 +1094,8 @@
|
||||
"foods": {
|
||||
"merge-dialog-text": "Сочетание выбранных продуктов позволит объединить первый и второй продукт в один. Первый продукт будет удалён, и все ссылки на него будут указывать на второй продукт.",
|
||||
"merge-food-example": "Объединение {food1} в {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.",
|
||||
"seed-dialog-text": "Заполняет базу данных с продуктами на основе локального языка. Это добавит ~2700 типичных продуктов, которые могут быть использованы для организации вашей базы данных. Продукты переводятся с помощью усилий сообщества.",
|
||||
"seed-dialog-warning": "У вас уже есть некоторые элементы в базе данных. Новый элемент не будет добавлен, если элемент с таким именем уже существует.",
|
||||
"combine-food": "Объединить продукты",
|
||||
"source-food": "Первый продукт",
|
||||
"target-food": "Второй продукт",
|
||||
@@ -1358,9 +1365,9 @@
|
||||
"cookbooks-description": "Управление коллекцией категорий рецептов и созданием страниц для них.",
|
||||
"members": "Участники",
|
||||
"members-description": "Узнайте, кто состоит в вашем домохозяйстве и управляйте их правами.",
|
||||
"webhooks-description": "Setup webhooks that trigger on days that you have have mealplan scheduled.",
|
||||
"webhooks-description": "Настройте webhook'и запускаемые в дни, когда у вас запланированы блюда.",
|
||||
"notifiers": "Уведомления",
|
||||
"notifiers-description": "Setup email and push notifications that trigger on specific events.",
|
||||
"notifiers-description": "Настройте почту и push-уведомления, которые запускаются при определенных событиях.",
|
||||
"manage-data": "Настройки хранилища данных",
|
||||
"manage-data-description": "Управляйте вашими данными в Mealie: продукты, единицы измерения, категории, теги и многое другое.",
|
||||
"data-migrations": "Перенос данных",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Raňajky",
|
||||
"lunch": "Obed",
|
||||
"dinner": "Večera",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Ľubovoľný",
|
||||
"day-any": "Ľubovoľný",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Vyberte jednotku",
|
||||
"press-enter-to-create": "Stlačte Enter pre vytvorenie",
|
||||
"choose-food": "Vyberte potravinu",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Poznámky",
|
||||
"toggle-section": "Prepnúť sekciu",
|
||||
"see-original-text": "Pozrieť pôvodný text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Vyskúšajte hromadný importér",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Máte surové údaje HTML alebo JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Môžete importovať priamo nespracované údaje",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Importovať pôvodné kľúčové slová ako štítky",
|
||||
"stay-in-edit-mode": "Zostať v režime editovania",
|
||||
"parse-recipe-ingredients-after-import": "Analyzovať ingrediencie po importe",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Stlač '/'",
|
||||
"advanced": "Rozšírené",
|
||||
"auto-search": "Automatické vyhľadávanie",
|
||||
"no-results": "Nenašli sa žiadne výsledky"
|
||||
"no-results": "Nenašli sa žiadne výsledky",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Pridať nový motív",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Zajtrk",
|
||||
"lunch": "Kosilo",
|
||||
"dinner": "Večerja",
|
||||
"snack": "Prigrizek",
|
||||
"drink": "Pijača",
|
||||
"dessert": "Sladica",
|
||||
"type-any": "Katerikoli",
|
||||
"day-any": "Katerikoli",
|
||||
"editor": "Urednik",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Uvozi recept preko URL",
|
||||
"create-manually": "Ročno ustvari recept",
|
||||
"make-recipe-image": "To sliko izberi kot sliko recepta",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Dodaj hrano",
|
||||
"add-recipe": "Dodaj recept"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 strani ni mogoče najti",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Recept je izbrisan",
|
||||
"recipe-image": "Slika recepta",
|
||||
"recipe-image-updated": "Slika recepta je posodobljena",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Izbriši sliko recepta",
|
||||
"delete-image-confirmation": "Ali ste prepričani, da želite izbrisati to sliko recepta?",
|
||||
"recipe-image-deleted": "Slika recepta je bila izbrisana",
|
||||
"recipe-name": "Naslov recepta",
|
||||
"recipe-settings": "Nastavitve recepta",
|
||||
"recipe-update-failed": "Napaka pri posodobitvi recepta",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Izberite enoto",
|
||||
"press-enter-to-create": "Pritisnite enter da izdelate",
|
||||
"choose-food": "Izberite hrano",
|
||||
"choose-recipe": "Izberi recept",
|
||||
"notes": "Zapiski",
|
||||
"toggle-section": "Preklopi izbiro",
|
||||
"see-original-text": "Prikaži izvirno besedilo",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Naredil sem to",
|
||||
"how-did-it-turn-out": "Kako se je izkazalo?",
|
||||
"user-made-this": "{user} je tole pripravil/a",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Narejeno za {recipe}",
|
||||
"added-to-timeline": "Dodano na časovnico",
|
||||
"failed-to-add-to-timeline": "Dodajanje na časovnico ni uspelo",
|
||||
"failed-to-update-recipe": "Posodobitev recepta ni uspela",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Preizkusi masovni uvoz",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Imaš surove HTML ali JSON podatke?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Uvoziš lahko neposredno iz surovih podatkov",
|
||||
"scrape-recipe-website-being-blocked": "Je spletna stran blokirana?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Poskusite namesto tega uvoziti surovi HTML.",
|
||||
"import-original-keywords-as-tags": "Uvozi izvorne ključne besede kot značke",
|
||||
"stay-in-edit-mode": "Urejaj naprej",
|
||||
"parse-recipe-ingredients-after-import": "Razčlenitev sestavin recepta po uvozu",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Naloži več slik",
|
||||
"set-as-cover-image": "Nastavi kot sliko naslovnice recepta",
|
||||
"cover-image": "Naslovna slika",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Vključi povezane recepte",
|
||||
"include-linked-recipe-ingredients": "Vključi povezane sestavine recepta",
|
||||
"toggle-recipe": "Preklopi recept"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Iskalnik receptov",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Pritisni '/'",
|
||||
"advanced": "Napredno",
|
||||
"auto-search": "Avtomatsko iskanje",
|
||||
"no-results": "Ni zadetkov"
|
||||
"no-results": "Ni zadetkov",
|
||||
"type-to-search": "Vpiši iskalni niz..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Dodaj novo temo",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Доручак",
|
||||
"lunch": "Ручак",
|
||||
"dinner": "Вечера",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Било који",
|
||||
"day-any": "Било који",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Choose Unit",
|
||||
"press-enter-to-create": "Притисни Ентер да направиш",
|
||||
"choose-food": "Изабери храну",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Toggle Section",
|
||||
"see-original-text": "See Original Text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Увези оригиналне кључне речи као ознаке",
|
||||
"stay-in-edit-mode": "Stay in Edit mode",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Стисни '/'",
|
||||
"advanced": "Напредна",
|
||||
"auto-search": "Аутоматска претрага",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Add a New Theme",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"api-port": "API-port",
|
||||
"application-mode": "Applikationsläge",
|
||||
"database-type": "Databastyp",
|
||||
"database-url": "Databas URL",
|
||||
"database-url": "Databas-URL",
|
||||
"default-group": "Standardgrupp",
|
||||
"default-household": "Standardhushåll",
|
||||
"demo": "Demo",
|
||||
@@ -51,7 +51,7 @@
|
||||
"category": "Kategori"
|
||||
},
|
||||
"events": {
|
||||
"apprise-url": "Apprise URL",
|
||||
"apprise-url": "Apprise-URL",
|
||||
"database": "Databas",
|
||||
"delete-event": "Radera händelse",
|
||||
"event-delete-confirmation": "Är du säker du vill ta bort denna händelse?",
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Frukost",
|
||||
"lunch": "Lunch",
|
||||
"dinner": "Middag",
|
||||
"snack": "Snacks",
|
||||
"drink": "Drinkar",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Alla",
|
||||
"day-any": "Alla",
|
||||
"editor": "Redigerare",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Importera recept via URL",
|
||||
"create-manually": "Skapa recept manuellt",
|
||||
"make-recipe-image": "Gör detta till receptbild",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Lägg till mat",
|
||||
"add-recipe": "Lägg till recept"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 sidan hittades inte",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Recept raderat",
|
||||
"recipe-image": "Recept bild",
|
||||
"recipe-image-updated": "Recept bild uppdaterad",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Radera receptbild",
|
||||
"delete-image-confirmation": "Är du säker på att du vill ta bort den här receptbilden?",
|
||||
"recipe-image-deleted": "Recept bild raderad",
|
||||
"recipe-name": "Receptets namn",
|
||||
"recipe-settings": "Recept inställningar",
|
||||
"recipe-update-failed": "Receptet gick inte att uppdatera",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Välj enhet",
|
||||
"press-enter-to-create": "Tryck Enter för att skapa",
|
||||
"choose-food": "Välj mat",
|
||||
"choose-recipe": "Välj recept",
|
||||
"notes": "Anteckningar",
|
||||
"toggle-section": "Växla sektion",
|
||||
"see-original-text": "Visa originaltext",
|
||||
@@ -592,7 +596,7 @@
|
||||
"made-this": "Jag lagade den här",
|
||||
"how-did-it-turn-out": "Hur blev rätten?",
|
||||
"user-made-this": "{user} lagade detta",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"made-for-recipe": "Skapat för {recipe}",
|
||||
"added-to-timeline": "Lagt till i tidslinjen",
|
||||
"failed-to-add-to-timeline": "Kunde inte lägga till i tidslinjen",
|
||||
"failed-to-update-recipe": "Kunde inte uppdatera receptet",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Testa massimportören",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Har rå HTML eller JSON-data?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Du kan importera från rådata direkt",
|
||||
"scrape-recipe-website-being-blocked": "Är websidan blockerad?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Prova att importera HTML istället.",
|
||||
"import-original-keywords-as-tags": "Importera ursprungliga sökord som taggar",
|
||||
"stay-in-edit-mode": "Stanna kvar i redigeringsläge",
|
||||
"parse-recipe-ingredients-after-import": "Tolka receptingredienser efter import",
|
||||
@@ -695,9 +701,9 @@
|
||||
"upload-more-images": "Ladda upp fler bilder",
|
||||
"set-as-cover-image": "Använd som receptbild",
|
||||
"cover-image": "Receptbild",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Inkludera länk till recept",
|
||||
"include-linked-recipe-ingredients": "Inkludera länk till receptingredienser",
|
||||
"toggle-recipe": "Växla receptet"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Sök recept",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Tryck '/'",
|
||||
"advanced": "Avancerat",
|
||||
"auto-search": "Autosök",
|
||||
"no-results": "Inga resultat hittades"
|
||||
"no-results": "Inga resultat hittades",
|
||||
"type-to-search": "Skriv för att söka..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Lägg till ett nytt tema",
|
||||
@@ -1074,7 +1081,7 @@
|
||||
"forgot-password-text": "Ange din e-postadress så skickar vi dig en länk för att återställa ditt lösenord.",
|
||||
"changes-reflected-immediately": "Ändringar av denna användare kommer att ske omedelbart.",
|
||||
"default-activity": "Standard aktivitet",
|
||||
"default-activity-hint": "Select which page you'd like to navigate to upon logging in from this device"
|
||||
"default-activity-hint": "Välj vilken sida du vill gå till när du loggar in från den här enheten"
|
||||
},
|
||||
"language-dialog": {
|
||||
"translated": "översatt",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Kahvaltı",
|
||||
"lunch": "Öğle Yemeği",
|
||||
"dinner": "Akşam Yemeği",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Herhangi",
|
||||
"day-any": "Herhangi",
|
||||
"editor": "Editör",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Birim Seçin",
|
||||
"press-enter-to-create": "Oluşturmak İçin Enter'a Basın",
|
||||
"choose-food": "Yemek Seç",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notlar",
|
||||
"toggle-section": "Bölümü Görünürlüğünü Değiştir",
|
||||
"see-original-text": "Orijinal Metni Göster",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Toplu ithalatçıyı deneyin",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Ham HTML veya JSON verileriniz mi var?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Ham veriden doğrudan içe aktarabilirsiniz",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Orijinal anahtar kelimeleri etiket olarak içe aktar",
|
||||
"stay-in-edit-mode": "Düzenleme modunda kalın",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "'/' Tuşuna Basın",
|
||||
"advanced": "Gelişmiş",
|
||||
"auto-search": "Otomatik Arama",
|
||||
"no-results": "Sonuç bulunamadı"
|
||||
"no-results": "Sonuç bulunamadı",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Yeni Tema Ekle",
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
"support": "Підтримка",
|
||||
"version": "Версія",
|
||||
"unknown-version": "невідомо",
|
||||
"sponsor": "Спонсор"
|
||||
"sponsor": "Підтримка"
|
||||
},
|
||||
"asset": {
|
||||
"assets": "Медіаресурси",
|
||||
@@ -67,14 +67,14 @@
|
||||
"test-message-sent": "Тестове повідомлення надіслано",
|
||||
"message-sent": "Повідомлення надіслано",
|
||||
"new-notification": "Нове сповіщення",
|
||||
"event-notifiers": "Сповіщувачі",
|
||||
"event-notifiers": "Нагадувач про події",
|
||||
"apprise-url-skipped-if-blank": "Apprise URL (пропущено якщо порожній)",
|
||||
"apprise-url-is-left-intentionally-blank": "Оскільки URL адреси, як правило, містять конфіденційну інформацію, це поле залишається навмисно порожнім під час редагування. Якщо ви хочете оновити URL адресу, введіть тут новий, інакше залиште його порожнім, щоб зберегти поточну URL адресу.",
|
||||
"enable-notifier": "Увімкнути сповіщувач",
|
||||
"what-events": "На які події цей сповіщувач має бути підписаний?",
|
||||
"enable-notifier": "Увімкнути нагадувач",
|
||||
"what-events": "На які події повинен підписатися цей нагадувач?",
|
||||
"user-events": "Події користувача",
|
||||
"mealplan-events": "Події плану харчування",
|
||||
"when-a-user-in-your-group-creates-a-new-mealplan": "Коли користувач з вашої групи створює новий план харчування",
|
||||
"mealplan-events": "Події меню",
|
||||
"when-a-user-in-your-group-creates-a-new-mealplan": "Коли користувач з вашої групи створює нове меню",
|
||||
"shopping-list-events": "Події списку покупок",
|
||||
"cookbook-events": "Події кулінарної книги",
|
||||
"tag-events": "Події міток",
|
||||
@@ -93,13 +93,13 @@
|
||||
"confirm-delete-generic": "Ви дійсно бажаєте видалити це?",
|
||||
"copied_message": "Скопійовано!",
|
||||
"create": "Створити",
|
||||
"created": "Створено",
|
||||
"created": "Дата створення",
|
||||
"custom": "Власний",
|
||||
"dashboard": "Панель керування",
|
||||
"delete": "Видалити",
|
||||
"disabled": "Вимкнено",
|
||||
"download": "Завантажити",
|
||||
"duplicate": "Дублікат",
|
||||
"duplicate": "Копіювати",
|
||||
"edit": "Редагувати",
|
||||
"enabled": "Увімкнено",
|
||||
"exception": "Виняток",
|
||||
@@ -115,7 +115,7 @@
|
||||
"get": "Отримати",
|
||||
"home": "Головна",
|
||||
"image": "Зображення",
|
||||
"image-upload-failed": "Не вдалося відвантажити зображення",
|
||||
"image-upload-failed": "Не вдалося завантажити зображення",
|
||||
"import": "Імпорт",
|
||||
"json": "JSON",
|
||||
"keyword": "Ключове слово",
|
||||
@@ -137,13 +137,13 @@
|
||||
"plural-name": "Назва у множині",
|
||||
"print": "Друк",
|
||||
"print-preferences": "Налаштування друку",
|
||||
"random": "Випадково",
|
||||
"random": "Випадковий",
|
||||
"rating": "Рейтинг",
|
||||
"recent": "Нещодавні",
|
||||
"recipe": "Рецепт",
|
||||
"recipes": "Рецепти",
|
||||
"rename-object": "Перейменувати {0}",
|
||||
"reset": "Скинути",
|
||||
"reset": "Очистити",
|
||||
"saturday": "Субота",
|
||||
"save": "Зберегти",
|
||||
"settings": "Налаштування",
|
||||
@@ -169,8 +169,8 @@
|
||||
"tuesday": "Вівторок",
|
||||
"type": "Тип",
|
||||
"update": "Оновити",
|
||||
"updated": "Оновлено",
|
||||
"upload": "Відвантажити",
|
||||
"updated": "Дата оновлення",
|
||||
"upload": "Завантажити",
|
||||
"url": "URL-адреса",
|
||||
"view": "Перегляд",
|
||||
"wednesday": "Середа",
|
||||
@@ -188,7 +188,7 @@
|
||||
"date-added": "Дата додавання",
|
||||
"none": "Нічого",
|
||||
"run": "Виконати",
|
||||
"menu": "Меню",
|
||||
"menu": "Розділ",
|
||||
"a-name-is-required": "Необхідно вказати назву",
|
||||
"delete-with-name": "Видалити {name}",
|
||||
"confirm-delete-generic-with-name": "Ви дійсно хочете видалити {name}?",
|
||||
@@ -198,7 +198,7 @@
|
||||
"copy": "Скопіювати",
|
||||
"color": "Колір",
|
||||
"timestamp": "Час",
|
||||
"last-made": "Приготовано",
|
||||
"last-made": "Дата готування",
|
||||
"learn-more": "Дізнатися більше",
|
||||
"this-feature-is-currently-inactive": "Ця функція наразі не активна",
|
||||
"clipboard-not-supported": "Буфер обміну не підтримується",
|
||||
@@ -209,12 +209,12 @@
|
||||
"selected-count": "Обрано: {count}",
|
||||
"export-all": "Експортувати Всі",
|
||||
"refresh": "Оновити",
|
||||
"upload-file": "Вивантажити файл",
|
||||
"upload-file": "Завантажити файл",
|
||||
"created-on-date": "Створено: {0}",
|
||||
"unsaved-changes": "У вас є незбережені зміни. Ви хочете зберегти їх перед виходом? Гаразд, щоб зберегти, Скасувати, щоб скасувати.",
|
||||
"clipboard-copy-failure": "Не вдалося скопіювати до буфера обміну.",
|
||||
"confirm-delete-generic-items": "Ви впевнені, що хочете видалити вибрані елементи?",
|
||||
"organizers": "Організатори",
|
||||
"organizers": "Органайзери",
|
||||
"caution": "Увага",
|
||||
"show-advanced": "Показати розширені",
|
||||
"add-field": "Додати поле",
|
||||
@@ -246,7 +246,7 @@
|
||||
"keep-my-recipes-private-description": "Встановлює \"приватне\" налаштуванням по замовчування для групи та всіх рецептів. Це завжди можна змінити потім."
|
||||
},
|
||||
"manage-members": "Керування Користувачами",
|
||||
"manage-members-description": "Керуйте дозволами учасників вашої сімʼї. {manage} дозволяє користувачеві отримати доступ до сторінки керування даними {invite} дозволяє користувачеві генерувати посилання запрошення для інших користувачів. Власники групи не можуть змінити власні дозволи.",
|
||||
"manage-members-description": "Керуйте правами доступу членів вашої родини. {manage} дозволяє користувачеві отримати доступ до сторінки управління даними, а {invite} дозволяє користувачеві створювати посилання-запрошення для інших користувачів. Власники груп не можуть змінювати свої права доступу.",
|
||||
"manage": "Керування",
|
||||
"manage-household": "Керувати сімʼєю",
|
||||
"invite": "Запрошення",
|
||||
@@ -309,39 +309,42 @@
|
||||
"dinner-this-week": "Обід цього тижня",
|
||||
"dinner-today": "Обід сьогодні",
|
||||
"dinner-tonight": "Вечеря сьогодні",
|
||||
"edit-meal-plan": "Редагувати план харчування",
|
||||
"edit-meal-plan": "Редагувати меню",
|
||||
"end-date": "Дата завершення",
|
||||
"group": "Група (бета)",
|
||||
"main": "Основне",
|
||||
"meal-planner": "Планувальник харчування",
|
||||
"meal-plans": "Плани харчування",
|
||||
"mealplan-categories": "КАТЕГОРІЇ",
|
||||
"mealplan-created": "План харчування створено",
|
||||
"mealplan-creation-failed": "Не вдалося створити план харчування",
|
||||
"mealplan-deleted": "План харчування видалено",
|
||||
"mealplan-deletion-failed": "Не вдалося видалити план харчування",
|
||||
"mealplan-settings": "Налаштування плану харчування",
|
||||
"mealplan-update-failed": "Не вдалося оновити план харчування",
|
||||
"mealplan-updated": "План харчування оновлено",
|
||||
"meal-planner": "Конструктор Меню",
|
||||
"meal-plans": "Плани меню",
|
||||
"mealplan-categories": "КАТЕГОРІЇ МЕНЮ",
|
||||
"mealplan-created": "Меню створено",
|
||||
"mealplan-creation-failed": "Не вдалося створити меню",
|
||||
"mealplan-deleted": "Меню видалено",
|
||||
"mealplan-deletion-failed": "Не вдалося видалити меню",
|
||||
"mealplan-settings": "Налаштування меню",
|
||||
"mealplan-update-failed": "Не вдалося оновити меню",
|
||||
"mealplan-updated": "Меню оновлено",
|
||||
"mealplan-households-description": "Якщо жодної сім'ї не вибрано, рецепти можуть бути доданими з будь-якої сім'ї",
|
||||
"any-category": "Будь-яка категорія",
|
||||
"any-tag": "Будь-який тег",
|
||||
"any-household": "Будь-яка сім'я",
|
||||
"no-meal-plan-defined-yet": "Не створено жодного плану харчування",
|
||||
"no-meal-planned-for-today": "Не заплановано харчування на сьогодні",
|
||||
"no-meal-plan-defined-yet": "Не створено жодного меню",
|
||||
"no-meal-planned-for-today": "Не заплановано меню на сьогодні",
|
||||
"numberOfDays-hint": "Скільки днів завантажувати на сторінку",
|
||||
"numberOfDays-label": "Дні за замовчуванням",
|
||||
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Лише рецепти з цими категоріями будуть використані в планах харчування",
|
||||
"planner": "Планувальник",
|
||||
"quick-week": "Швидкий тиждень",
|
||||
"only-recipes-with-these-categories-will-be-used-in-meal-plans": "Лише рецепти з цими категоріями будуть використані в меню",
|
||||
"planner": "Конструктор",
|
||||
"quick-week": "Швидкий план на тиждень",
|
||||
"side": "Закуска",
|
||||
"sides": "Закуска",
|
||||
"start-date": "Дата початку",
|
||||
"rule-day": "Правило Днів",
|
||||
"meal-type": "Тип їжи",
|
||||
"meal-type": "Тип їжі",
|
||||
"breakfast": "Сніданок",
|
||||
"lunch": "Обід",
|
||||
"dinner": "Вечеря",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Будь-який",
|
||||
"day-any": "Будь-який",
|
||||
"editor": "Редактор",
|
||||
@@ -350,21 +353,21 @@
|
||||
"meal-note": "Нотатки страви",
|
||||
"note-only": "Тільки нотатки",
|
||||
"random-meal": "Випадкова страва",
|
||||
"random-dinner": "Випадкова Вечеря",
|
||||
"random-dinner": "Випадкова вечеря",
|
||||
"random-side": "Випадкова додаткова страва",
|
||||
"this-rule-will-apply": "Це правило буде застосовуватися до {dayCriteria} {mealTypeCriteria}.",
|
||||
"this-rule-will-apply": "Це правило буде застосовуватися до{dayCriteria} {mealTypeCriteria}.",
|
||||
"to-all-days": "до всіх днів",
|
||||
"on-days": "на {0}сек",
|
||||
"for-all-meal-types": "для всіх типів харчування",
|
||||
"for-type-meal-types": "для {0} типів харчування",
|
||||
"meal-plan-rules": "Правила планів харчування",
|
||||
"for-all-meal-types": "для всіх типів страв",
|
||||
"for-type-meal-types": "для {0} типів страв",
|
||||
"meal-plan-rules": "Правила меню",
|
||||
"new-rule": "Нове правило",
|
||||
"meal-plan-rules-description": "Ви можете створити правила для автоматичного вибору рецептів для ваших планів харчування. Ці правила використовуються сервером для вибору рецептів при створенні плану харчування. Зверніть увагу, що якщо правила мають обмеження на день/тип, то їх категорії будуть об'єднані. Дублювати правила немає сенсу, але можливо.",
|
||||
"new-rule-description": "При створенні нового правила для плану харчування, ви можете обмежити правило на певний день тижня та/або певний тип їжі. Щоб застосувати правило до всіх днів або всіх типів їжі, ви можете встановити правило \"Будь-який\", що застосовуватиме його до всіх можливих значень для дня та/або типу їжі.",
|
||||
"meal-plan-rules-description": "Ви можете створити правила для автоматичного вибору рецептів для ваших меню. Ці правила використовуються сервером для визначення випадкового набору рецептів, з яких можна вибирати при створенні меню. Зверніть увагу, що якщо правила мають однакові обмеження за днем/типом, то фільтри правил будуть об'єднані. На практиці створювати дублікати правил не потрібно, але це можливо.",
|
||||
"new-rule-description": "Створюючи нове правило для меню, ви можете обмежити його застосування певним днем тижня та/або певним типом харчування. Щоб застосувати правило до всіх днів або всіх типів харчування, ви можете встановити правило «Будь-який», яке застосовуватиметься до всіх можливих значень для дня та/або типу меню.",
|
||||
"recipe-rules": "Правила рецептів",
|
||||
"applies-to-all-days": "Застосовується до всіх днів",
|
||||
"applies-on-days": "Застосовується на {0}сек",
|
||||
"meal-plan-settings": "Налаштування плану харчування"
|
||||
"meal-plan-settings": "Налаштування меню"
|
||||
},
|
||||
"migration": {
|
||||
"migration-data-removed": "Дані міграції видалені",
|
||||
@@ -439,8 +442,8 @@
|
||||
"recipe-markup-specification": "Налаштування розмітки рецептів",
|
||||
"recipe-url": "URL-адреса рецепту",
|
||||
"recipe-html-or-json": "Рецепт HTML або JSON",
|
||||
"upload-a-recipe": "Відвантажити рецепт",
|
||||
"upload-individual-zip-file": "Відвантажити окремий .zip файл, експортований з іншого Mealie.",
|
||||
"upload-a-recipe": "Завантажити рецепт",
|
||||
"upload-individual-zip-file": "Завантажити окремий .zip файл, експортований з іншого Mealie.",
|
||||
"url-form-hint": "Скопіюйте та вставте посилання з вашого улюбленого кулінарного веб-сайту",
|
||||
"view-scraped-data": "Переглянути зібрані дані",
|
||||
"trim-whitespace-description": "Обрізати початкові та кінцеву пробілів і порожні лінії",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "Імпортувати рецепт з URL",
|
||||
"create-manually": "Створити рецепт вручну",
|
||||
"make-recipe-image": "Зробити це зображенням рецепту",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "Додати їжу",
|
||||
"add-recipe": "Додати рецепт"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404 - Сторінка не знайдена",
|
||||
@@ -487,7 +490,7 @@
|
||||
"disable-comments": "Вимкнути коментарі",
|
||||
"duplicate": "Дублювати рецепт",
|
||||
"duplicate-name": "Назва нового рецепту",
|
||||
"edit-scale": "Maßeinheiten bearbeiten",
|
||||
"edit-scale": "Редагувати порції",
|
||||
"fat-content": "Жири",
|
||||
"fiber-content": "Волокна",
|
||||
"grams": "грами",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "Рецепт видалено",
|
||||
"recipe-image": "Зображення рецепту",
|
||||
"recipe-image-updated": "Зображення рецепту оновлено",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "Видалити зображення рецепту",
|
||||
"delete-image-confirmation": "Ви впевнені, що хочете видалити це зображення рецепту?",
|
||||
"recipe-image-deleted": "Зображення рецепту видалено",
|
||||
"recipe-name": "Назва рецепта",
|
||||
"recipe-settings": "Налаштування рецепта",
|
||||
"recipe-update-failed": "Не вдалося оновити рецепт",
|
||||
@@ -544,19 +547,19 @@
|
||||
"no-recipe": "Немає рецепту",
|
||||
"locked-by-owner": "Заблоковано власником",
|
||||
"join-the-conversation": "Приєднатися до розмови",
|
||||
"add-recipe-to-mealplan": "Додати рецепт до плану харчування",
|
||||
"add-recipe-to-mealplan": "Додати рецепт до меню",
|
||||
"entry-type": "Тип",
|
||||
"date-format-hint": "Формат ММ/ДД/РРРР",
|
||||
"date-format-hint-yyyy-mm-dd": "РРРР-ММ-ДД формат",
|
||||
"add-to-list": "Додати до списку",
|
||||
"add-to-plan": "Додати до плану",
|
||||
"add-to-timeline": "Додати до хроніки",
|
||||
"add-to-timeline": "Додати до Хронології",
|
||||
"recipe-added-to-list": "Рецепт додано до списку",
|
||||
"recipes-added-to-list": "Рецепти додані до списку",
|
||||
"successfully-added-to-list": "Успішно додано до списку",
|
||||
"recipe-added-to-mealplan": "Рецепт додано до плану харчування",
|
||||
"recipe-added-to-mealplan": "Рецепт додано до меню",
|
||||
"failed-to-add-recipes-to-list": "Не вдалося додати рецепт до списку",
|
||||
"failed-to-add-recipe-to-mealplan": "Не вдалося додати рецепт до плану харчування",
|
||||
"failed-to-add-recipe-to-mealplan": "Не вдалося додати рецепт до меню",
|
||||
"failed-to-add-to-list": "Не вдалося додати до списку",
|
||||
"yield": "Вихід",
|
||||
"yields-amount-with-text": "Вийде: {amount} {text}",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Виберіть одиниці вимірювання",
|
||||
"press-enter-to-create": "Натисніть Enter, щоб створити",
|
||||
"choose-food": "Вибрати продукт",
|
||||
"choose-recipe": "Обрати рецепт",
|
||||
"notes": "Нотатки",
|
||||
"toggle-section": "Перемкнути секцію",
|
||||
"see-original-text": "Переглянути оригінальний текст",
|
||||
@@ -578,9 +582,9 @@
|
||||
"merge-above": "Об'єднати з тим що вище",
|
||||
"move-to-bottom": "Перемістити вниз",
|
||||
"move-to-top": "Перемістити вгору",
|
||||
"reset-scale": "Скинути масштабування",
|
||||
"decrease-scale-label": "Зменшити масштабування на 1",
|
||||
"increase-scale-label": "Збільшити масштабування на 1",
|
||||
"reset-scale": "Скинути порції",
|
||||
"decrease-scale-label": "Зменшити порцію на 1",
|
||||
"increase-scale-label": "Збільшити порцію на 1",
|
||||
"locked": "Заблоковано",
|
||||
"public-link": "Публічне посилання",
|
||||
"edit-timeline-event": "Редагувати подію хронології",
|
||||
@@ -592,12 +596,12 @@
|
||||
"made-this": "Я це приготував",
|
||||
"how-did-it-turn-out": "Як вийшло?",
|
||||
"user-made-this": "{user} зробив це",
|
||||
"made-for-recipe": "Made for {recipe}",
|
||||
"added-to-timeline": "Додати до хроніки",
|
||||
"failed-to-add-to-timeline": "Не вдалося додати до хроніки",
|
||||
"made-for-recipe": "Зроблено для {recipe}",
|
||||
"added-to-timeline": "Додати до хронології",
|
||||
"failed-to-add-to-timeline": "Не вдалося додати до хронології",
|
||||
"failed-to-update-recipe": "Не вдалося оновити рецепт",
|
||||
"added-to-timeline-but-failed-to-add-image": "Додано до хроніки, але не вдалося додати зображення",
|
||||
"api-extras-description": "Додатки в рецептах - ключова функція API Mealie. Вони дозволяють створювати користувацьку пару JSON ключів та значень в рецепті для сторонніх додатків. Це можна використовувати для автоматизації або для створення користувацьких повідомлень для сторонніх сервісів.",
|
||||
"added-to-timeline-but-failed-to-add-image": "Додано до хронології, але не вдалося додати зображення",
|
||||
"api-extras-description": "Розширення в рецептах - ключова функція API Mealie. Вони дозволяють створювати користувацьку пару JSON ключів та значень в рецепті для сторонніх додатків. Ви можете використовувати ці ключі для надання інформації, наприклад, для запуску автоматизації або власних повідомлень, які будуть передані на бажаний пристрій.",
|
||||
"message-key": "Ключ повідомлення",
|
||||
"parse": "Проаналізувати",
|
||||
"ingredients-not-parsed-description": "Схоже, що ваші інгредієнти ще не оброблені. Натисніть кнопку \"{parse}\" знизу, щоб проаналізувати свої інгредієнти в структуровані продукти.",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Спробуйте масовий розпізнавач",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "Маєте необроблені дані HTML або JSON?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "Ви можете імпортувати необроблені дані",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Імпортувати оригінальні ключові слова як теги",
|
||||
"stay-in-edit-mode": "Залишитися в режимі редактора",
|
||||
"parse-recipe-ingredients-after-import": "Розпізнавання інгредієнтів рецепту після імпорту",
|
||||
@@ -645,14 +651,14 @@
|
||||
"create-a-recipe-by-uploading-a-scan": "Створити рецепт, завантаживши скан.",
|
||||
"upload-a-png-image-from-a-recipe-book": "Завантажити png зображення з книги рецептів",
|
||||
"recipe-bulk-importer": "Масовий імпорт рецептів",
|
||||
"recipe-bulk-importer-description": "Масовий імпорт дозволяє імпортувати багато рецептів одночасно шляхом додавання посилань в чергу й імпорту в фоні. Це може бути корисним при початковій міграції на Mealie, або при імпорті великої кількості рецептів.",
|
||||
"recipe-bulk-importer-description": "Масовий імпортер рецептів дозволяє імпортувати відразу декілька рецептів, додаючи сайти в чергу на сервері та виконуючи завдання у фоновому режимі. Це може бути корисно під час початкового переходу на Mealie або коли ви хочете імпортувати велику кількість рецептів.",
|
||||
"set-categories-and-tags": "Обрати категорії та мітки",
|
||||
"bulk-imports": "Масовий імпорт",
|
||||
"bulk-import-process-has-started": "Процес масового імпорту розпочато",
|
||||
"bulk-import-process-has-failed": "Помилка масового імпорту",
|
||||
"report-deletion-failed": "Не вдалося видалити звіт",
|
||||
"recipe-debugger": "Дебаггер рецептів",
|
||||
"recipe-debugger-description": "Вставте URL-адресу рецепта, який ви хочете дебажити сюди. URL буде розпарсено парсером рецептів й результати будуть відображені. Якщо ви не бачите жодних даних - значить Mealie або парсер рецептів не підтримує сайт який ви намагаєтеся використати.",
|
||||
"recipe-debugger-description": "Скопіюйте URL-адресу рецепта, який ви хочете стягнути, і вставте її тут. URL-адреса буде вилучена за допомогою паресра рецептів, і результати будуть відображені. Якщо ви не бачите жодних даних, сайт, який ви намагаєтеся вилучити, не підтримується Mealie або його бібліотекою парсерів.",
|
||||
"use-openai": "Використовувати OpenAI",
|
||||
"recipe-debugger-use-openai-description": "Використовуйте OpenAI для аналізу результатів замість використання бібліотеки парсера. Під час створення рецепта через URL це робиться автоматично, якщо бібліотека парсера не впоралася, але ви можете перевірити це тут вручну.",
|
||||
"debug": "Дебажити",
|
||||
@@ -661,14 +667,14 @@
|
||||
"recipe-yield": "Вихід рецепту",
|
||||
"recipe-yield-text": "Вихід рецепту",
|
||||
"unit": "Одиниця виміру",
|
||||
"upload-image": "Вивантажити зображення",
|
||||
"upload-image": "Завантажити зображення",
|
||||
"screen-awake": "Тримати екран активним",
|
||||
"remove-image": "Видалити зображення",
|
||||
"nextStep": "Наступний крок",
|
||||
"recipe-actions": "Дії рецепту",
|
||||
"parser": {
|
||||
"ingredient-parser": "Аналізатор інгредієнтів",
|
||||
"explanation": "Щоб використати аналізатор інгредієнтів, натисніть кнопку 'Аналізувати все', щоб запустити процес. Після того, як інгредієнти проаналізовані, ви можете їх переглянути та переконатися, що вони були проаналізовані правильно. Оцінка надійності аналізу відображена праворуч від назви елемента. Ця оцінка розраховується як середнє значення усіх індивідуальних оцінок і не завжди може бути абсолютно точним.",
|
||||
"explanation": "Щоб скористатися аналізатором інгредієнтів, натисніть кнопку «Аналізувати все», щоб розпочати процес. Після обробки інгредієнтів ви можете переглянути елементи та перевірити, чи вони були проаналізовані правильно. Оцінка надійності моделі відображається праворуч від назви елемента. Ця оцінка є середнім значенням усіх окремих оцінок і не завжди може бути повністю точною.",
|
||||
"alerts-explainer": "Оповіщення будуть відображатися, якщо знайдені продукти або одиниці знайдені яких не існує в базі даних.",
|
||||
"select-parser": "Вибрати аналізатор",
|
||||
"natural-language-processor": "Аналізатор природної мови",
|
||||
@@ -695,12 +701,12 @@
|
||||
"upload-more-images": "Завантажити більше зображень",
|
||||
"set-as-cover-image": "Встановити як зображення обкладинки",
|
||||
"cover-image": "Обкладинка",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
"include-linked-recipes": "Включати зв'язані рецепти",
|
||||
"include-linked-recipe-ingredients": "Включити пов'язані інгредієнти рецепту",
|
||||
"toggle-recipe": "Переключити рецепт"
|
||||
},
|
||||
"recipe-finder": {
|
||||
"recipe-finder": "Шукач рецептів",
|
||||
"recipe-finder": "Пошук рецептів",
|
||||
"recipe-finder-description": "Пошук рецептів базується на продуктах, які ви маєте. Ви також можете фільтрувати за наявними інструментами та встановити максимальну кількість відсутніх продуктів або інструментів.",
|
||||
"selected-ingredients": "Вибрані продукти",
|
||||
"no-ingredients-selected": "Жодного продукту не вибрано",
|
||||
@@ -723,9 +729,9 @@
|
||||
"include": "Включаючи",
|
||||
"max-results": "Максимальна кількість результатів",
|
||||
"or": "Або",
|
||||
"has-any": "Є будь-яке",
|
||||
"has-any": "Містить будь-який",
|
||||
"has-all": "Є всі",
|
||||
"clear-selection": "Зняти позначення",
|
||||
"clear-selection": "Очистити вибір",
|
||||
"results": "Результати",
|
||||
"search": "Пошук",
|
||||
"search-mealie": "Пошук по Mealie (натисніть /)",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Натисніть '/'",
|
||||
"advanced": "Розширений",
|
||||
"auto-search": "Автопошук",
|
||||
"no-results": "Нічого не знайдено"
|
||||
"no-results": "Нічого не знайдено",
|
||||
"type-to-search": "Введіть текст для пошуку..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Додати нову тему",
|
||||
@@ -753,7 +760,7 @@
|
||||
"import-summary": "Резюме імпорту",
|
||||
"partial-backup": "Часткова резервна копія",
|
||||
"unable-to-delete-backup": "Не вдалося видалити резервну копію.",
|
||||
"experimental-description": "Резервні копії - це загальні знімки каталогу бази даних і даних сайту. Це включає всі дані без виключень. Вважайте це знімком Mealie у певний час. Вони служать способом експорту та імпорту даних, або створення резервної копії сайту.",
|
||||
"experimental-description": "Резервні копії - це повні знімки бази даних та каталогу даних сайту. Вони містять усі дані, і неможливо виключити з них окремі підмножини даних. Можна уявити це як знімок Mealie в певний момент часу. Вони слугують незалежним від бази даних способом експорту та імпорту даних або створення резервної копії сайту на зовнішньому носії.",
|
||||
"backup-restore": "Відновлення з резервної копії",
|
||||
"back-restore-description": "Відновлення резервної копії перезапише всі дані вашої бази даних і в каталозі даних і замінить їх вміст вмістом цієї резервної копії. {cannot-be-undone} Якщо відновлення успішне, вас вилогінить з системи.",
|
||||
"cannot-be-undone": "Цю дію не можна скасувати - використовуйте з обережністю.",
|
||||
@@ -783,7 +790,7 @@
|
||||
"locale-settings": "Налаштування локалі",
|
||||
"migrations": "Міграції",
|
||||
"new-page": "Нова сторінка",
|
||||
"notify": "Сповіщення",
|
||||
"notify": "Нагадати",
|
||||
"organize": "Впорядкувати",
|
||||
"page-name": "Назва сторінки",
|
||||
"pages": "Сторінки",
|
||||
@@ -845,7 +852,7 @@
|
||||
"webhooks-caps": "ВЕБХУКИ",
|
||||
"webhooks": "Вебхуки",
|
||||
"webhook-name": "Назва вебхука",
|
||||
"description": "Веб хуки, визначені нижче, будуть виконані коли буде визначено план харчування на день. В запланований час веб хук отримає дані з рецепта, який заплановано на день. Зверніть увагу, що виконання веб хука не точне в часі. Веб хуки виконуються з інтервалом в 5 хвилин, тому вони будуть виконані протягом 5 +/- хвилин від запланованого."
|
||||
"description": "Веб-хуки, визначені нижче, будуть виконуватися, коли буде визначено меню на день. У призначений час веб-хуки будуть надіслані з даними з рецепта, запланованого на цей день. Зверніть увагу, що виконання веб-хуків не є точним. Веб-хуки виконуються з інтервалом у 5 хвилин, тому вони будуть виконані протягом 5 +/- хвилин від призначеного часу."
|
||||
},
|
||||
"bug-report": "Повідомлення про помилку",
|
||||
"bug-report-information": "Використати цю інформацію, щоб повідомити про помилку. Надання даних з Mealie розробника найкращий спосіб пришвидшити розв'язання проблеми.",
|
||||
@@ -1016,9 +1023,9 @@
|
||||
"register": "Зареєструватися",
|
||||
"reset-password": "Скинути пароль",
|
||||
"sign-in": "Увійти",
|
||||
"total-mealplans": "Всього планів харчування",
|
||||
"total-mealplans": "Всього меню",
|
||||
"total-users": "Всього користувачів",
|
||||
"upload-photo": "Відвантажити світлину",
|
||||
"upload-photo": "Завантажити світлину",
|
||||
"use-8-characters-or-more-for-your-password": "Пароль повинен містити 8 або більше символів",
|
||||
"user-created": "Користувача створено",
|
||||
"user-creation-failed": "Не вдалося створити користувача",
|
||||
@@ -1085,9 +1092,9 @@
|
||||
},
|
||||
"data-pages": {
|
||||
"foods": {
|
||||
"merge-dialog-text": "Об'єднання вибраних продуктів об'єднає вихідний продукт та цільовий продукт до одного продукту. Вихідний продукт буде видалений і всі посилання на вихідний продукт будуть посилатися на цільовий продукт.",
|
||||
"merge-dialog-text": "Об’єднання вибраних продуктів створить єдину позицію. При цьому вихідний продукт буде видалено, а всі посилання на нього автоматично буде оновлено на цільовий продукт.",
|
||||
"merge-food-example": "Об'єднання {food1} в {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-text": "Заповніть базу даних продуктами вашою мовою. Це дозволить створити близько 2700 поширених продуктів, які можна використовувати для організації вашої бази даних. Продукти перекладаються спільними зусиллями спільноти.",
|
||||
"seed-dialog-warning": "У вас уже є деякі елементи в базі даних. Ця дія не об'єднає дублікати, вам доведеться керувати ними вручну.",
|
||||
"combine-food": "Об'єднати продукти",
|
||||
"source-food": "Вихідний продукт",
|
||||
@@ -1190,7 +1197,7 @@
|
||||
"create-a-new-group": "Створити нову групу",
|
||||
"provide-registration-token-description": "Будь ласка, вкажіть реєстраційний ключ, пов'язаний з групою, до якої ви хочете приєднатися. Цей токен потрібно буде отримати від існуючого члена групи.",
|
||||
"group-details": "Деталі групи",
|
||||
"group-details-description": "Перед створенням облікового запису вам потрібно створити групу. Спочатку ваша група буде містити тільки вас, але ви зможете запрошувати інших пізніше. Учасники вашої групи можуть обмінюватися планами харчування, списками покупок, рецептами і багато чим іншим!",
|
||||
"group-details-description": "Перед створенням облікового запису вам потрібно створити групу. Спочатку ваша група буде містити тільки вас, але ви зможете запрошувати інших пізніше. Учасники вашої групи можуть обмінюватися меню, списками покупок, рецептами і багато чим іншим!",
|
||||
"use-seed-data": "Використати початкові дані",
|
||||
"use-seed-data-description": "Mealie поставляється з набором продуктів, одиниць і міток, які можуть бути використані для наповнення ваших груп корисними даними для організації ваших рецептів. Це перекладено на вибрану вами мову. Ви можете додати або змінити ці дані пізніше.",
|
||||
"account-details": "Деталі акаунта"
|
||||
@@ -1299,8 +1306,8 @@
|
||||
"actions-title": "Дії"
|
||||
},
|
||||
"ingredients-natural-language-processor": "Обробка природної мови для інгредієнтів",
|
||||
"ingredients-natural-language-processor-explanation": "Mealie використовує умовні випадкові поля (УВП) для аналізу та обробки компонентів. Модель яка використовується для інгредієнтів, ґрунтується на наборі даних більш ніж 100 000 інгредієнтів з бази даних, зібраних Нью-Йорк Таймс. Зверніть увагу, що модель натренована на англійській мові, тож ви можете мати неточні результати при використанні моделі з іншими мовами. Ця сторінка є майданчиком для тестування моделі.",
|
||||
"ingredients-natural-language-processor-explanation-2": "Модель не ідеальна, але дає непогані результати в загальному і є хорошим початковим пунктом для ручного парсингу інгредієнтів в окремі поля. Крім того, ви можете використовувати \"Brute\" процесор, який використовує метод підбору для визначення інгредієнтів.",
|
||||
"ingredients-natural-language-processor-explanation": "Mealie використовує умовні випадкові поля (CRF) для аналізу та обробки інгредієнтів. Модель, що використовується для інгредієнтів, базується на наборі даних, що містить понад 100 000 інгредієнтів, зібраних газетою New York Times. Зверніть увагу, що оскільки модель навчена лише англійською мовою, при використанні моделі іншими мовами результати можуть відрізнятися. Ця сторінка є майданчиком для тестування моделі.",
|
||||
"ingredients-natural-language-processor-explanation-2": "Модель не ідеальна, але загалом дає чудові результати і є гарною відправною точкою для ручного розбиття інгредієнтів на окремі поля. Як альтернативу, ви також можете використовувати процесор «Brute», який використовує техніку зіставлення шаблонів для ідентифікації інгредієнтів.",
|
||||
"nlp": "ОПМ",
|
||||
"brute": "Брут",
|
||||
"openai": "OpenAI",
|
||||
@@ -1354,12 +1361,12 @@
|
||||
"group-settings-description": "Керуйте спільними налаштуваннями групи, як-от налаштування конфіденційності.",
|
||||
"household-description": "Ці елементи є спільними для вашої сімʼї. Редагування одного з них змінить його для всієї сімʼї!",
|
||||
"household-settings": "Налаштування сімʼї",
|
||||
"household-settings-description": "Керуйте налаштуваннями сімʼї, такими як план харчування і налаштування конфіденційності.",
|
||||
"household-settings-description": "Керуйте налаштуваннями сімʼї, такими як меню і налаштування конфіденційності.",
|
||||
"cookbooks-description": "Управління колекцією категорій рецептів і генерація сторінок для них.",
|
||||
"members": "Учасники",
|
||||
"members-description": "Подивіться, хто у вас в сім'ї й керуйте їх дозволами.",
|
||||
"webhooks-description": "Налаштуйте веб хуки, що спрацьовують у дні, коли у вас є запланований план харчування.",
|
||||
"notifiers": "Сповіщувачі",
|
||||
"webhooks-description": "Налаштуйте веб хуки, що спрацьовують у дні, коли у вас є заплановане меню.",
|
||||
"notifiers": "Нагадувачі",
|
||||
"notifiers-description": "Налаштуйте email та push сповіщення, що спрацьовують для певних подій.",
|
||||
"manage-data": "Керування даними",
|
||||
"manage-data-description": "Керуйте своїми даними Mealie; їжа, одиниці, категорії, мітки та багато іншого.",
|
||||
@@ -1377,7 +1384,7 @@
|
||||
"manage-cookbooks": "Керування кулінарними книгами",
|
||||
"manage-members": "Керування користувачами",
|
||||
"manage-webhooks": "Керування вебхуками",
|
||||
"manage-notifiers": "Керування Сповіщувачами",
|
||||
"manage-notifiers": "Керування Нагадувачами",
|
||||
"manage-data-migrations": "Керування міграцією даних"
|
||||
},
|
||||
"cookbook": {
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Breakfast",
|
||||
"lunch": "Lunch",
|
||||
"dinner": "Dinner",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Any",
|
||||
"day-any": "Any",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Choose Unit",
|
||||
"press-enter-to-create": "Press Enter to Create",
|
||||
"choose-food": "Choose Food",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Toggle Section",
|
||||
"see-original-text": "See Original Text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Import original keywords as tags",
|
||||
"stay-in-edit-mode": "Stay in Edit mode",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Press '/'",
|
||||
"advanced": "Advanced",
|
||||
"auto-search": "Auto Search",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "Add a New Theme",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "早餐",
|
||||
"lunch": "午餐",
|
||||
"dinner": "晚餐",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "甜点",
|
||||
"type-any": "任意",
|
||||
"day-any": "任意",
|
||||
"editor": "编辑器",
|
||||
@@ -449,8 +452,8 @@
|
||||
"import-by-url": "通过网址导入食谱",
|
||||
"create-manually": "手动创建食谱",
|
||||
"make-recipe-image": "将此设为食谱图片",
|
||||
"add-food": "Add Food",
|
||||
"add-recipe": "Add Recipe"
|
||||
"add-food": "添加食物",
|
||||
"add-recipe": "添加食谱"
|
||||
},
|
||||
"page": {
|
||||
"404-page-not-found": "404-页面未找到",
|
||||
@@ -517,9 +520,9 @@
|
||||
"recipe-deleted": "食谱已删除",
|
||||
"recipe-image": "食谱图片",
|
||||
"recipe-image-updated": "食谱图片已更新",
|
||||
"delete-image": "Delete Recipe Image",
|
||||
"delete-image-confirmation": "Are you sure you want to delete this recipe image?",
|
||||
"recipe-image-deleted": "Recipe image deleted",
|
||||
"delete-image": "删除食谱图像",
|
||||
"delete-image-confirmation": "您确定要删除此食谱图像吗?",
|
||||
"recipe-image-deleted": "食谱图片已删除",
|
||||
"recipe-name": "食谱名称",
|
||||
"recipe-settings": "食谱设置",
|
||||
"recipe-update-failed": "食谱更新失败",
|
||||
@@ -565,12 +568,13 @@
|
||||
"choose-unit": "选择单位",
|
||||
"press-enter-to-create": "按回车键以创建",
|
||||
"choose-food": "选择食品",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "备注",
|
||||
"toggle-section": "切换分类",
|
||||
"see-original-text": "查看原文",
|
||||
"original-text-with-value": "原文: {originalText}",
|
||||
"ingredient-linker": "食材关联器",
|
||||
"unlinked": "Not linked yet",
|
||||
"unlinked": "未链接",
|
||||
"linked-to-other-step": "已关联到其他步骤",
|
||||
"auto": "自动",
|
||||
"cook-mode": "烹饪模式",
|
||||
@@ -632,9 +636,11 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "试试批量导入器",
|
||||
"scrape-recipe-have-raw-html-or-json-data": "有原始 HTML 或 JSON 数据?",
|
||||
"scrape-recipe-you-can-import-from-raw-data-directly": "您可以直接从原始数据导入",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "导入原始关键字作为标签",
|
||||
"stay-in-edit-mode": "留在编辑模式",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
"parse-recipe-ingredients-after-import": "导入后解析食材",
|
||||
"import-from-zip": "从Zip压缩包导入",
|
||||
"import-from-zip-description": "导入从另一个Mealie应用导出的单个食谱。",
|
||||
"import-from-html-or-json": "从 HTML 或 JSON 导入",
|
||||
@@ -682,10 +688,10 @@
|
||||
"this-food-could-not-be-parsed-automatically": "这种食物不能被自动解析",
|
||||
"no-food": "没有食物",
|
||||
"review-parsed-ingredients": "Review parsed ingredients",
|
||||
"confidence-score": "Confidence Score",
|
||||
"ingredient-parser-description": "Your ingredients have been successfully parsed. Please review the ingredients we're not sure about.",
|
||||
"ingredient-parser-final-review-description": "Once all ingredients have been reviewed, you'll have one more chance to review all ingredients before applying the changes to your recipe.",
|
||||
"add-text-as-alias-for-item": "Add \"{text}\" as alias for {item}",
|
||||
"confidence-score": "置信度",
|
||||
"ingredient-parser-description": "您的食材已成功解析。请检查我们不确定的食材。",
|
||||
"ingredient-parser-final-review-description": "一旦所有食材都检查完毕,在将更改应用到您的菜谱之前,您还有最后一次机会检查所有食材。",
|
||||
"add-text-as-alias-for-item": "将“{text}”添加为“{item}”的别名",
|
||||
"delete-item": "Delete Item"
|
||||
},
|
||||
"reset-servings-count": "重置份量数量",
|
||||
@@ -695,7 +701,7 @@
|
||||
"upload-more-images": "上传更多图片",
|
||||
"set-as-cover-image": "设置为食谱封面图片",
|
||||
"cover-image": "封面图片",
|
||||
"include-linked-recipes": "Include Linked Recipes",
|
||||
"include-linked-recipes": "包含已链接的菜谱",
|
||||
"include-linked-recipe-ingredients": "Include Linked Recipe Ingredients",
|
||||
"toggle-recipe": "Toggle Recipe"
|
||||
},
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "按 '/'",
|
||||
"advanced": "高级",
|
||||
"auto-search": "自动搜索",
|
||||
"no-results": "未找到任何结果"
|
||||
"no-results": "未找到任何结果",
|
||||
"type-to-search": "键入以搜索……"
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "新增布景主题",
|
||||
@@ -877,7 +884,7 @@
|
||||
"ldap-ready": "LDAP 已就绪",
|
||||
"ldap-ready-error-text": "某些LDAP环境变量尚未配置。(如果你不使用LDAP验证可以忽略该报错)",
|
||||
"ldap-ready-success-text": "LDAP所需的环境变量均已配置。",
|
||||
"build": "生成",
|
||||
"build": "构建",
|
||||
"recipe-scraper-version": "食谱刮削器版本",
|
||||
"oidc-ready": "OIDC 已就绪",
|
||||
"oidc-ready-error-text": "某些OIDC环境变量尚未配置。(如果你不使用OIDC验证可以忽略该报错)",
|
||||
|
||||
@@ -342,6 +342,9 @@
|
||||
"breakfast": "Breakfast",
|
||||
"lunch": "午餐",
|
||||
"dinner": "晚餐",
|
||||
"snack": "Snack",
|
||||
"drink": "Drink",
|
||||
"dessert": "Dessert",
|
||||
"type-any": "Any",
|
||||
"day-any": "Any",
|
||||
"editor": "Editor",
|
||||
@@ -565,6 +568,7 @@
|
||||
"choose-unit": "Choose Unit",
|
||||
"press-enter-to-create": "Press Enter to Create",
|
||||
"choose-food": "Choose Food",
|
||||
"choose-recipe": "Choose Recipe",
|
||||
"notes": "Notes",
|
||||
"toggle-section": "Toggle Section",
|
||||
"see-original-text": "See Original Text",
|
||||
@@ -632,6 +636,8 @@
|
||||
"scrape-recipe-suggest-bulk-importer": "Try out the bulk importer",
|
||||
"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",
|
||||
"scrape-recipe-website-being-blocked": "Website being blocked?",
|
||||
"scrape-recipe-try-importing-raw-html-instead": "Try importing the raw HTML instead.",
|
||||
"import-original-keywords-as-tags": "Import original keywords as tags",
|
||||
"stay-in-edit-mode": "Stay in Edit mode",
|
||||
"parse-recipe-ingredients-after-import": "Parse recipe ingredients after import",
|
||||
@@ -734,7 +740,8 @@
|
||||
"search-hint": "Press '/'",
|
||||
"advanced": "Advanced",
|
||||
"auto-search": "Auto Search",
|
||||
"no-results": "No results found"
|
||||
"no-results": "No results found",
|
||||
"type-to-search": "Type to search..."
|
||||
},
|
||||
"settings": {
|
||||
"add-a-new-theme": "新增佈景主題",
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
<TheSnackbar />
|
||||
|
||||
<v-banner
|
||||
v-if="isDemo"
|
||||
v-if="$appInfo.demoStatus"
|
||||
sticky
|
||||
>
|
||||
<div class="text-center">
|
||||
<b> {{ $t("demo.info_message_with_version", { version: version }) }} </b>
|
||||
<b> {{ $t("demo.info_message_with_version", { version: $appInfo.version }) }} </b>
|
||||
</div>
|
||||
</v-banner>
|
||||
|
||||
@@ -23,24 +23,8 @@
|
||||
|
||||
<script lang="ts">
|
||||
import TheSnackbar from "~/components/Layout/LayoutParts/TheSnackbar.vue";
|
||||
import { useAppInfo } from "~/composables/api";
|
||||
import { useGlobalI18n } from "~/composables/use-global-i18n";
|
||||
|
||||
export default defineNuxtComponent({
|
||||
components: { TheSnackbar },
|
||||
setup() {
|
||||
const appInfo = useAppInfo();
|
||||
|
||||
const isDemo = computed(() => appInfo?.value?.demoStatus || false);
|
||||
|
||||
const i18n = useGlobalI18n();
|
||||
const version = computed(() => appInfo?.value?.version || i18n.t("about.unknown-version"));
|
||||
|
||||
return {
|
||||
appInfo,
|
||||
isDemo,
|
||||
version,
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
@@ -18,6 +18,7 @@ export interface AdminAboutInfo {
|
||||
oidcProviderName: string;
|
||||
enableOpenai: boolean;
|
||||
enableOpenaiImageServices: boolean;
|
||||
tokenTime: number;
|
||||
versionLatest: string;
|
||||
apiPort: number;
|
||||
apiDocs: boolean;
|
||||
@@ -50,6 +51,7 @@ export interface AppInfo {
|
||||
oidcProviderName: string;
|
||||
enableOpenai: boolean;
|
||||
enableOpenaiImageServices: boolean;
|
||||
tokenTime: number;
|
||||
}
|
||||
export interface AppStartupInfo {
|
||||
isFirstLogin: boolean;
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
/* Do not modify it by hand - just update the pydantic models and then re-run the script
|
||||
*/
|
||||
|
||||
export type PlanEntryType = "breakfast" | "lunch" | "dinner" | "side";
|
||||
export type PlanEntryType = "breakfast" | "lunch" | "dinner" | "side" | "snack" | "drink" | "dessert";
|
||||
export type PlanRulesDay = "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | "unset";
|
||||
export type PlanRulesType = "breakfast" | "lunch" | "dinner" | "side" | "unset";
|
||||
export type PlanRulesType = "breakfast" | "lunch" | "dinner" | "side" | "snack" | "drink" | "dessert" | "unset";
|
||||
export type LogicalOperator = "AND" | "OR";
|
||||
export type RelationalKeyword = "IS" | "IS NOT" | "IN" | "NOT IN" | "CONTAINS ALL" | "LIKE" | "NOT LIKE";
|
||||
export type RelationalOperator = "=" | "<>" | ">" | "<" | ">=" | "<=";
|
||||
@@ -53,7 +53,6 @@ export interface QueryFilterJSONPart {
|
||||
attributeName?: string | null;
|
||||
relationalOperator?: RelationalKeyword | RelationalOperator | null;
|
||||
value?: string | string[] | null;
|
||||
[k: string]: unknown;
|
||||
}
|
||||
export interface PlanRulesSave {
|
||||
day?: PlanRulesDay;
|
||||
@@ -106,14 +105,12 @@ export interface RecipeCategory {
|
||||
groupId?: string | null;
|
||||
name: string;
|
||||
slug: string;
|
||||
[k: string]: unknown;
|
||||
}
|
||||
export interface RecipeTag {
|
||||
id?: string | null;
|
||||
groupId?: string | null;
|
||||
name: string;
|
||||
slug: string;
|
||||
[k: string]: unknown;
|
||||
}
|
||||
export interface RecipeTool {
|
||||
id: string;
|
||||
@@ -121,7 +118,6 @@ export interface RecipeTool {
|
||||
name: string;
|
||||
slug: string;
|
||||
householdsWithTool?: string[];
|
||||
[k: string]: unknown;
|
||||
}
|
||||
export interface SavePlanEntry {
|
||||
date: string;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user