diff --git a/.gitignore b/.gitignore index 44102a49..c9d46f23 100644 --- a/.gitignore +++ b/.gitignore @@ -1,137 +1,150 @@ -# ────────────────────────────────────────────────────────────────────────── -# Python bytecode, caches, and compiled artifacts -# ────────────────────────────────────────────────────────────────────────── -# Byte-compiled / optimized / DLL files +# ╔═══════════════════════════════════════════════════════════════════════════╗ +# ║ ║ +# ║ ███████╗ ██████╗██╗ ██╗ ██████╗ ███╗ ██╗ ║ +# ║ ██╔════╝██╔════╝██║ ██║██╔═══██╗████╗ ██║ ║ +# ║ ███████╗██║ ███████║██║ ██║██╔██╗ ██║ ║ +# ║ ╚════██║██║ ██╔══██║██║ ██║██║╚██╗██║ ║ +# ║ ███████║╚██████╗██║ ██║╚██████╔╝██║ ╚████║ ║ +# ║ ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ║ +# ║ ║ +# ╚═══════════════════════════════════════════════════════════════════════════╝ + + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Python │ +# └───────────────────────────────────────────────────────────────────────────┘ + +# Bytecode & compiled *.py[cod] *$py.class *.so -# Cache directories +# Caches __pycache__/ .pytest_cache/ .hypothesis/ +.mypy_cache/ .pyre/ .pytype/ -.mypy_cache/ .dmypy.json dmypy.json cython_debug/ -# Python environments +# Virtual environments .Python +.venv/ +venv/ env/ +ENV/ env.bak/ ENV.bak/ -venv/ venv.bak/ -ENV/ -.venv/ __pypackages__/ .python-version -# Local Django settings and database + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Django │ +# └───────────────────────────────────────────────────────────────────────────┘ + local_settings.py db.sqlite3 db.sqlite3-journal - -# Django backups and metadata instance/ backups/ -# ────────────────────────────────────────────────────────────────────────── -# Logs and reports -# ────────────────────────────────────────────────────────────────────────── -logs/ -*.log -debug.log -errors.log -test.json -coverage.xml -coverage.* -*.cover -*.py,cover -nosetests.xml -tmp - -# Coverage / test reports -htmlcov/ -.coverage -.coverage.* - -# CI / tox / nox -.tox/ -.nox/ -.scrapy -.cover -.pybuilder/ - -# Storefronts -.nuxt/ -.next/ -next-env.d.ts - -# Celery -celerybeat-schedule -celerybeat.pid - -# ────────────────────────────────────────────────────────────────────────── -# Packaging and distribution -# ────────────────────────────────────────────────────────────────────────── -build/ -dist/ -dist-ssr/ -*.egg -*.egg-info/ -.installed.cfg -MANIFEST -*.manifest -*.spec -sdist/ -wheels/ -share/python-wheels/ -pip-log.txt -pip-delete-this-directory.txt -desktop.ini -*.iml - -# Node build artifacts -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* -site/ - -# ────────────────────────────────────────────────────────────────────────── -# Static, media, and uploads -# ────────────────────────────────────────────────────────────────────────── +# Static & media (collected) static/ media/ -# Allow checked-in static from apps +# Allow checked-in app static files !engine/core/static/ !engine/payments/static/ !engine/vibes_auth/static/ !engine/blog/static/ -# Webassets -.webassets-cache/ +# Celery +celerybeat-schedule +celerybeat.pid + + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Testing & Coverage │ +# └───────────────────────────────────────────────────────────────────────────┘ + +htmlcov/ +.coverage +.coverage.* +coverage.xml +coverage.* +*.cover +*.py,cover +nosetests.xml +test.json +.tox/ +.nox/ + + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Logs │ +# └───────────────────────────────────────────────────────────────────────────┘ + +logs/ +*.log +debug.log +errors.log +tmp/ + + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Build & Distribution │ +# └───────────────────────────────────────────────────────────────────────────┘ + +build/ +dist/ +dist-ssr/ +sdist/ +wheels/ +*.egg +*.egg-info/ +*.manifest +*.spec +.installed.cfg +MANIFEST +share/python-wheels/ +pip-log.txt +pip-delete-this-directory.txt + + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Node.js & Frontend │ +# └───────────────────────────────────────────────────────────────────────────┘ -# ────────────────────────────────────────────────────────────────────────── -# Node dependencies -# ────────────────────────────────────────────────────────────────────────── node_modules/ +.nuxt/ +.next/ +next-env.d.ts +*.tsbuildinfo +.webassets-cache/ +site/ -# ────────────────────────────────────────────────────────────────────────── -# Cypress test artifacts -# ────────────────────────────────────────────────────────────────────────── +# Debug logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# Cypress cypress/videos/ cypress/screenshots/ -# ────────────────────────────────────────────────────────────────────────── -# IDEs and editors -# ────────────────────────────────────────────────────────────────────────── -# VSCode + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ IDEs & Editors │ +# └───────────────────────────────────────────────────────────────────────────┘ + +# VS Code .vscode/ !.vscode/extensions.json @@ -139,33 +152,47 @@ cypress/screenshots/ .idea/ !.idea/icon.svg !.idea/externalDependencies.xml -!.idea/evibes.iml -!.idea/evibes.ico +!.idea/schon.iml -# Microsoft +# Visual Studio *.suo *.ntvs* *.njsproj *.sln *.sw? -# Spyder / Rope +# Spyder & Rope .spyderproject .spyproject .ropeproject -# macOS + +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ OS & System │ +# └───────────────────────────────────────────────────────────────────────────┘ + .DS_Store +desktop.ini +*.iml -# TypeScript -*.tsbuildinfo -# Environment file +# ┌───────────────────────────────────────────────────────────────────────────┐ +# │ Project-specific │ +# └───────────────────────────────────────────────────────────────────────────┘ + +# Environment .env -# Development stuff +# Development test.ipynb +.scrapy +.cover +.pybuilder/ +engine/core/vendors/docs/* -# Production stuff +# Production .initialized -queries \ No newline at end of file +queries/ + +# AI assistants +.claude/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 0255c9fa..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,51 +0,0 @@ -image: ghcr.io/astral-sh/uv:python3.12-bookworm - -stages: - - lint - - typecheck - - test - -variables: - UV_PYTHON: "3.12" - PIP_DISABLE_PIP_VERSION_CHECK: "1" - PYTHONDONTWRITEBYTECODE: "1" - -before_script: - - uv sync --frozen --extra linting - -lint: - stage: lint - script: - - uv run ruff format --check . - - uv run ruff check --force-exclude . - rules: - - changes: - - "**/*.py" - - "pyproject.toml" - - ".pre-commit-config.yaml" - when: on_success - - when: never - -typecheck: - stage: typecheck - script: - - uv run ty check - rules: - - changes: - - "**/*.py" - - "pyproject.toml" - when: on_success - - when: never - -test: - stage: test - script: - - uv run pytest -q - rules: - - changes: - - "**/*.py" - - "pyproject.toml" - - "pytest.ini" - - "pyproject.toml" - when: on_success - - when: never \ No newline at end of file diff --git a/.idea/evibes.ico b/.idea/evibes.ico deleted file mode 100644 index f3ba783b..00000000 Binary files a/.idea/evibes.ico and /dev/null differ diff --git a/.idea/icon.svg b/.idea/icon.svg index 356c7ae0..4fbb31b3 100644 --- a/.idea/icon.svg +++ b/.idea/icon.svg @@ -1,25 +1,1247 @@ - - - + + + + + + .st1 { + fill: #495158; + } + + .st2 { + fill: #c1c6cb; + } + + .st3 { + fill: #e3e3e4; + } + + .st4 { + fill: #27292d; + } + + .st5 { + fill: #b6bdc3; + } + + .st6 { + fill: #555e64; + } + + .st7 { + fill: #848c93; + } + + .st8 { + fill: #2b2e33; + } + + .st9 { + fill: #e2e2e2; + } + + .st10 { + fill: #6c757b; + } + + .st11 { + fill: #24262a; + } + + .st12 { + fill: #373c41; + } + + .st13 { + fill: #c8cdd1; + } + + .st14 { + fill: #d5dadd; + } + + .st15 { + fill: #31353a; + } + + .st16 { + fill: #757f85; + } + + .st17 { + fill: #a1a9af; + } + + .st18 { + fill: #606970; + } + + .st19 { + fill: #1c1d20; + } + + .st20 { + fill: #8a939b; + } + + .st21 { + fill: #1f2124; + } + + .st22 { + fill: #4f565d; + } + + .st23 { + fill: #5a636a; + } + + .st24 { + fill: #e4e5e6; + } + + .st25 { + fill: #3f444b; + } + + .st26 { + fill: #18191b; + } + + .st27 { + fill: #2f3136; + } + + .st28 { + fill: #98a0a7; + } + + .st29 { + fill: #e4e4e4; + } + + .st30 { + fill: #cdd1d5; + } + + .st31 { + fill: #1a1b1e; + } + + .st32 { + fill: #7f898f; + } + + .st33 { + fill: #aab1b6; + } + + .st34 { + fill: #454b52; + } + + .st35 { + fill: #ebeded; + } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..79164f3d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +# Changelog + +All notable changes to Schon are documented in this file. + +Version format follows [CalVer](https://calver.org/) as `YYYY.MAJOR`. + +--- + +## [2026.1] - 2026-01-25 + +Initial CalVer release. Project renamed from eVibes to Schon. + +### Highlights + +- Complete rebrand from eVibes to Schon +- Native Linux deployment with systemd service files +- uv-based dependency management +- Interactive installer supporting Docker and native deployments +- Professional documentation and project structure + +### Added + +- systemd service files for production deployment (`schon-web`, `schon-worker`, `schon-beat`, `schon-stock-updater`) +- Native Linux installation script with automated setup +- CHANGELOG.md for tracking releases + +### Changed + +- Project name: eVibes to Schon +- Version scheme: SemVer to CalVer (YYYY.MAJOR) +- Installation: `make install` now prompts for Docker vs native deployment + +### Removed + +- Legacy eVibes branding and assets diff --git a/CODEOWNERS b/CODEOWNERS index bc569427..24ac3d27 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -26,7 +26,7 @@ uv.lock @fureunoir contact@fureunoir.com blog/ @fureunoir contact@fureunoir.com core/ @fureunoir contact@fureunoir.com -evibes/ @fureunoir contact@fureunoir.com +schon/ @fureunoir contact@fureunoir.com payments/ @fureunoir contact@fureunoir.com scripts/ @fureunoir contact@fureunoir.com vibes_auth/ @fureunoir contact@fureunoir.com diff --git a/Dockerfiles/app.Dockerfile b/Dockerfiles/app.Dockerfile index 622f4b25..aec7b78c 100644 --- a/Dockerfiles/app.Dockerfile +++ b/Dockerfiles/app.Dockerfile @@ -23,11 +23,9 @@ RUN set -eux; \ libpq-dev \ gettext \ libgettextpo-dev \ - graphviz-dev \ libgts-dev \ libpq5 \ chrony \ - graphviz \ binutils \ libproj-dev \ postgresql-client-17 \ @@ -38,16 +36,16 @@ RUN set -eux; \ RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:/root/.cargo/bin:$PATH" -RUN uv venv /opt/evibes-python -ENV VIRTUAL_ENV=/opt/evibes-python -ENV UV_PROJECT_ENVIRONMENT=/opt/evibes-python -ENV PATH="/opt/evibes-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" +RUN uv venv /opt/schon-python +ENV VIRTUAL_ENV=/opt/schon-python +ENV UV_PROJECT_ENVIRONMENT=/opt/schon-python +ENV PATH="/opt/schon-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" COPY pyproject.toml pyproject.toml COPY uv.lock uv.lock RUN set -eux; \ - uv sync --extra graph --extra worker --extra openai --locked + uv sync --extra worker --extra openai --locked COPY ./scripts/Docker/app-entrypoint.sh /usr/local/bin/app-entrypoint.sh RUN chmod +x /usr/local/bin/app-entrypoint.sh diff --git a/Dockerfiles/beat.Dockerfile b/Dockerfiles/beat.Dockerfile index 97cdd9ee..9c5313d6 100644 --- a/Dockerfiles/beat.Dockerfile +++ b/Dockerfiles/beat.Dockerfile @@ -23,11 +23,9 @@ RUN set -eux; \ libpq-dev \ gettext \ libgettextpo-dev \ - graphviz-dev \ libgts-dev \ libpq5 \ chrony \ - graphviz \ binutils \ libproj-dev \ postgresql-client-17 \ @@ -37,11 +35,10 @@ RUN set -eux; \ RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:/root/.cargo/bin:$PATH" -ENV UV_PROJECT_ENVIRONMENT=/opt/evibes-python -ENV PATH="/opt/evibes-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" - -RUN uv venv /opt/evibes-python -ENV VIRTUAL_ENV=/opt/evibes-python +RUN uv venv /opt/schon-python +ENV VIRTUAL_ENV=/opt/schon-python +ENV UV_PROJECT_ENVIRONMENT=/opt/schon-python +ENV PATH="/opt/schon-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" COPY pyproject.toml pyproject.toml COPY uv.lock uv.lock diff --git a/Dockerfiles/stock_updater.Dockerfile b/Dockerfiles/stock_updater.Dockerfile index f725d9b8..95b5bc86 100644 --- a/Dockerfiles/stock_updater.Dockerfile +++ b/Dockerfiles/stock_updater.Dockerfile @@ -23,11 +23,9 @@ RUN set -eux; \ libpq-dev \ gettext \ libgettextpo-dev \ - graphviz-dev \ libgts-dev \ libpq5 \ chrony \ - graphviz \ binutils \ libproj-dev \ postgresql-client-17 \ @@ -37,11 +35,10 @@ RUN set -eux; \ RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:/root/.cargo/bin:$PATH" -ENV UV_PROJECT_ENVIRONMENT=/opt/evibes-python -ENV PATH="/opt/evibes-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" - -RUN uv venv /opt/evibes-python -ENV VIRTUAL_ENV=/opt/evibes-python +RUN uv venv /opt/schon-python +ENV VIRTUAL_ENV=/opt/schon-python +ENV UV_PROJECT_ENVIRONMENT=/opt/schon-python +ENV PATH="/opt/schon-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" COPY pyproject.toml pyproject.toml COPY uv.lock uv.lock diff --git a/Dockerfiles/supervisor.Dockerfile b/Dockerfiles/supervisor.Dockerfile index f6835cc5..977695b8 100644 --- a/Dockerfiles/supervisor.Dockerfile +++ b/Dockerfiles/supervisor.Dockerfile @@ -2,10 +2,10 @@ FROM node:22-bookworm-slim AS build WORKDIR /app -ARG EVIBES_BASE_DOMAIN -ARG EVIBES_PROJECT_NAME -ENV EVIBES_BASE_DOMAIN=$EVIBES_BASE_DOMAIN -ENV EVIBES_PROJECT_NAME=$EVIBES_PROJECT_NAME +ARG schon_BASE_DOMAIN +ARG schon_PROJECT_NAME +ENV schon_BASE_DOMAIN=$schon_BASE_DOMAIN +ENV schon_PROJECT_NAME=$schon_PROJECT_NAME COPY ./supervisor/package.json ./supervisor/package-lock.json ./ RUN npm ci --include=optional diff --git a/Dockerfiles/worker.Dockerfile b/Dockerfiles/worker.Dockerfile index 62bd35ce..f8d40bb8 100644 --- a/Dockerfiles/worker.Dockerfile +++ b/Dockerfiles/worker.Dockerfile @@ -23,11 +23,9 @@ RUN set -eux; \ libpq-dev \ gettext \ libgettextpo-dev \ - graphviz-dev \ libgts-dev \ libpq5 \ chrony \ - graphviz \ binutils \ libproj-dev \ postgresql-client-17 \ @@ -38,10 +36,10 @@ RUN set -eux; \ RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:/root/.cargo/bin:$PATH" -RUN uv venv /opt/evibes-python -ENV VIRTUAL_ENV=/opt/evibes-python -ENV UV_PROJECT_ENVIRONMENT=/opt/evibes-python -ENV PATH="/opt/evibes-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" +RUN uv venv /opt/schon-python +ENV VIRTUAL_ENV=/opt/schon-python +ENV UV_PROJECT_ENVIRONMENT=/opt/schon-python +ENV PATH="/opt/schon-python/bin:/root/.local/bin:/root/.cargo/bin:$PATH" COPY pyproject.toml pyproject.toml COPY uv.lock uv.lock diff --git a/LICENSE b/LICENSE index 350dcf2f..2f8f6a59 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,8 @@ -eVibes License – Version 2.0, April 29, 2025 +Schon License – Version 2.0, April 29, 2025 Copyright (c) 2025 Egor “fureunoir” Gorbunov -Permission is hereby granted, free of charge, to any person obtaining a copy of the eVibes software and associated documentation (the “Software”), to use, copy, modify, merge, publish, distribute, and sublicense the Software, subject to the terms and conditions below. Any distribution of the Software (in source or binary form) must include a copy of this License and preserve the above copyright notice. By using the Software, you indicate your acceptance of these terms. If you do not agree to these terms, you have no rights to use the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy of the Schon software and associated documentation (the “Software”), to use, copy, modify, merge, publish, distribute, and sublicense the Software, subject to the terms and conditions below. Any distribution of the Software (in source or binary form) must include a copy of this License and preserve the above copyright notice. By using the Software, you indicate your acceptance of these terms. If you do not agree to these terms, you have no rights to use the Software. 1. Non-Commercial Use The Software is provided at no cost for personal, academic, or other non-commercial purposes. “Non-Commercial Use” means any use of the Software that does not generate income (directly or indirectly) and is not part of a for-profit or revenue-generating activity. For Non-Commercial Use, the Software is provided “AS IS” and without any warranty or liability. You may freely use and modify the Software for Non-Commercial purposes, and you may distribute it for non-commercial ends as long as this License is included and the same terms apply to all recipients. @@ -55,4 +55,4 @@ Egor “fureunoir” Gorbunov Email: contact@fureunoir.com Telegram: https://t.me/fureunoir -By using the eVibes framework, you acknowledge that you have read and understood this License and agree to be bound by its terms. +By using the Schon framework, you acknowledge that you have read and understood this License and agree to be bound by its terms. diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..9845e4e2 --- /dev/null +++ b/Makefile @@ -0,0 +1,122 @@ +.PHONY: help install run restart test test-xml test-html uninstall backup \ + generate-env export-env make-messages compile-messages \ + format check typecheck precommit clear make-migrations migrate + +# Detect OS and set script paths +ifeq ($(OS),Windows_NT) + SCRIPT_DIR := scripts/Windows + SCRIPT_EXT := .ps1 + RUN_SCRIPT = pwsh -ExecutionPolicy Bypass -File ./$(SCRIPT_DIR)/$(1)$(SCRIPT_EXT) + CLEAR_CMD := cls +else + SCRIPT_DIR := scripts/Unix + SCRIPT_EXT := .sh + RUN_SCRIPT = bash ./$(SCRIPT_DIR)/$(1)$(SCRIPT_EXT) + CLEAR_CMD := clear +endif + +clear: +ifeq ($(OS),Windows_NT) + @$(CLEAR_CMD) +else + @if [ -t 1 ] && [ -n "$$TERM" ]; then $(CLEAR_CMD); fi 2>/dev/null || true +endif + +help: clear + @echo "Schon Project Management" + @echo "" + @echo "Usage: make [target]" + @echo "" + @echo "Targets:" + @echo " install Pull and build Docker images" + @echo " run Start all services" + @echo " restart Restart all services" + @echo " test Run tests with coverage" + @echo " test-xml Generate XML coverage report" + @echo " test-html Generate HTML coverage report" + @echo " uninstall Remove containers, volumes, and generated files" + @echo " backup Create a backup" + @echo " generate-env Generate .env file from template" + @echo " export-env Export environment variables" + @echo " make-messages Extract translation strings" + @echo " compile-messages Compile translation files" + @echo " make-migrations Generate migration files" + @echo " migrate Apply migration files" + @echo " format Format code with ruff" + @echo " check Lint code with ruff" + @echo " typecheck Typecheck code with ty" + @echo " precommit Run format, check, and typecheck" + @echo "" + @echo "Detected OS: $(if $(filter Windows_NT,$(OS)),Windows,Unix)" + @echo "Scripts directory: $(SCRIPT_DIR)" + +install: clear + @$(call RUN_SCRIPT,install) + +run: clear + @$(call RUN_SCRIPT,run) + +restart: clear + @$(call RUN_SCRIPT,restart) + +test: clear + @$(call RUN_SCRIPT,test) + +test-xml: clear +ifeq ($(OS),Windows_NT) + @pwsh -ExecutionPolicy Bypass -File ./$(SCRIPT_DIR)/test$(SCRIPT_EXT) -r xml +else + @bash ./$(SCRIPT_DIR)/test$(SCRIPT_EXT) --report xml +endif + +test-html: clear +ifeq ($(OS),Windows_NT) + @pwsh -ExecutionPolicy Bypass -File ./$(SCRIPT_DIR)/test$(SCRIPT_EXT) -r html +else + @bash ./$(SCRIPT_DIR)/test$(SCRIPT_EXT) --report html +endif + +uninstall: clear + @echo "This will remove all Docker containers, volumes, and generated files." +ifeq ($(OS),Windows_NT) + @pwsh -Command "$$confirm = Read-Host 'Continue? [y/N]'; if ($$confirm -eq 'y') { pwsh -ExecutionPolicy Bypass -File ./$(SCRIPT_DIR)/uninstall$(SCRIPT_EXT) } else { Write-Host 'Uninstall cancelled.' }" +else + @read -p "Continue? [y/N] " confirm && [ "$$confirm" = "y" ] && bash ./$(SCRIPT_DIR)/uninstall$(SCRIPT_EXT) || echo "Uninstall cancelled." +endif + +backup: clear + @$(call RUN_SCRIPT,backup) + +generate-env: clear + @$(call RUN_SCRIPT,generate-environment-file) + +export-env: clear + @$(call RUN_SCRIPT,export-environment-file) + +make-messages: clear + @$(call RUN_SCRIPT,make-messages) + +compile-messages: clear + @$(call RUN_SCRIPT,compile-messages) + +make-migrations: clear + @$(call RUN_SCRIPT,make-migrations) + +migrate: clear + @$(call RUN_SCRIPT,migrate) + +migration: clear make-migrations migrate + +format: clear + @ruff format + +check: clear + @ruff check + +typecheck: clear + @ty check + +precommit: clear + @ruff format + @ruff check + @ty check diff --git a/README.md b/README.md index aca50b61..4997f176 100644 --- a/README.md +++ b/README.md @@ -1,132 +1,263 @@ -# eVibes +# Schon -![LOGO](engine/core/docs/images/evibes-big.png) +![Python 3.12+](https://img.shields.io/badge/python-3.12+-blue.svg) +![Django 5.2](https://img.shields.io/badge/django-5.2-green.svg) +![License](https://img.shields.io/badge/license-Custom-red.svg) +![Version](https://img.shields.io/badge/version-2026.1-purple.svg) -eVibes — a lightweight, production-ready e‑commerce backend. Storefront, product catalog, cart, and orders work out of the box. Minimal complexity, maximum flexibility — install, adjust to your needs, and start selling. +

+ Schon Logo +

-- Public issues: https://plane.wiseless.xyz/spaces/issues/dd33cb0ab9b04ef08a10f7eefae6d90c/?board=kanban +**Schon** is a production-ready e-commerce backend. Storefront, product catalog, cart, orders, and payments work out of the box. Minimal complexity, maximum flexibility. -## Table of Contents +--- -- Features -- Quick Start - - Prerequisites - - Installation -- Configuration - - Dockerfile - - nginx - - .env -- Usage -- Contributing -- Contact -- License +## What is Schon? + +Schon is a complete backend solution for online stores. Whether you're launching a small shop or scaling a marketplace, Schon provides the foundation: + +- **Ready to use** - Clone, configure, deploy. No assembly required. +- **API-first** - REST and GraphQL endpoints for any frontend framework. +- **Multilingual** - 28 languages supported out of the box. +- **Extensible** - Modular Django apps, easy to customize. + +--- ## Features -- Modular backend, easy to extend and customize -- Dockerized deployment with Docker Compose -- Celery workers and beat for background tasks -- REST and GraphQL APIs -- Internationalization with modeltranslation -- Redis-based caching and queues -- JWT auth and rate limiting +| Category | Details | +|----------|---------| +| **Framework** | Django 5.2, Django REST Framework 3.16, Graphene-Django | +| **Database** | PostgreSQL with PostGIS, Redis caching, Elasticsearch search | +| **Tasks** | Celery workers with Redis broker, scheduled tasks with Beat | +| **Auth** | JWT authentication, rate limiting, custom user model (email-based) | +| **APIs** | REST + GraphQL, Swagger/ReDoc documentation | +| **i18n** | 28 languages, model translation support | +| **Deployment** | Docker Compose or native Linux with systemd | + +--- ## Quick Start ### Prerequisites -- Docker and Docker Compose +- Git +- Docker and Docker Compose **or** Linux with Python 3.12+, PostgreSQL, Redis, Elasticsearch -### Installation +### Docker (Recommended for Development) -1. Clone the repository - ```bash - git clone https://gitlab.com/wiseless.xyz/eVibes.git - cd eVibes - ``` +```bash +# Clone the repository +git clone https://git.wiseless.xyz/fureunoir/schon +cd schon -2. Choose a storefront (optional). The `main` branch ships without a storefront. If you want one, pick a branch: - ```bash - git checkout storefront- - ``` +# Generate environment file +make generate-env -3. Generate your .env file and review its values - - Windows - ```powershell - scripts\Windows\generate-environment-file.ps1 - ``` - - Unix - ```bash - scripts/Unix/generate-environment-file.sh - ``` +# Review and adjust .env as needed +nano .env -4. Install dependencies - - Windows - ```powershell - scripts\Windows\install.ps1 - ``` - - Unix - ```bash - scripts/Unix/install.sh - ``` +# Install (pull and build images) +make install -5. Run the stack - - Windows - ```powershell - scripts\Windows\run.ps1 - ``` - - Unix - ```bash - scripts/Unix/run.sh - ``` +# Start all services +make run +``` -6. Production checklist - - Include `nginx.conf` into your Nginx setup - - Issue TLS certs with Certbot (https://certbot.eff.org/) +### Native Linux (Production) + +```bash +# Clone to /opt/schon +sudo git clone https://git.wiseless.xyz/fureunoir/schon /opt/schon +cd /opt/schon + +# Generate environment file +make generate-env + +# Review and adjust .env +sudo nano .env + +# Install (creates schon user, syncs dependencies, configures systemd) +sudo make install +# Select option 2: Native Linux + +# Start services +sudo systemctl start schon-web schon-worker schon-beat schon-stock-updater +``` + +### Storefronts + +The `main` branch ships backend-only. For a complete store with frontend: + +```bash +git checkout storefront- +``` + +--- ## Configuration -### Dockerfile -If you rely on locale mirrors, adjust Debian sources before running installation scripts: -``` -RUN sed -i 's|https://deb.debian.org/debian|https://ftp..debian.org/debian|g' /etc/apt/sources.list.d/debian.sources +### Environment Variables + +After running `make generate-env`, review `.env`: + +| Variable | Description | +|----------|-------------| +| `DEBUG` | Set to `0` for production | +| `SECRET_KEY` | Django secret key (auto-generated) | +| `JWT_SIGNING_KEY` | JWT token signing key (auto-generated) | +| `POSTGRES_*` | Database credentials | +| `REDIS_PASSWORD` | Redis authentication | +| `SCHON_PROJECT_NAME` | Your store name | +| `SCHON_BASE_DOMAIN` | Your domain (e.g., `example.com`) | + +### Nginx + +1. Copy the example config: + ```bash + sudo cp nginx.example.conf /etc/nginx/sites-available/schon + ``` + +2. Update domain names and paths in the config + +3. Enable the site: + ```bash + sudo ln -s /etc/nginx/sites-available/schon /etc/nginx/sites-enabled/ + ``` + +4. Obtain SSL certificates: + ```bash + sudo certbot --nginx -d api.yourdomain.com -d yourdomain.com -d www.yourdomain.com + ``` + +5. Reload Nginx: + ```bash + sudo systemctl reload nginx + ``` + +### DNS Records + +Configure these DNS records pointing to your server: + +- `yourdomain.com` (A record) +- `www.yourdomain.com` (A or CNAME) +- `api.yourdomain.com` (A or CNAME) +- `prometheus.yourdomain.com` (A or CNAME, optional) + +--- + +## API Documentation + +Once running, access the API documentation: + +| Endpoint | Description | +|----------|-------------| +| `http://api.localhost:8000/` | API root / Admin redirect | +| `http://api.localhost:8000/docs/swagger/` | Swagger UI | +| `http://api.localhost:8000/docs/redoc/` | ReDoc | +| `http://api.localhost:8000/graphql/` | GraphQL Playground | +| `http://api.localhost:8000/admin/` | Django Admin | +| `http://api.localhost:8000/health/` | Health check endpoint | + +Authentication header: `X-SCHON-AUTH: Bearer ` + +--- + +## Development + +### Commands + +```bash +make run # Start services +make restart # Restart services +make test # Run tests with coverage +make format # Format code with Ruff +make check # Lint code with Ruff +make typecheck # Type check with ty +make precommit # Run format, check, typecheck +make make-messages # Extract translation strings +make compile-messages # Compile translations +make backup # Create database backup ``` -### nginx -- Comment out SSL-related lines -- Apply your domain-specific settings -- Run `certbot --cert-only --nginx` -- Uncomment SSL lines and reload Nginx +### Running Migrations -### .env -After generation, review and update secrets and credentials (API keys, DB password, Redis password, etc.). +```bash +# Docker +docker compose exec app uv run python manage.py migrate -## Usage +# Native +cd /opt/schon && .venv/bin/python manage.py migrate +``` -- DNS records you’ll typically want: - 1. @.your-domain.com - 2. www.your-domain.com - 3. api.your-domain.com - 4. prometheus.your-domain.com +### Creating a Superuser -- Once running, access: - - API root / Admin redirect: http://api.localhost:8000/ - - REST docs: http://api.localhost:8000/docs/swagger or http://api.localhost:8000/docs/redoc - - GraphQL: http://api.localhost:8000/graphql/ +```bash +# Docker +docker compose exec app uv run python manage.py createsuperuser -## Contributing +# Native +cd /opt/schon && .venv/bin/python manage.py createsuperuser +``` -- Track and report issues here: https://plane.wiseless.xyz/spaces/issues/dd33cb0ab9b04ef08a10f7eefae6d90c/?board=list -- Pull requests are welcome. Please keep changes minimal and focused. +--- -## Contact +## Project Structure -- Author: Egor "fureunoir" Gorbunov - - Email: contact@fureunoir.com - - Telegram: https://t.me/fureunoir +``` +schon/ +├── schon/ # Django project settings +│ ├── settings/ # Split settings (base, drf, celery, etc.) +│ ├── middleware.py # Custom middleware +│ └── urls.py # URL routing +├── engine/ # Django apps +│ ├── core/ # Products, orders, categories, vendors +│ ├── payments/ # Transactions, payment gateways +│ ├── vibes_auth/ # Custom User model, JWT auth +│ └── blog/ # Blog posts +├── Dockerfiles/ # Docker configurations +├── systemd/ # Systemd service files +├── scripts/ # Installation and utility scripts +└── nginx.example.conf # Nginx configuration template +``` + +--- + +## Feedback & Issues + +We value your feedback. Please open issues for: + +- Bug reports +- Feature suggestions +- Questions about usage + +**Issue Tracker:** [Plane](https://plane.wiseless.xyz/spaces/issues/dd33cb0ab9b04ef08a10f7eefae6d90c/?board=kanban) + +Due to licensing restrictions, we cannot accept pull requests. See the LICENSE file for details. + +--- ## License -This project is licensed under the terms of the LICENSE file included in this repository. +Schon is released under a custom license. Key points: -![FAVICON](engine/core/docs/images/evibes.png) \ No newline at end of file +- **Non-commercial use**: Free for personal, academic, and non-commercial purposes +- **Commercial use**: Requires written authorization or automatic 8% royalty + +See the [LICENSE](LICENSE) file for complete terms. + +--- + +## Contact + +**Author:** Egor "fureunoir" Gorbunov + +- Email: [contact@fureunoir.com](mailto:contact@fureunoir.com) +- Telegram: [@fureunoir](https://t.me/fureunoir) + +--- + +

+ Built with care by the Wiseless Team +

diff --git a/docker-compose.yml b/docker-compose.yml index 4d34efe7..ce0d93bd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -98,8 +98,6 @@ services: - xpack.security.enabled=false env_file: - .env - ports: - - "9200:9200" volumes: - es-data:/usr/share/elasticsearch/data logging: *default-logging @@ -147,7 +145,7 @@ services: condition: service_healthy logging: *default-logging healthcheck: - test: [ "CMD-SHELL", "celery -A evibes status | grep -q 'OK'" ] + test: [ "CMD-SHELL", "celery -A schon status | grep -q 'OK'" ] interval: 30s timeout: 10s retries: 5 @@ -175,7 +173,7 @@ services: condition: service_healthy logging: *default-logging healthcheck: - test: [ "CMD-SHELL", "celery -A evibes status | grep -q 'OK'" ] + test: [ "CMD-SHELL", "celery -A schon status | grep -q 'OK'" ] interval: 30s timeout: 10s retries: 5 diff --git a/engine/blog/admin.py b/engine/blog/admin.py index 1c7eb0a8..c858a761 100644 --- a/engine/blog/admin.py +++ b/engine/blog/admin.py @@ -1,26 +1,21 @@ from django.contrib.admin import register from django.db.models import TextField -from django_summernote.admin import ( - SummernoteModelAdminMixin, -) from unfold.admin import ModelAdmin -from unfold_markdown import MarkdownWidget +from unfold.contrib.forms.widgets import WysiwygWidget from engine.blog.models import Post, PostTag from engine.core.admin import ActivationActionsMixin, FieldsetsMixin @register(Post) -class PostAdmin( - SummernoteModelAdminMixin, FieldsetsMixin, ActivationActionsMixin, ModelAdmin -): +class PostAdmin(FieldsetsMixin, ActivationActionsMixin, ModelAdmin): list_display = ("title", "author", "slug", "created", "modified") list_filter = ("author", "tags", "created", "modified") search_fields = ("title", "content", "slug") filter_horizontal = ("tags",) date_hierarchy = "created" autocomplete_fields = ("tags",) - formfield_overrides = {TextField: {"widget": MarkdownWidget}} + formfield_overrides = {TextField: {"widget": WysiwygWidget}} readonly_fields = ( "uuid", "slug", @@ -28,7 +23,6 @@ class PostAdmin( "created", ) - summernote_fields = ("content",) general_fields = [ "title", "content", diff --git a/engine/blog/graphene/object_types.py b/engine/blog/graphene/object_types.py index 1039e38c..54d71afc 100644 --- a/engine/blog/graphene/object_types.py +++ b/engine/blog/graphene/object_types.py @@ -15,7 +15,7 @@ class PostType(DjangoObjectType): interfaces = (relay.Node,) def resolve_content(self: Post, _info: HttpRequest) -> str: - return self.content.html.replace("\n", "
") + return self.content or "" class PostTagType(DjangoObjectType): diff --git a/engine/blog/locale/ar_AR/LC_MESSAGES/django.mo b/engine/blog/locale/ar_AR/LC_MESSAGES/django.mo index 0a83ae2c..ac6cf41d 100644 Binary files a/engine/blog/locale/ar_AR/LC_MESSAGES/django.mo and b/engine/blog/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/ar_AR/LC_MESSAGES/django.po b/engine/blog/locale/ar_AR/LC_MESSAGES/django.po index af8f5bbb..3c9f7093 100644 --- a/engine/blog/locale/ar_AR/LC_MESSAGES/django.po +++ b/engine/blog/locale/ar_AR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,76 +25,84 @@ msgstr "سرد جميع المشاركات (للقراءة فقط)" msgid "retrieve a single post (read-only)" msgstr "استرداد منشور واحد (للقراءة فقط)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "يمثل نموذج منشور المدونة. تحدد فئة المشاركة بنية وسلوك مشاركة المدونة. " "وتتضمن سمات للمؤلف والعنوان والمحتوى ومرفق الملف الاختياري والسبيكة " -"والعلامات المرتبطة بها. يفرض الصنف قيودًا مثل طلب إما محتوى أو مرفق ملف ولكن " -"ليس كلاهما في نفس الوقت. كما أنها تدعم إنشاء سبيكة تلقائية بناءً على العنوان." +"والعلامات المرتبطة بها. يفرض الصنف قيودًا مثل طلب إما محتوى أو مرفق ملف ولكن" +" ليس كلاهما في نفس الوقت. كما أنها تدعم إنشاء سبيكة تلقائية بناءً على " +"العنوان." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "عنوان المنشور" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "العنوان" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "المحتوى" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "نشر المحتوى" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "هي صفحة ثابتة" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "هل هذا منشور لصفحة ذات عنوان URL ثابت (على سبيل المثال '/مساعدة/التسليم'؟)" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "المنشور" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "المنشورات" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "ملفات تخفيض السعر غير مدعومة Yer - استخدم محتوى تخفيض السعر بدلاً من ذلك!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "يجب توفير ملف ترميز أو محتوى ترميز مخفض - متنافيان" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" +msgstr "يجب توفير ملف تخفيض أو محتوى تخفيض - متبادل الاستبعاد" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "معرّف العلامة الداخلي لعلامة المنشور" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "اسم العلامة" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "اسم سهل الاستخدام لعلامة المنشور" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "اسم عرض العلامة" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "علامة المشاركة" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "علامات المشاركة" diff --git a/engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo index b1858dc0..ebfe198d 100644 Binary files a/engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo and b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po index 92a5e34a..0f6ebb84 100644 --- a/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po +++ b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,80 +25,87 @@ msgstr "Seznam všech příspěvků (pouze pro čtení)" msgid "retrieve a single post (read-only)" msgstr "Získání jednoho příspěvku (pouze pro čtení)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Představuje model příspěvku na blogu. Třída Post definuje strukturu a " "chování příspěvku na blogu. Obsahuje atributy pro autora, název, obsah, " "volitelnou přílohu, slug a přidružené značky. Třída vynucuje omezení, jako " -"je požadavek na obsah nebo přílohu souboru, ale ne obojí současně. Podporuje " -"také automatické generování slugu na základě názvu." +"je požadavek na obsah nebo přílohu souboru, ale ne obojí současně. Podporuje" +" také automatické generování slugu na základě názvu." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Název příspěvku" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Název" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "obsah" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "obsah příspěvku" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "je statická stránka" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"je to příspěvek pro stránku se statickou adresou URL (např. `/help/" -"delivery`)?" +"je to příspěvek pro stránku se statickou adresou URL (např. " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Příspěvek" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Příspěvky" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Soubory Markdown nejsou podporovány - místo toho použijte obsah Markdown!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "musí být poskytnut soubor markdown nebo obsah markdown - vzájemně se " "vylučují." -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "interní identifikátor tagu pro tag příspěvku" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Název štítku" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Uživatelsky přívětivý název pro značku příspěvku" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Zobrazení názvu štítku" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Označení příspěvku" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Štítky příspěvků" @@ -111,8 +118,8 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"Zapouzdřuje operace pro správu a načítání entit Post v sadě zobrazení modelu " -"pouze pro čtení. Tato třída je přizpůsobena pro práci s aktivními objekty " +"Zapouzdřuje operace pro správu a načítání entit Post v sadě zobrazení modelu" +" pouze pro čtení. Tato třída je přizpůsobena pro práci s aktivními objekty " "Post a umožňuje filtrování na základě definovaných filtrů. Integruje se s " "backendovým systémem filtrování Djanga a zajišťuje soulad operací s " "definovanými oprávněními. Sada zobrazení obsahuje také dodatečnou " diff --git a/engine/blog/locale/da_DK/LC_MESSAGES/django.mo b/engine/blog/locale/da_DK/LC_MESSAGES/django.mo index 2b79ecef..c8cb24e2 100644 Binary files a/engine/blog/locale/da_DK/LC_MESSAGES/django.mo and b/engine/blog/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/da_DK/LC_MESSAGES/django.po b/engine/blog/locale/da_DK/LC_MESSAGES/django.po index ab8fce54..42325efa 100644 --- a/engine/blog/locale/da_DK/LC_MESSAGES/django.po +++ b/engine/blog/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,78 +25,85 @@ msgstr "Vis alle indlæg (skrivebeskyttet)" msgid "retrieve a single post (read-only)" msgstr "Hent et enkelt indlæg (skrivebeskyttet)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Repræsenterer en blogindlægsmodel. Post-klassen definerer strukturen og " "adfærden i et blogindlæg. Den indeholder attributter for forfatter, titel, " "indhold, valgfri vedhæftet fil, slug og tilknyttede tags. Klassen håndhæver " "begrænsninger som f.eks. at kræve enten indhold eller en vedhæftet fil, men " -"ikke begge dele på samme tid. Den understøtter også automatisk generering af " -"slugs baseret på titlen." +"ikke begge dele på samme tid. Den understøtter også automatisk generering af" +" slugs baseret på titlen." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Indlæggets titel" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titel" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "indhold" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "indhold" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "er en statisk side" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "Er dette et indlæg til en side med statisk URL (f.eks. `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Indlæg" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Indlæg" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "Markdown-filer understøttes ikke - brug markdown-indhold i stedet!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "filoverførsler understøttes endnu ikke – brug i stedet indhold" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "en markdown-fil eller markdown-indhold skal leveres - gensidigt udelukkende" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "intern tag-identifikator for indlægs-tagget" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tag-navn" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Brugervenligt navn til posttagget" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Navn på tag-visning" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Tag til indlæg" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tags til indlæg" @@ -113,5 +120,6 @@ msgstr "" "skrivebeskyttet modelvisningssæt. Denne klasse er skræddersyet til at " "håndtere Post-objekter, der er aktive, og tillader filtrering baseret på " "definerede filtre. Den integreres med Djangos backend-filtreringssystem og " -"sikrer, at handlingerne er i overensstemmelse med de definerede tilladelser. " -"Visningssættet indeholder også en ekstra konfiguration af tilladelsen 'hent'." +"sikrer, at handlingerne er i overensstemmelse med de definerede tilladelser." +" Visningssættet indeholder også en ekstra konfiguration af tilladelsen " +"'hent'." diff --git a/engine/blog/locale/de_DE/LC_MESSAGES/django.mo b/engine/blog/locale/de_DE/LC_MESSAGES/django.mo index 2ae8c5ca..ce19a128 100644 Binary files a/engine/blog/locale/de_DE/LC_MESSAGES/django.mo and b/engine/blog/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/de_DE/LC_MESSAGES/django.po b/engine/blog/locale/de_DE/LC_MESSAGES/django.po index 76f2eff7..ed1a1284 100644 --- a/engine/blog/locale/de_DE/LC_MESSAGES/django.po +++ b/engine/blog/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Alle Beiträge auflisten (schreibgeschützt)" msgid "retrieve a single post (read-only)" msgstr "Einen einzelnen Beitrag abrufen (schreibgeschützt)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Stellt ein Blogpost-Modell dar. Die Klasse Post definiert die Struktur und " "das Verhalten eines Blogeintrags. Sie enthält Attribute für Autor, Titel, " @@ -42,66 +42,73 @@ msgstr "" "unterstützt auch die automatische Slug-Generierung auf der Grundlage des " "Titels." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Titel des Beitrags" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titel" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "Inhalt" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "Beitragsinhalte" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "ist eine statische Seite" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"Ist dies ein Beitrag für eine Seite mit statischer URL (z. B. `/help/" -"delivery`)?" +"Ist dies ein Beitrag für eine Seite mit statischer URL (z. B. " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Beitrag" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Beiträge" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Markdown-Dateien werden nicht unterstützt - verwenden Sie stattdessen " "Markdown-Inhalte!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "eine Markdown-Datei oder ein Markdown-Inhalt muss bereitgestellt werden - " "beide schließen sich gegenseitig aus" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "interner Tag-Bezeichner für den Post-Tag" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tag name" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Benutzerfreundlicher Name für das Post-Tag" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Tag-Anzeigename" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Tag eintragen" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tags eintragen" @@ -119,5 +126,5 @@ msgstr "" "aktiver Post-Objekte zugeschnitten und ermöglicht die Filterung auf der " "Grundlage definierter Filter. Sie integriert sich in das Backend-" "Filtersystem von Django und stellt sicher, dass die Operationen mit den " -"definierten Berechtigungen übereinstimmen. Das View Set beinhaltet auch eine " -"zusätzliche 'retrieve' Berechtigungskonfiguration." +"definierten Berechtigungen übereinstimmen. Das View Set beinhaltet auch eine" +" zusätzliche 'retrieve' Berechtigungskonfiguration." diff --git a/engine/blog/locale/en_GB/LC_MESSAGES/django.mo b/engine/blog/locale/en_GB/LC_MESSAGES/django.mo index 4580471e..06cf2382 100644 Binary files a/engine/blog/locale/en_GB/LC_MESSAGES/django.mo and b/engine/blog/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/en_GB/LC_MESSAGES/django.po b/engine/blog/locale/en_GB/LC_MESSAGES/django.po index 3d22b672..c673d15e 100644 --- a/engine/blog/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/blog/locale/en_GB/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -29,77 +25,84 @@ msgstr "List all posts (read-only)" msgid "retrieve a single post (read-only)" msgstr "Retrieve a single post (read-only)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Post's title" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Title" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "content" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "post content" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "is static page" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "is this a post for a page with static URL (e.g. `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Post" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Posts" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "Markdown files are not supported yer - use markdown content instead!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "file uploads are not supported yet - use content instead" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "a markdown file or markdown content must be provided - mutually exclusive" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "internal tag identifier for the post tag" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tag name" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "User-friendly name for the post tag" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Tag display name" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Post tag" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Post tags" diff --git a/engine/blog/locale/en_US/LC_MESSAGES/django.mo b/engine/blog/locale/en_US/LC_MESSAGES/django.mo index 156b32c3..a336cf3d 100644 Binary files a/engine/blog/locale/en_US/LC_MESSAGES/django.mo and b/engine/blog/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/en_US/LC_MESSAGES/django.po b/engine/blog/locale/en_US/LC_MESSAGES/django.po index 25f90502..3252e8b0 100644 --- a/engine/blog/locale/en_US/LC_MESSAGES/django.po +++ b/engine/blog/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,77 +25,84 @@ msgstr "List all posts (read-only)" msgid "retrieve a single post (read-only)" msgstr "Retrieve a single post (read-only)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Post's title" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Title" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "content" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "post content" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "is static page" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "is this a post for a page with static URL (e.g. `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Post" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Posts" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "Markdown files are not supported yer - use markdown content instead!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "file uploads are not supported yet - use content instead" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "a markdown file or markdown content must be provided - mutually exclusive" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "internal tag identifier for the post tag" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tag name" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "User-friendly name for the post tag" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Tag display name" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Post tag" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Post tags" diff --git a/engine/blog/locale/es_ES/LC_MESSAGES/django.mo b/engine/blog/locale/es_ES/LC_MESSAGES/django.mo index ff2c4305..7f86818e 100644 Binary files a/engine/blog/locale/es_ES/LC_MESSAGES/django.mo and b/engine/blog/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/es_ES/LC_MESSAGES/django.po b/engine/blog/locale/es_ES/LC_MESSAGES/django.po index 6a614231..9ae265c0 100644 --- a/engine/blog/locale/es_ES/LC_MESSAGES/django.po +++ b/engine/blog/locale/es_ES/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Listar todos los mensajes (sólo lectura)" msgid "retrieve a single post (read-only)" msgstr "Recuperar una única entrada (sólo lectura)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Representa un modelo de entrada de blog. La clase Post define la estructura " "y el comportamiento de una entrada de blog. Incluye atributos para autor, " @@ -41,65 +41,72 @@ msgstr "" "adjunto, pero no ambos simultáneamente. También admite la generación " "automática de slug a partir del título." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Título del mensaje" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Título" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "contenido" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "publicar contenido" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "es una página estática" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"¿se trata de una entrada para una página con URL estática (por ejemplo, `/" -"help/delivery`)?" +"¿se trata de una entrada para una página con URL estática (por ejemplo, " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Publicar en" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Puestos" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "No se admiten archivos Markdown - ¡utiliza contenido Markdown en su lugar!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "se debe proporcionar un archivo markdown o contenido markdown - mutuamente " "excluyentes" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "identificador interno de la etiqueta post" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nombre de la etiqueta" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Nombre fácil de usar para la etiqueta de la entrada" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Nombre de la etiqueta" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Etiqueta postal" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Etiquetas" @@ -115,7 +122,7 @@ msgstr "" "Encapsula operaciones para gestionar y recuperar entidades Post en un " "conjunto de vistas de modelo de sólo lectura. Esta clase está adaptada para " "manejar objetos Post que están activos y permite el filtrado basado en " -"filtros definidos. Se integra con el sistema de filtrado backend de Django y " -"asegura que las operaciones se alinean con los permisos definidos. El " +"filtros definidos. Se integra con el sistema de filtrado backend de Django y" +" asegura que las operaciones se alinean con los permisos definidos. El " "conjunto de vistas también incluye una configuración adicional de permisos " "de \"recuperación\"." diff --git a/engine/blog/locale/fa_IR/LC_MESSAGES/django.mo b/engine/blog/locale/fa_IR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/blog/locale/fa_IR/LC_MESSAGES/django.mo and b/engine/blog/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/fa_IR/LC_MESSAGES/django.po b/engine/blog/locale/fa_IR/LC_MESSAGES/django.po index a1aaa8b0..09f58f69 100644 --- a/engine/blog/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/blog/locale/fa_IR/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgstr "" msgid "retrieve a single post (read-only)" msgstr "" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " @@ -38,60 +38,67 @@ msgid "" "title." msgstr "" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "" diff --git a/engine/blog/locale/fr_FR/LC_MESSAGES/django.mo b/engine/blog/locale/fr_FR/LC_MESSAGES/django.mo index 29743ab0..5a04d3d3 100644 Binary files a/engine/blog/locale/fr_FR/LC_MESSAGES/django.mo and b/engine/blog/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/fr_FR/LC_MESSAGES/django.po b/engine/blog/locale/fr_FR/LC_MESSAGES/django.po index 92b3d1b8..e7e281d0 100644 --- a/engine/blog/locale/fr_FR/LC_MESSAGES/django.po +++ b/engine/blog/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Liste de tous les messages (en lecture seule)" msgid "retrieve a single post (read-only)" msgstr "Récupérer un seul message (en lecture seule)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Représente un modèle de billet de blog. La classe Post définit la structure " "et le comportement d'un billet de blog. Elle comprend des attributs pour " @@ -42,66 +42,73 @@ msgstr "" "simultanément. Elle prend également en charge la génération automatique " "d'une balise en fonction du titre." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Titre du message" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titre" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "contenu" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "contenu de publication" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "est une page statique" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"s'agit-il d'un message pour une page dont l'URL est statique (par exemple `/" -"help/delivery`) ?" +"s'agit-il d'un message pour une page dont l'URL est statique (par exemple " +"`/help/delivery`) ?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Poste" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Postes" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Les fichiers Markdown ne sont pas pris en charge - utilisez plutôt du " "contenu Markdown !" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" -"un fichier markdown ou un contenu markdown doit être fourni - ils s'excluent " -"mutuellement" +"un fichier markdown ou un contenu markdown doit être fourni - ils s'excluent" +" mutuellement" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "identifiant interne de la balise post" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nom du jour" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Nom convivial pour la balise post" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Nom d'affichage de l'étiquette" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Tag de poste" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tags de la poste" @@ -114,8 +121,8 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"Encapsule les opérations de gestion et d'extraction des entités Post dans un " -"ensemble de vues de modèle en lecture seule. Cette classe est conçue pour " +"Encapsule les opérations de gestion et d'extraction des entités Post dans un" +" ensemble de vues de modèle en lecture seule. Cette classe est conçue pour " "gérer les objets Post qui sont actifs et permet un filtrage basé sur des " "filtres définis. Elle s'intègre au système de filtrage du backend de Django " "et garantit que les opérations s'alignent sur les permissions définies. Le " diff --git a/engine/blog/locale/he_IL/LC_MESSAGES/django.mo b/engine/blog/locale/he_IL/LC_MESSAGES/django.mo index 3553e3c7..a33245c7 100644 Binary files a/engine/blog/locale/he_IL/LC_MESSAGES/django.mo and b/engine/blog/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/he_IL/LC_MESSAGES/django.po b/engine/blog/locale/he_IL/LC_MESSAGES/django.po index 7bc4931d..c537d769 100644 --- a/engine/blog/locale/he_IL/LC_MESSAGES/django.po +++ b/engine/blog/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,74 +25,81 @@ msgstr "הצג את כל ההודעות (לקריאה בלבד)" msgid "retrieve a single post (read-only)" msgstr "איתור פוסט בודד (לקריאה בלבד)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "מייצג מודל של פוסט בבלוג. מחלקת Post מגדירה את המבנה וההתנהגות של פוסט " "בבלוג. היא כוללת תכונות עבור מחבר, כותרת, תוכן, קובץ מצורף אופציונלי, slug " "ותגיות נלוות. המחלקה אוכפת אילוצים כגון דרישה לתוכן או לקובץ מצורף, אך לא " "לשניהם בו-זמנית. היא תומכת גם ביצירה אוטומטית של slug על סמך הכותרת." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "כותרת הפוסט" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "כותרת" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "תוכן" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "תוכן הפוסט" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "הוא דף סטטי" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "האם זו הודעה לדף עם כתובת URL סטטית (למשל `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "פוסט" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "פוסטים" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "קובצי Markdown אינם נתמכים עדיין - השתמש בתוכן Markdown במקום!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "העלאת קבצים אינה נתמכת עדיין - השתמש בתוכן במקום זאת" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "יש לספק קובץ markdown או תוכן markdown - באופן בלעדי" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "מזהה תגיות פנימי עבור תגיות הפוסט" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "שם היום" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "שם ידידותי למשתמש עבור תגיות הפוסט" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "שם תצוגה של התג" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "תגית פוסט" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "תגיות פוסט" @@ -105,7 +112,7 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"מכיל פעולות לניהול ואחזור ישויות Post במערך תצוגה של מודל לקריאה בלבד. מחלקה " -"זו מותאמת לטיפול באובייקטי Post פעילים ומאפשרת סינון על בסיס מסננים מוגדרים. " -"היא משתלבת במערכת הסינון האחורית של Django ומבטיחה שהפעולות תואמות את " -"ההרשאות המוגדרות. מערך התצוגה כולל גם תצורת הרשאה נוספת ל'אחזור'." +"מכיל פעולות לניהול ואחזור ישויות Post במערך תצוגה של מודל לקריאה בלבד. מחלקה" +" זו מותאמת לטיפול באובייקטי Post פעילים ומאפשרת סינון על בסיס מסננים " +"מוגדרים. היא משתלבת במערכת הסינון האחורית של Django ומבטיחה שהפעולות תואמות " +"את ההרשאות המוגדרות. מערך התצוגה כולל גם תצורת הרשאה נוספת ל'אחזור'." diff --git a/engine/blog/locale/hi_IN/LC_MESSAGES/django.mo b/engine/blog/locale/hi_IN/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/blog/locale/hi_IN/LC_MESSAGES/django.mo and b/engine/blog/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/hi_IN/LC_MESSAGES/django.po b/engine/blog/locale/hi_IN/LC_MESSAGES/django.po index 2028ed1c..43351be5 100644 --- a/engine/blog/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/blog/locale/hi_IN/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:26+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -28,7 +24,7 @@ msgstr "" msgid "retrieve a single post (read-only)" msgstr "" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " @@ -38,60 +34,67 @@ msgid "" "title." msgstr "" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "" diff --git a/engine/blog/locale/hr_HR/LC_MESSAGES/django.mo b/engine/blog/locale/hr_HR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/blog/locale/hr_HR/LC_MESSAGES/django.mo and b/engine/blog/locale/hr_HR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/hr_HR/LC_MESSAGES/django.po b/engine/blog/locale/hr_HR/LC_MESSAGES/django.po index a1aaa8b0..09f58f69 100644 --- a/engine/blog/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/blog/locale/hr_HR/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgstr "" msgid "retrieve a single post (read-only)" msgstr "" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " @@ -38,60 +38,67 @@ msgid "" "title." msgstr "" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "" diff --git a/engine/blog/locale/id_ID/LC_MESSAGES/django.mo b/engine/blog/locale/id_ID/LC_MESSAGES/django.mo index c13178cc..9d51cba8 100644 Binary files a/engine/blog/locale/id_ID/LC_MESSAGES/django.mo and b/engine/blog/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/id_ID/LC_MESSAGES/django.po b/engine/blog/locale/id_ID/LC_MESSAGES/django.po index 60e56002..b37bbe9a 100644 --- a/engine/blog/locale/id_ID/LC_MESSAGES/django.po +++ b/engine/blog/locale/id_ID/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,82 +25,89 @@ msgstr "Daftar semua postingan (hanya-baca)" msgid "retrieve a single post (read-only)" msgstr "Mengambil satu postingan (hanya-baca)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" -"Mewakili model posting blog. Kelas Post mendefinisikan struktur dan perilaku " -"postingan blog. Kelas ini mencakup atribut untuk penulis, judul, konten, " +"Mewakili model posting blog. Kelas Post mendefinisikan struktur dan perilaku" +" postingan blog. Kelas ini mencakup atribut untuk penulis, judul, konten, " "lampiran file opsional, slug, dan tag yang terkait. Kelas ini memberlakukan " -"batasan seperti membutuhkan konten atau lampiran file, tetapi tidak keduanya " -"secara bersamaan. Kelas ini juga mendukung pembuatan slug otomatis " +"batasan seperti membutuhkan konten atau lampiran file, tetapi tidak keduanya" +" secara bersamaan. Kelas ini juga mendukung pembuatan slug otomatis " "berdasarkan judul." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Judul postingan" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Judul" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "konten" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "posting konten" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "adalah halaman statis" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"apakah ini adalah postingan untuk halaman dengan URL statis (misalnya `/help/" -"pengiriman`)?" +"apakah ini adalah postingan untuk halaman dengan URL statis (misalnya " +"`/help/pengiriman`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Pos" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Posting" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" -"File penurunan harga tidak didukung - gunakan konten penurunan harga sebagai " -"gantinya!" +"File penurunan harga tidak didukung - gunakan konten penurunan harga sebagai" +" gantinya!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "file penurunan harga atau konten penurunan harga harus disediakan - tidak " "boleh ada yang sama" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "pengidentifikasi tag internal untuk tag pos" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nama tag" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Nama yang mudah digunakan untuk tag postingan" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Nama tampilan tag" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Tag pos" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tag pos" @@ -113,8 +120,8 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"Mengenkapsulasi operasi untuk mengelola dan mengambil entitas Post dalam set " -"tampilan model hanya-baca. Kelas ini dirancang untuk menangani objek Post " +"Mengenkapsulasi operasi untuk mengelola dan mengambil entitas Post dalam set" +" tampilan model hanya-baca. Kelas ini dirancang untuk menangani objek Post " "yang aktif dan memungkinkan penyaringan berdasarkan filter yang ditentukan. " "Kelas ini terintegrasi dengan sistem penyaringan backend Django dan " "memastikan operasi sesuai dengan izin yang ditentukan. Kumpulan view juga " diff --git a/engine/blog/locale/it_IT/LC_MESSAGES/django.mo b/engine/blog/locale/it_IT/LC_MESSAGES/django.mo index 8a81c1ca..51222dab 100644 Binary files a/engine/blog/locale/it_IT/LC_MESSAGES/django.mo and b/engine/blog/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/it_IT/LC_MESSAGES/django.po b/engine/blog/locale/it_IT/LC_MESSAGES/django.po index bf7a2a6e..e9f516bf 100644 --- a/engine/blog/locale/it_IT/LC_MESSAGES/django.po +++ b/engine/blog/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,80 +25,89 @@ msgstr "Elenco di tutti i messaggi (solo lettura)" msgid "retrieve a single post (read-only)" msgstr "Recuperare un singolo post (solo lettura)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Rappresenta il modello di un post di un blog. La classe Post definisce la " "struttura e il comportamento di un post del blog. Include gli attributi per " "l'autore, il titolo, il contenuto, l'allegato opzionale, lo slug e i tag " -"associati. La classe impone dei vincoli, come la richiesta di un contenuto o " -"di un file allegato, ma non di entrambi contemporaneamente. Supporta anche " +"associati. La classe impone dei vincoli, come la richiesta di un contenuto o" +" di un file allegato, ma non di entrambi contemporaneamente. Supporta anche " "la generazione automatica dello slug in base al titolo." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Titolo del post" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titolo" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "contenuto" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "pubblicare contenuti" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "è una pagina statica" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"Si tratta di un post per una pagina con URL statico (ad esempio `/help/" -"delivery`)?" +"Si tratta di un post per una pagina con URL statico (ad esempio " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Posta" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Messaggi" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "I file Markdown non sono supportati: usa invece i contenuti Markdown!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "" +"Il caricamento dei file non è ancora supportato: utilizzare invece i " +"contenuti." -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "deve essere fornito un file markdown o un contenuto markdown - si escludono " "a vicenda" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "identificatore interno del tag post" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nome del tag" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Nome intuitivo per il tag del post" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Nome del tag" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Post tag" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tag dei post" @@ -113,8 +122,8 @@ msgid "" msgstr "" "Incapsula le operazioni per gestire e recuperare le entità Post in un " "insieme di viste del modello di sola lettura. Questa classe è fatta su " -"misura per gestire gli oggetti Post che sono attivi e consente il filtraggio " -"in base ai filtri definiti. Si integra con il sistema di filtraggio del " +"misura per gestire gli oggetti Post che sono attivi e consente il filtraggio" +" in base ai filtri definiti. Si integra con il sistema di filtraggio del " "backend di Django e garantisce che le operazioni siano in linea con i " "permessi definiti. L'insieme di viste include anche un'ulteriore " "configurazione di permessi 'retrieve'." diff --git a/engine/blog/locale/ja_JP/LC_MESSAGES/django.mo b/engine/blog/locale/ja_JP/LC_MESSAGES/django.mo index 0ccaf17d..cd343eee 100644 Binary files a/engine/blog/locale/ja_JP/LC_MESSAGES/django.mo and b/engine/blog/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/ja_JP/LC_MESSAGES/django.po b/engine/blog/locale/ja_JP/LC_MESSAGES/django.po index ba926bea..e684b04e 100644 --- a/engine/blog/locale/ja_JP/LC_MESSAGES/django.po +++ b/engine/blog/locale/ja_JP/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,79 +25,79 @@ msgstr "すべての投稿をリストアップする(読み取り専用)" msgid "retrieve a single post (read-only)" msgstr "単一の投稿を取得する(読み取り専用)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" -"ブログ記事のモデルを表します。Post クラスはブログ記事の構造と動作を定義しま" -"す。著者、タイトル、内容、オプションの添付ファイル、スラッグ、関連タグの属性" -"を含みます。このクラスは、内容か添付ファイルのどちらかを要求するが、両方は同" -"時に要求しないといった制約を強制します。また、タイトルに基づくスラッグの自動" -"生成もサポートしています。" +"ブログ記事のモデルを表します。Post " +"クラスはブログ記事の構造と動作を定義します。著者、タイトル、内容、オプションの添付ファイル、スラッグ、関連タグの属性を含みます。このクラスは、内容か添付ファイルのどちらかを要求するが、両方は同時に要求しないといった制約を強制します。また、タイトルに基づくスラッグの自動生成もサポートしています。" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "投稿タイトル" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "タイトル" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "内容" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "投稿内容" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "は静的ページ" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "これは静的URLのページ(例:`/help/delivery`)への投稿ですか?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "ポスト" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "投稿" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "" -"マークダウン・ファイルはサポートされていません - 代わりにマークダウン・コンテ" -"ンツを使用してください!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "マークダウン・ファイルはサポートされていません - 代わりにマークダウン・コンテンツを使用してください!" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" +msgstr "マークダウン・ファイルまたはマークダウン・コンテンツを提供しなければならない。" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "" -"マークダウン・ファイルまたはマークダウン・コンテンツを提供しなければならな" -"い。" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "投稿タグの内部タグ識別子" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "タグ名" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "投稿タグのユーザーフレンドリーな名前" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "タグ表示名" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "投稿タグ" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "投稿タグ" @@ -110,9 +110,7 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"読み取り専用のモデルビューセットにおける Post エンティティの管理と取得のため" -"の操作をカプセル化します。このクラスは、アクティブな Post オブジェクトを扱" -"い、定義されたフィルタに基 づいてフィルタリングできるように調整されています。" -"Django のバックエンドのフィルタリングシステムと統合し、定義されたパーミッショ" -"ンに沿った操作を保証します。ビューセットには、追加の 'retrieve' 権限設定も含" -"まれます。" +"読み取り専用のモデルビューセットにおける Post エンティティの管理と取得のための操作をカプセル化します。このクラスは、アクティブな Post " +"オブジェクトを扱い、定義されたフィルタに基 づいてフィルタリングできるように調整されています。Django " +"のバックエンドのフィルタリングシステムと統合し、定義されたパーミッションに沿った操作を保証します。ビューセットには、追加の 'retrieve' " +"権限設定も含まれます。" diff --git a/engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo and b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po index 2028ed1c..087286ae 100644 --- a/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:13+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -28,7 +24,7 @@ msgstr "" msgid "retrieve a single post (read-only)" msgstr "" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " @@ -38,60 +34,67 @@ msgid "" "title." msgstr "" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "" diff --git a/engine/blog/locale/ko_KR/LC_MESSAGES/django.mo b/engine/blog/locale/ko_KR/LC_MESSAGES/django.mo index 4d9786c1..ad997dbf 100644 Binary files a/engine/blog/locale/ko_KR/LC_MESSAGES/django.mo and b/engine/blog/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/ko_KR/LC_MESSAGES/django.po b/engine/blog/locale/ko_KR/LC_MESSAGES/django.po index 92a5a3c3..2b1eec1c 100644 --- a/engine/blog/locale/ko_KR/LC_MESSAGES/django.po +++ b/engine/blog/locale/ko_KR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,76 +25,80 @@ msgstr "모든 게시물 나열(읽기 전용)" msgid "retrieve a single post (read-only)" msgstr "단일 게시물 검색(읽기 전용)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" -"블로그 글 모델을 나타냅니다. Post 클래스는 블로그 글의 구조와 동작을 정의합니" -"다. 여기에는 작성자, 제목, 콘텐츠, 선택적 파일 첨부, 슬러그 및 관련 태그에 대" -"한 속성이 포함됩니다. 이 클래스는 콘텐츠 또는 파일 첨부 중 하나만 요구하고 " -"둘 다 동시에 요구하지 않는 등의 제약 조건을 적용합니다. 또한 제목에 따른 자" -"동 슬러그 생성도 지원합니다." +"블로그 글 모델을 나타냅니다. Post 클래스는 블로그 글의 구조와 동작을 정의합니다. 여기에는 작성자, 제목, 콘텐츠, 선택적 파일 " +"첨부, 슬러그 및 관련 태그에 대한 속성이 포함됩니다. 이 클래스는 콘텐츠 또는 파일 첨부 중 하나만 요구하고 둘 다 동시에 요구하지 " +"않는 등의 제약 조건을 적용합니다. 또한 제목에 따른 자동 슬러그 생성도 지원합니다." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "게시물 제목" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "제목" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "콘텐츠" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "게시물 내용" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "는 정적 페이지입니다." -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "정적 URL(예: `/help/delivery`)이 있는 페이지의 게시물인가요?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "게시물" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "게시물" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "" -"마크다운 파일은 지원되지 않습니다 예 - 대신 마크다운 콘텐츠를 사용하세요!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "마크다운 파일은 지원되지 않습니다 예 - 대신 마크다운 콘텐츠를 사용하세요!" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" +msgstr "마크다운 파일 또는 마크다운 콘텐츠를 제공해야 합니다 - 상호 배타적" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "마크다운 파일 또는 마크다운 콘텐츠가 제공되어야 합니다." - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "게시물 태그의 내부 태그 식별자" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "태그 이름" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "게시물 태그의 사용자 친화적인 이름" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "태그 표시 이름" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "게시물 태그" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "게시물 태그" @@ -107,8 +111,6 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"읽기 전용 모델 보기 집합에서 Post 엔티티를 관리하고 검색하기 위한 작업을 캡슐" -"화합니다. 이 클래스는 활성 상태인 Post 개체를 처리하도록 맞춤화되어 있으며 정" -"의된 필터를 기반으로 필터링을 허용합니다. 이 클래스는 장고의 백엔드 필터링 시" -"스템과 통합되며 정의된 권한에 따라 작업이 이루어지도록 합니다. 보기 세트에는 " -"추가 '검색' 권한 구성도 포함되어 있습니다." +"읽기 전용 모델 보기 집합에서 Post 엔티티를 관리하고 검색하기 위한 작업을 캡슐화합니다. 이 클래스는 활성 상태인 Post 개체를 " +"처리하도록 맞춤화되어 있으며 정의된 필터를 기반으로 필터링을 허용합니다. 이 클래스는 장고의 백엔드 필터링 시스템과 통합되며 정의된 " +"권한에 따라 작업이 이루어지도록 합니다. 보기 세트에는 추가 '검색' 권한 구성도 포함되어 있습니다." diff --git a/engine/blog/locale/nl_NL/LC_MESSAGES/django.mo b/engine/blog/locale/nl_NL/LC_MESSAGES/django.mo index f214e344..0b36d5fe 100644 Binary files a/engine/blog/locale/nl_NL/LC_MESSAGES/django.mo and b/engine/blog/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/nl_NL/LC_MESSAGES/django.po b/engine/blog/locale/nl_NL/LC_MESSAGES/django.po index d7e35acc..64c1ea99 100644 --- a/engine/blog/locale/nl_NL/LC_MESSAGES/django.po +++ b/engine/blog/locale/nl_NL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Alle berichten weergeven (alleen-lezen)" msgid "retrieve a single post (read-only)" msgstr "Een enkel bericht ophalen (alleen-lezen)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Vertegenwoordigt een blogpostmodel. De klasse Post definieert de structuur " "en het gedrag van een blogbericht. Ze bevat attributen voor auteur, titel, " @@ -41,66 +41,73 @@ msgstr "" "maar niet beide tegelijk. Het ondersteunt ook het automatisch genereren van " "slugs op basis van de titel." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Titel van de post" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titel" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "inhoud" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "berichtinhoud" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "is statische pagina" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"Is dit een bericht voor een pagina met een statische URL (bijv. `/help/" -"delivery`)?" +"Is dit een bericht voor een pagina met een statische URL (bijv. " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Plaats" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Berichten" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Markdown-bestanden worden niet ondersteund - gebruik in plaats daarvan " "markdown-inhoud!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" -"er moet een markdown-bestand of markdown-inhoud worden geleverd - wederzijds " -"exclusief" +"er moet een markdown-bestand of markdown-inhoud worden geleverd - wederzijds" +" exclusief" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "interne tagidentifier voor de posttag" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tag naam" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Gebruiksvriendelijke naam voor de posttag" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Tag weergavenaam" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Post tag" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Post tags" diff --git a/engine/blog/locale/no_NO/LC_MESSAGES/django.mo b/engine/blog/locale/no_NO/LC_MESSAGES/django.mo index 19b14901..72f737bc 100644 Binary files a/engine/blog/locale/no_NO/LC_MESSAGES/django.mo and b/engine/blog/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/no_NO/LC_MESSAGES/django.po b/engine/blog/locale/no_NO/LC_MESSAGES/django.po index 8c89adef..bf2e7048 100644 --- a/engine/blog/locale/no_NO/LC_MESSAGES/django.po +++ b/engine/blog/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Liste over alle innlegg (skrivebeskyttet)" msgid "retrieve a single post (read-only)" msgstr "Hent et enkelt innlegg (skrivebeskyttet)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Representerer en blogginnleggsmodell. Post-klassen definerer strukturen og " "virkemåten til et blogginnlegg. Den inneholder attributter for forfatter, " @@ -41,62 +41,69 @@ msgstr "" "må være med, men ikke begge deler samtidig. Den støtter også automatisk " "generering av slug basert på tittelen." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Innleggets tittel" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Title" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "innhold" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "innleggsinnhold" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "er statisk side" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "er dette et innlegg for en side med statisk URL (f.eks. `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Post" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Innlegg" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "Markdown-filer støttes ikke - bruk markdown-innhold i stedet!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "filopplasting støttes ikke ennå – bruk innhold i stedet" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "en markdown-fil eller markdown-innhold må oppgis - gjensidig utelukkende" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "intern tagg-identifikator for innleggstaggen" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tagg navn" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Brukervennlig navn for innleggstaggen" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Visningsnavn for taggen" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Post tag" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tagger for innlegg" @@ -114,5 +121,5 @@ msgstr "" "håndtere Post-objekter som er aktive, og tillater filtrering basert på " "definerte filtre. Den integreres med Djangos backend-filtreringssystem og " "sørger for at operasjonene er i tråd med de definerte tillatelsene. " -"Visningssettet inkluderer også en ekstra konfigurasjon for \"hent\"-" -"tillatelse." +"Visningssettet inkluderer også en ekstra konfigurasjon for " +"\"hent\"-tillatelse." diff --git a/engine/blog/locale/pl_PL/LC_MESSAGES/django.mo b/engine/blog/locale/pl_PL/LC_MESSAGES/django.mo index a8a659b1..d49ea28f 100644 Binary files a/engine/blog/locale/pl_PL/LC_MESSAGES/django.mo and b/engine/blog/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/pl_PL/LC_MESSAGES/django.po b/engine/blog/locale/pl_PL/LC_MESSAGES/django.po index ca29c601..4d84be41 100644 --- a/engine/blog/locale/pl_PL/LC_MESSAGES/django.po +++ b/engine/blog/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Lista wszystkich postów (tylko do odczytu)" msgid "retrieve a single post (read-only)" msgstr "Pobieranie pojedynczego wpisu (tylko do odczytu)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Reprezentuje model wpisu na blogu. Klasa Post definiuje strukturę i " "zachowanie wpisu na blogu. Zawiera atrybuty autora, tytułu, treści, " @@ -41,64 +41,72 @@ msgstr "" "nie obu jednocześnie. Obsługuje również automatyczne generowanie slug na " "podstawie tytułu." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Tytuł postu" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Tytuł" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "treść" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "treść postu" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "jest stroną statyczną" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"Czy jest to post dla strony ze statycznym adresem URL (np. `/help/delivery`)?" +"Czy jest to post dla strony ze statycznym adresem URL (np. " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Post" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Posty" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Pliki Markdown nie są obsługiwane - zamiast tego użyj zawartości Markdown!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "należy dostarczyć plik markdown lub zawartość markdown - wzajemnie się " "wykluczające" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "wewnętrzny identyfikator tagu posta" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nazwa tagu" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Przyjazna dla użytkownika nazwa tagu posta" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Wyświetlana nazwa znacznika" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Tag posta" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tagi postów" @@ -112,8 +120,8 @@ msgid "" "permission configuration." msgstr "" "Enkapsuluje operacje zarządzania i pobierania encji Post w zestawie widoków " -"modelu tylko do odczytu. Klasa ta jest dostosowana do obsługi obiektów Post, " -"które są aktywne i pozwala na filtrowanie w oparciu o zdefiniowane filtry. " +"modelu tylko do odczytu. Klasa ta jest dostosowana do obsługi obiektów Post," +" które są aktywne i pozwala na filtrowanie w oparciu o zdefiniowane filtry. " "Integruje się z backendowym systemem filtrowania Django i zapewnia zgodność " "operacji ze zdefiniowanymi uprawnieniami. Zestaw widoków zawiera również " "dodatkową konfigurację uprawnień \"retrieve\"." diff --git a/engine/blog/locale/pt_BR/LC_MESSAGES/django.mo b/engine/blog/locale/pt_BR/LC_MESSAGES/django.mo index 8d48a501..5575a822 100644 Binary files a/engine/blog/locale/pt_BR/LC_MESSAGES/django.mo and b/engine/blog/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/pt_BR/LC_MESSAGES/django.po b/engine/blog/locale/pt_BR/LC_MESSAGES/django.po index 6f816744..8400e87b 100644 --- a/engine/blog/locale/pt_BR/LC_MESSAGES/django.po +++ b/engine/blog/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,80 +25,88 @@ msgstr "Listar todas as postagens (somente leitura)" msgid "retrieve a single post (read-only)" msgstr "Recuperar um único post (somente leitura)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Representa um modelo de post de blog. A classe Post define a estrutura e o " "comportamento de um post de blog. Ela inclui atributos para autor, título, " "conteúdo, anexo de arquivo opcional, slug e tags associadas. A classe impõe " "restrições, como exigir conteúdo ou um anexo de arquivo, mas não ambos " -"simultaneamente. Ela também oferece suporte à geração automática de slug com " -"base no título." +"simultaneamente. Ela também oferece suporte à geração automática de slug com" +" base no título." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Título da postagem" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Título" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "conteúdo" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "conteúdo da publicação" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "é uma página estática" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"Essa é uma postagem para uma página com URL estático (por exemplo, `/help/" -"delivery`)?" +"Essa é uma postagem para uma página com URL estático (por exemplo, " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Postar" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Publicações" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" -"Os arquivos markdown não são suportados - use conteúdo markdown em vez disso!" +"Os arquivos markdown não são suportados - use conteúdo markdown em vez " +"disso!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "um arquivo ou conteúdo de markdown deve ser fornecido - mutuamente exclusivo" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "identificador de tag interno para a tag de postagem" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nome da etiqueta" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Nome de fácil utilização para a tag de postagem" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Nome de exibição da tag" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Etiqueta de postagem" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Tags de postagem" diff --git a/engine/blog/locale/ro_RO/LC_MESSAGES/django.mo b/engine/blog/locale/ro_RO/LC_MESSAGES/django.mo index 36ed3e9b..bc034e02 100644 Binary files a/engine/blog/locale/ro_RO/LC_MESSAGES/django.mo and b/engine/blog/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/ro_RO/LC_MESSAGES/django.po b/engine/blog/locale/ro_RO/LC_MESSAGES/django.po index ec629534..1c04321c 100644 --- a/engine/blog/locale/ro_RO/LC_MESSAGES/django.po +++ b/engine/blog/locale/ro_RO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Listează toate postările (doar pentru citire)" msgid "retrieve a single post (read-only)" msgstr "Recuperează o singură postare (read-only)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Reprezintă un model de postare pe blog. Clasa Post definește structura și " "comportamentul unei postări pe blog. Aceasta include atribute pentru autor, " @@ -41,65 +41,73 @@ msgstr "" "fișier atașat, dar nu ambele simultan. De asemenea, acceptă generarea " "automată a slug-ului pe baza titlului." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Titlul postului" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titlul" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "conținut" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "conținutul postării" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "este o pagină statică" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" -"este aceasta o postare pentru o pagină cu URL static (de exemplu `/help/" -"delivery`)?" +"este aceasta o postare pentru o pagină cu URL static (de exemplu " +"`/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Post" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Mesaje" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" -"Fișierele Markdown nu sunt acceptate - utilizați în schimb conținut Markdown!" +"Fișierele Markdown nu sunt acceptate - utilizați în schimb conținut " +"Markdown!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "trebuie furnizat un fișier markdown sau conținut markdown - se exclud " "reciproc" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "identificator intern de etichetă pentru eticheta postului" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Nume etichetă" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Nume ușor de utilizat pentru eticheta postului" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Nume afișare etichetă" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Etichetă post" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Etichete poștale" @@ -112,8 +120,8 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"Încapsulează operațiunile de gestionare și extragere a entităților Post într-" -"un set de vizualizări de model numai pentru citire. Această clasă este " +"Încapsulează operațiunile de gestionare și extragere a entităților Post " +"într-un set de vizualizări de model numai pentru citire. Această clasă este " "adaptată pentru a gestiona obiectele Post care sunt active și permite " "filtrarea pe baza filtrelor definite. Se integrează cu sistemul de filtrare " "din backend al Django și asigură alinierea operațiunilor cu permisiunile " diff --git a/engine/blog/locale/ru_RU/LC_MESSAGES/django.mo b/engine/blog/locale/ru_RU/LC_MESSAGES/django.mo index 16375223..f8c23f51 100644 Binary files a/engine/blog/locale/ru_RU/LC_MESSAGES/django.mo and b/engine/blog/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/ru_RU/LC_MESSAGES/django.po b/engine/blog/locale/ru_RU/LC_MESSAGES/django.po index 01b764f7..25319683 100644 --- a/engine/blog/locale/ru_RU/LC_MESSAGES/django.po +++ b/engine/blog/locale/ru_RU/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Список всех сообщений (только для чтени msgid "retrieve a single post (read-only)" msgstr "Получение одного сообщения (только для чтения)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Представляет модель записи в блоге. Класс Post определяет структуру и " "поведение записи в блоге. Он включает атрибуты автора, заголовка, " @@ -41,65 +41,72 @@ msgstr "" "вложение файла, но не то и другое одновременно. Он также поддерживает " "автоматическую генерацию slug на основе заголовка." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Заголовок сообщения" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Название" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "содержание" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "содержание публикации" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "это статическая страница" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "Это сообщение для страницы со статическим URL (например, `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Пост" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Посты" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Файлы в формате Markdown не поддерживаются - используйте вместо них " "содержимое в формате Markdown!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "необходимо предоставить файл разметки или содержимое разметки - " "взаимоисключающие варианты" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "внутренний идентификатор тега для тега post" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Название тега" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Удобное для пользователя название тега поста" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Отображаемое имя тега" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Тэг поста" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Тэги постов" @@ -114,8 +121,8 @@ msgid "" msgstr "" "Инкапсулирует операции по управлению и получению объектов Post в наборе " "представлений модели, доступном только для чтения. Этот класс предназначен " -"для работы с активными объектами Post и позволяет осуществлять фильтрацию на " -"основе заданных фильтров. Он интегрируется с системой фильтрации бэкенда " +"для работы с активными объектами Post и позволяет осуществлять фильтрацию на" +" основе заданных фильтров. Он интегрируется с системой фильтрации бэкенда " "Django и обеспечивает соответствие операций заданным разрешениям. Набор " "представлений также включает дополнительную конфигурацию разрешения " "'retrieve'." diff --git a/engine/blog/locale/sv_SE/LC_MESSAGES/django.mo b/engine/blog/locale/sv_SE/LC_MESSAGES/django.mo index 9d3c1903..1f0afa37 100644 Binary files a/engine/blog/locale/sv_SE/LC_MESSAGES/django.mo and b/engine/blog/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/sv_SE/LC_MESSAGES/django.po b/engine/blog/locale/sv_SE/LC_MESSAGES/django.po index 17c686bb..6b46d2f7 100644 --- a/engine/blog/locale/sv_SE/LC_MESSAGES/django.po +++ b/engine/blog/locale/sv_SE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Lista alla inlägg (skrivskyddad)" msgid "retrieve a single post (read-only)" msgstr "Hämta ett enskilt inlägg (skrivskyddat)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Representerar en modell för blogginlägg. Klassen Post definierar strukturen " "och beteendet för ett blogginlägg. Den innehåller attribut för författare, " @@ -41,63 +41,70 @@ msgstr "" "filbilaga krävs, men inte båda samtidigt. Den stöder också automatisk " "sluggenerering baserat på titeln." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Inläggets titel" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Titel" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "innehåll" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "inläggsinnehåll" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "är statisk sida" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "är detta ett inlägg för en sida med statisk URL (t.ex. `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Post" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Inlägg" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "Markdown-filer stöds inte - använd markdown-innehåll istället!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "filuppladdningar stöds ännu inte – använd innehåll istället" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "en markdown-fil eller markdown-innehåll måste tillhandahållas - ömsesidigt " "uteslutande" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "intern taggidentifierare för inläggstaggen" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tagg namn" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Användarvänligt namn för inläggstaggen" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Taggens visningsnamn" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Post tagg" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Taggar för inlägg" @@ -115,5 +122,5 @@ msgstr "" "objekt som är aktiva och tillåter filtrering baserat på definierade filter. " "Den integreras med Djangos backend-filtreringssystem och säkerställer att " "operationerna överensstämmer med de definierade behörigheterna. " -"Vyuppsättningen innehåller också en ytterligare behörighetskonfiguration för " -"\"hämta\"." +"Vyuppsättningen innehåller också en ytterligare behörighetskonfiguration för" +" \"hämta\"." diff --git a/engine/blog/locale/th_TH/LC_MESSAGES/django.mo b/engine/blog/locale/th_TH/LC_MESSAGES/django.mo index 9ab060c5..283fc508 100644 Binary files a/engine/blog/locale/th_TH/LC_MESSAGES/django.mo and b/engine/blog/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/th_TH/LC_MESSAGES/django.po b/engine/blog/locale/th_TH/LC_MESSAGES/django.po index c4f2e138..7aa0df81 100644 --- a/engine/blog/locale/th_TH/LC_MESSAGES/django.po +++ b/engine/blog/locale/th_TH/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,74 +25,86 @@ msgstr "แสดงรายการโพสต์ทั้งหมด (อ msgid "retrieve a single post (read-only)" msgstr "ดึงโพสต์เดียว (อ่านอย่างเดียว)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" -"แทนแบบจำลองของโพสต์ในบล็อก คลาส Post กำหนดโครงสร้างและพฤติกรรมของโพสต์ในบล็อก " -"ประกอบด้วยแอตทริบิวต์สำหรับผู้เขียน, ชื่อเรื่อง, เนื้อหา, ไฟล์แนบ (ไม่บังคับ), slug " -"และแท็กที่เกี่ยวข้อง คลาสนี้บังคับใช้ข้อจำกัด เช่น ต้องมีเนื้อหาหรือไฟล์แนบอย่างใดอย่างหนึ่ง " -"แต่ไม่สามารถมีทั้งสองอย่างพร้อมกันได้ นอกจากนี้ยังรองรับการสร้าง slug โดยอัตโนมัติจากชื่อเรื่อง" +"แทนแบบจำลองของโพสต์ในบล็อก คลาส Post " +"กำหนดโครงสร้างและพฤติกรรมของโพสต์ในบล็อก " +"ประกอบด้วยแอตทริบิวต์สำหรับผู้เขียน, ชื่อเรื่อง, เนื้อหา, ไฟล์แนบ " +"(ไม่บังคับ), slug และแท็กที่เกี่ยวข้อง คลาสนี้บังคับใช้ข้อจำกัด เช่น " +"ต้องมีเนื้อหาหรือไฟล์แนบอย่างใดอย่างหนึ่ง " +"แต่ไม่สามารถมีทั้งสองอย่างพร้อมกันได้ นอกจากนี้ยังรองรับการสร้าง slug " +"โดยอัตโนมัติจากชื่อเรื่อง" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "ชื่อโพสต์" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "ชื่อเรื่อง" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "เนื้อหา" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "โพสต์เนื้อหา" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "เป็นหน้าคงที่" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "นี่คือโพสต์สำหรับหน้าที่มี URL แบบคงที่ (เช่น `/help/delivery`)?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "โพสต์" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "โพสต์" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "ไฟล์มาร์กดาวน์ยังไม่รองรับในตอนนี้ - กรุณาใช้เนื้อหาแบบมาร์กดาวน์แทน!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "ยังไม่รองรับการอัปโหลดไฟล์ - กรุณาใช้เนื้อหาแทน" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" +msgstr "" +"ไฟล์มาร์กดาวน์หรือเนื้อหาแบบมาร์กดาวน์ต้องได้รับการจัดเตรียมไว้ - " +"ไม่สามารถใช้ร่วมกันได้" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "ไฟล์มาร์กดาวน์หรือเนื้อหาแบบมาร์กดาวน์ต้องได้รับการจัดเตรียมไว้ - ไม่สามารถใช้ร่วมกันได้" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "ตัวระบุแท็กภายในสำหรับแท็กโพสต์" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "ชื่อวัน" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "ชื่อที่ใช้งานได้ง่ายสำหรับแท็กโพสต์" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "แสดงชื่อแท็ก" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "โพสต์แท็ก" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "ป้ายกำกับโพสต์" @@ -105,8 +117,9 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"รวบรวมการดำเนินการสำหรับการจัดการและดึงข้อมูลเอนทิตีโพสต์ในชุดมุมมองแบบอ่านอย่างเดียว " -"คลาสนี้ถูกออกแบบมาเพื่อจัดการกับวัตถุโพสต์ที่ใช้งานอยู่และอนุญาตให้มีการกรองตามตัวกรองที่กำหนดไว้ " -"มันผสานรวมกับระบบการกรองแบ็กเอนด์ของ Django " -"และทำให้แน่ใจว่าการดำเนินการสอดคล้องกับสิทธิ์ที่กำหนดไว้ ชุดมุมมองยังรวมถึงการกำหนดค่าสิทธิ์ " -"'ดึงข้อมูล' เพิ่มเติมด้วย" +"รวบรวมการดำเนินการสำหรับการจัดการและดึงข้อมูลเอนทิตีโพสต์ในชุดมุมมองแบบอ่านอย่างเดียว" +" " +"คลาสนี้ถูกออกแบบมาเพื่อจัดการกับวัตถุโพสต์ที่ใช้งานอยู่และอนุญาตให้มีการกรองตามตัวกรองที่กำหนดไว้" +" มันผสานรวมกับระบบการกรองแบ็กเอนด์ของ Django " +"และทำให้แน่ใจว่าการดำเนินการสอดคล้องกับสิทธิ์ที่กำหนดไว้ " +"ชุดมุมมองยังรวมถึงการกำหนดค่าสิทธิ์ 'ดึงข้อมูล' เพิ่มเติมด้วย" diff --git a/engine/blog/locale/tr_TR/LC_MESSAGES/django.mo b/engine/blog/locale/tr_TR/LC_MESSAGES/django.mo index 8b41db22..1870d64b 100644 Binary files a/engine/blog/locale/tr_TR/LC_MESSAGES/django.mo and b/engine/blog/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/tr_TR/LC_MESSAGES/django.po b/engine/blog/locale/tr_TR/LC_MESSAGES/django.po index 3228feee..63aa0b9e 100644 --- a/engine/blog/locale/tr_TR/LC_MESSAGES/django.po +++ b/engine/blog/locale/tr_TR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,81 +25,89 @@ msgstr "Tüm gönderileri listele (salt okunur)" msgid "retrieve a single post (read-only)" msgstr "Tek bir gönderiyi al (salt okunur)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Bir blog yazısı modelini temsil eder. Post sınıfı, bir blog gönderisinin " "yapısını ve davranışını tanımlar. Yazar, başlık, içerik, isteğe bağlı dosya " -"eki, slug ve ilişkili etiketler için öznitelikler içerir. Sınıf, içerik veya " -"dosya eki gerektirme ancak her ikisini aynı anda gerektirmeme gibi " +"eki, slug ve ilişkili etiketler için öznitelikler içerir. Sınıf, içerik veya" +" dosya eki gerektirme ancak her ikisini aynı anda gerektirmeme gibi " "kısıtlamalar uygular. Ayrıca başlığa dayalı otomatik slug oluşturmayı da " "destekler." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Gönderinin başlığı" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Başlık" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "içerik" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "yazı içeriği" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "statik sayfadır" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "Bu, statik URL'ye sahip bir sayfa (örneğin `/help/delivery`) için bir " "gönderi mi?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Posta" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Mesajlar" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Markdown dosyaları desteklenmiyor yer - bunun yerine markdown içeriği " "kullanın!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" -"bir markdown dosyası veya markdown içeriği sağlanmalıdır - birbirini dışlayan" +"bir markdown dosyası veya markdown içeriği sağlanmalıdır - birbirini " +"dışlayan" -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "gönderi etiketi için dahili etiket tanımlayıcısı" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Etiket adı" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Gönderi etiketi için kullanıcı dostu ad" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Etiket görünen adı" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Mesaj etiketi" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Gönderi etiketleri" diff --git a/engine/blog/locale/vi_VN/LC_MESSAGES/django.mo b/engine/blog/locale/vi_VN/LC_MESSAGES/django.mo index e3d60cc2..8a2703b4 100644 Binary files a/engine/blog/locale/vi_VN/LC_MESSAGES/django.mo and b/engine/blog/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/vi_VN/LC_MESSAGES/django.po b/engine/blog/locale/vi_VN/LC_MESSAGES/django.po index 0dfa97e4..4b69d8ba 100644 --- a/engine/blog/locale/vi_VN/LC_MESSAGES/django.po +++ b/engine/blog/locale/vi_VN/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,14 @@ msgstr "Danh sách tất cả các bài đăng (chỉ đọc)" msgid "retrieve a single post (read-only)" msgstr "Lấy một bài đăng duy nhất (chỉ đọc)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" "Đại diện cho mô hình bài viết blog. Lớp Post định nghĩa cấu trúc và hành vi " "của một bài viết blog. Nó bao gồm các thuộc tính cho tác giả, tiêu đề, nội " @@ -40,65 +40,72 @@ msgstr "" "ràng buộc như yêu cầu phải có nội dung hoặc tệp đính kèm nhưng không cả hai " "cùng lúc. Nó cũng hỗ trợ tạo slug tự động dựa trên tiêu đề." -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "Tiêu đề bài đăng" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "Tiêu đề" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "nội dung" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "Nội dung bài đăng" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "là trang tĩnh" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "" "Đây có phải là bài đăng cho một trang có URL tĩnh (ví dụ: `/help/delivery`) " "không?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "Bài đăng" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "Bài đăng" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" msgstr "" "Tệp Markdown hiện chưa được hỗ trợ - hãy sử dụng nội dung Markdown thay thế!" -#: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" msgstr "" "Phải cung cấp tệp Markdown hoặc nội dung Markdown - hai tùy chọn này là " "tương phản nhau." -#: engine/blog/models.py:144 +#: engine/blog/models.py:110 msgid "internal tag identifier for the post tag" msgstr "Mã định danh thẻ nội bộ cho thẻ bài viết" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "Tên ngày" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "Tên thân thiện với người dùng cho thẻ bài viết" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "Hiển thị tên thẻ" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "Thẻ bài viết" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "Thẻ bài viết" @@ -113,6 +120,7 @@ msgid "" msgstr "" "Đóng gói các thao tác quản lý và truy xuất các thực thể Post trong một bộ " "xem mô hình chỉ đọc. Lớp này được thiết kế để xử lý các đối tượng Post đang " -"hoạt động và cho phép lọc dựa trên các bộ lọc đã định nghĩa. Nó tích hợp với " -"hệ thống lọc phía sau của Django và đảm bảo các thao tác tuân thủ các quyền " -"hạn đã định nghĩa. Bộ xem cũng bao gồm một cấu hình quyền 'retrieve' bổ sung." +"hoạt động và cho phép lọc dựa trên các bộ lọc đã định nghĩa. Nó tích hợp với" +" hệ thống lọc phía sau của Django và đảm bảo các thao tác tuân thủ các quyền" +" hạn đã định nghĩa. Bộ xem cũng bao gồm một cấu hình quyền 'retrieve' bổ " +"sung." diff --git a/engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo index 9f5f9254..33b29390 100644 Binary files a/engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo and b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po index a2ad6a8e..1cde08d6 100644 --- a/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po +++ b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -25,73 +25,78 @@ msgstr "列出所有帖子(只读)" msgid "retrieve a single post (read-only)" msgstr "检索单个帖子(只读)" -#: engine/blog/models.py:20 +#: engine/blog/models.py:19 msgid "" "Represents a blog post model. The Post class defines the structure and " "behavior of a blog post. It includes attributes for author, title, content, " "optional file attachment, slug, and associated tags. The class enforces " "constraints such as requiring either content or a file attachment but not " -"both simultaneously. It also supports automatic slug generation based on the " -"title." +"both simultaneously. It also supports automatic slug generation based on the" +" title." msgstr "" -"代表博文模型。帖子类定义了博文的结构和行为。它包括作者、标题、内容、可选文件" -"附件、标签和相关标记的属性。该类可强制执行一些限制条件,如要求提供内容或文件" -"附件,但不能同时提供这两种内容。它还支持根据标题自动生成标签。" +"代表博文模型。帖子类定义了博文的结构和行为。它包括作者、标题、内容、可选文件附件、标签和相关标记的属性。该类可强制执行一些限制条件,如要求提供内容或文件附件,但不能同时提供这两种内容。它还支持根据标题自动生成标签。" -#: engine/blog/models.py:41 +#: engine/blog/models.py:40 msgid "post title" msgstr "帖子标题" -#: engine/blog/models.py:42 +#: engine/blog/models.py:41 msgid "title" msgstr "标题" -#: engine/blog/models.py:89 +#: engine/blog/models.py:44 +msgid "content" +msgstr "内容" + +#: engine/blog/models.py:45 +msgid "post content" +msgstr "发布内容" + +#: engine/blog/models.py:57 msgid "is static page" msgstr "是静态页面" -#: engine/blog/models.py:91 +#: engine/blog/models.py:59 msgid "is this a post for a page with static URL (e.g. `/help/delivery`)?" msgstr "这是静态 URL 页面(如 `/help/delivery`)的帖子吗?" -#: engine/blog/models.py:99 +#: engine/blog/models.py:67 msgid "post" msgstr "职位" -#: engine/blog/models.py:100 +#: engine/blog/models.py:68 msgid "posts" msgstr "职位" -#: engine/blog/models.py:105 -msgid "markdown files are not supported yet - use markdown content instead" -msgstr "不支持 Markdown 文件,请使用 Markdown 内容!" +#: engine/blog/models.py:73 +msgid "file uploads are not supported yet - use content instead" +msgstr "目前尚不支持文件上传——请改用内容上传功能" + +#: engine/blog/models.py:77 +msgid "a file or content must be provided - mutually exclusive" +msgstr "必须提供一个Markdown文件或Markdown内容——两者互斥" #: engine/blog/models.py:110 -msgid "" -"a markdown file or markdown content must be provided - mutually exclusive" -msgstr "必须提供标记符文件或标记符内容 - 相互排斥" - -#: engine/blog/models.py:144 msgid "internal tag identifier for the post tag" msgstr "职位标签的内部标签标识符" -#: engine/blog/models.py:145 +#: engine/blog/models.py:111 msgid "tag name" msgstr "标签名称" -#: engine/blog/models.py:149 +#: engine/blog/models.py:115 msgid "user-friendly name for the post tag" msgstr "方便用户使用的帖子标签名称" -#: engine/blog/models.py:150 +#: engine/blog/models.py:116 msgid "tag display name" msgstr "标签显示名称" -#: engine/blog/models.py:158 +#: engine/blog/models.py:124 msgid "post tag" msgstr "职位标签" -#: engine/blog/models.py:159 +#: engine/blog/models.py:125 msgid "post tags" msgstr "帖子标签" @@ -104,6 +109,5 @@ msgid "" "defined permissions. The view set also includes an additional 'retrieve' " "permission configuration." msgstr "" -"该类封装了在只读模型视图集中管理和检索 \"帖子 \"实体的操作。该类专门用于处理" -"活动的 \"帖子 \"对象,并允许根据定义的过滤器进行过滤。它与 Django 的后台过滤" -"系统集成,确保操作与定义的权限一致。视图集还包括额外的 \"检索 \"权限配置。" +"该类封装了在只读模型视图集中管理和检索 \"帖子 \"实体的操作。该类专门用于处理活动的 \"帖子 \"对象,并允许根据定义的过滤器进行过滤。它与 " +"Django 的后台过滤系统集成,确保操作与定义的权限一致。视图集还包括额外的 \"检索 \"权限配置。" diff --git a/engine/blog/migrations/0008_alter_post_content_alter_post_content_ar_ar_and_more.py b/engine/blog/migrations/0008_alter_post_content_alter_post_content_ar_ar_and_more.py new file mode 100644 index 00000000..a6b6278d --- /dev/null +++ b/engine/blog/migrations/0008_alter_post_content_alter_post_content_ar_ar_and_more.py @@ -0,0 +1,215 @@ +# Generated by Django 5.2.9 on 2026-01-26 12:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("blog", "0007_post_is_static_page"), + ] + + operations = [ + migrations.AlterField( + model_name="post", + name="content", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_ar_ar", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_cs_cz", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_da_dk", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_de_de", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_en_gb", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_en_us", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_es_es", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_fa_ir", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_fr_fr", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_he_il", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_hi_in", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_hr_hr", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_id_id", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_it_it", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_ja_jp", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_kk_kz", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_ko_kr", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_nl_nl", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_no_no", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_pl_pl", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_pt_br", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_ro_ro", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_ru_ru", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_sv_se", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_th_th", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_tr_tr", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_vi_vn", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + migrations.AlterField( + model_name="post", + name="content_zh_hans", + field=models.TextField( + blank=True, help_text="post content", null=True, verbose_name="content" + ), + ), + ] diff --git a/engine/blog/models.py b/engine/blog/models.py index f4bfb069..23e9cdd7 100644 --- a/engine/blog/models.py +++ b/engine/blog/models.py @@ -6,11 +6,10 @@ from django.db.models import ( FileField, ForeignKey, ManyToManyField, + TextField, ) from django.utils.translation import gettext_lazy as _ from django_extensions.db.fields import AutoSlugField -from markdown.extensions.toc import TocExtension -from markdown_field import MarkdownField from engine.core.abstract import NiceModel @@ -41,40 +40,9 @@ class Post(NiceModel): help_text=_("post title"), verbose_name=_("title"), ) - content: MarkdownField = MarkdownField( - "content", - extensions=[ - TocExtension(toc_depth=3), - "pymdownx.arithmatex", - "pymdownx.b64", - "pymdownx.betterem", - "pymdownx.blocks.admonition", - "pymdownx.blocks.caption", - "pymdownx.blocks.definition", - "pymdownx.blocks.details", - "pymdownx.blocks.html", - "pymdownx.blocks.tab", - "pymdownx.caret", - "pymdownx.critic", - "pymdownx.emoji", - "pymdownx.escapeall", - "pymdownx.extra", - "pymdownx.fancylists", - "pymdownx.highlight", - "pymdownx.inlinehilite", - "pymdownx.keys", - "pymdownx.magiclink", - "pymdownx.mark", - "pymdownx.pathconverter", - "pymdownx.progressbar", - "pymdownx.saneheaders", - "pymdownx.smartsymbols", - "pymdownx.snippets", - "pymdownx.striphtml", - "pymdownx.superfences", - "pymdownx.tasklist", - "pymdownx.tilde", - ], + content = TextField( + verbose_name=_("content"), + help_text=_("post content"), blank=True, null=True, ) @@ -102,13 +70,11 @@ class Post(NiceModel): def save(self, *args, **kwargs): if self.file: raise ValueError( - _("markdown files are not supported yet - use markdown content instead") + _("file uploads are not supported yet - use content instead") ) if not any([self.file, self.content]) or all([self.file, self.content]): raise ValueError( - _( - "a markdown file or markdown content must be provided - mutually exclusive" - ) + _("a file or content must be provided - mutually exclusive") ) super().save(*args, **kwargs) diff --git a/engine/blog/serializers.py b/engine/blog/serializers.py index 57279ac1..9415d0ea 100644 --- a/engine/blog/serializers.py +++ b/engine/blog/serializers.py @@ -19,4 +19,4 @@ class PostSerializer(ModelSerializer): fields = "__all__" def get_content(self, obj: Post) -> str: - return obj.content.html.replace("\n", "
") + return obj.content or "" diff --git a/engine/blog/viewsets.py b/engine/blog/viewsets.py index a617ec96..a4d0d2c2 100644 --- a/engine/blog/viewsets.py +++ b/engine/blog/viewsets.py @@ -7,7 +7,7 @@ from engine.blog.docs.drf.viewsets import POST_SCHEMA from engine.blog.filters import PostFilter from engine.blog.models import Post from engine.blog.serializers import PostSerializer -from engine.core.permissions import EvibesPermission +from engine.core.permissions import SchonPermission @extend_schema_view(**POST_SCHEMA) @@ -20,7 +20,7 @@ class PostViewSet(ReadOnlyModelViewSet): ) serializer_class = PostSerializer - permission_classes = (EvibesPermission,) + permission_classes = (SchonPermission,) queryset = Post.objects.filter(is_active=True) filter_backends = [DjangoFilterBackend] filterset_class = PostFilter diff --git a/engine/core/admin.py b/engine/core/admin.py index 4c15e694..94df948e 100644 --- a/engine/core/admin.py +++ b/engine/core/admin.py @@ -155,7 +155,7 @@ class ActivationActionsMixin: ] @action( - description=_("activate selected %(verbose_name_plural)s").lower(), + description=_("Activate selected %(verbose_name_plural)s"), # ty:ignore[invalid-argument-type] permissions=["change"], ) def activate_selected(self, request: HttpRequest, queryset: QuerySet[Any]) -> None: @@ -163,7 +163,7 @@ class ActivationActionsMixin: queryset.update(is_active=True) self.message_user( request=request, - message=_("selected items have been activated.").lower(), + message=_("selected items have been activated.").lower().title(), level=messages.SUCCESS, ) @@ -171,7 +171,7 @@ class ActivationActionsMixin: self.message_user(request=request, message=str(e), level=messages.ERROR) @action( - description=_("deactivate selected %(verbose_name_plural)s").lower(), + description=_("Deactivate selected %(verbose_name_plural)s"), # ty:ignore[invalid-argument-type] permissions=["change"], ) def deactivate_selected( @@ -181,7 +181,7 @@ class ActivationActionsMixin: queryset.update(is_active=False) self.message_user( request=request, - message=_("selected items have been deactivated.").lower(), + message=_("selected items have been deactivated.").lower().title(), level=messages.SUCCESS, ) @@ -454,14 +454,19 @@ class ProductAdmin( ): # noinspection PyClassVar model = Product + actions = ActivationActionsMixin.actions + [ + "export_to_marketplaces", + "ban_from_marketplaces", + ] list_display = ( "sku", "name", "is_active", + "export_to_marketplaces", + "has_images", "category", "brand", "price", - "rating", "modified", ) list_filter = ( @@ -509,6 +514,7 @@ class ProductAdmin( "name", "partnumber", "is_digital", + "export_to_marketplaces", ] relation_fields = [ "category", @@ -519,6 +525,56 @@ class ProductAdmin( "is_updatable", ] + def has_images(self, obj: Product) -> bool: + return obj.has_images + + has_images.boolean = True # ty:ignore[unresolved-attribute] + has_images.short_description = _("has images") # ty:ignore[unresolved-attribute] + + @action( + description=_("Export selected %(verbose_name_plural)s to marketplaces' feeds"), # ty:ignore[invalid-argument-type] + permissions=["change"], + ) + def export_to_marketplaces( + self, request: HttpRequest, queryset: QuerySet[Any] + ) -> None: + try: + queryset.update(export_to_marketplaces=True) + self.message_user( + request=request, + message=_( + "selected %(verbose_name_plural)s have been marked for export." + ) + .lower() + .title(), + level=messages.SUCCESS, + ) + + except Exception as e: + self.message_user(request=request, message=str(e), level=messages.ERROR) + + @action( + description=_("Ban selected %(verbose_name_plural)s from marketplaces' feeds"), # ty:ignore[invalid-argument-type] + permissions=["change"], + ) + def ban_from_marketplaces( + self, request: HttpRequest, queryset: QuerySet[Any] + ) -> None: + try: + queryset.update(export_to_marketplaces=False) + self.message_user( + request=request, + message=_( + "selected %(verbose_name_plural)s have been banned from export." + ) + .lower() + .title(), + level=messages.SUCCESS, + ) + + except Exception as e: + self.message_user(request=request, message=str(e), level=messages.ERROR) + def get_queryset(self, request): return ( super() @@ -1090,7 +1146,7 @@ class ConstanceConfig: site.unregister([Config]) # ty:ignore[invalid-argument-type] site.register([ConstanceConfig], BaseConstanceAdmin) # ty:ignore[invalid-argument-type] site.site_title = settings.PROJECT_NAME -site.site_header = "eVibes" +site.site_header = "Schon" site.index_title = settings.PROJECT_NAME diff --git a/engine/core/docs/images/evibes-big-simple.png b/engine/core/docs/images/evibes-big-simple.png deleted file mode 100644 index 682ca927..00000000 Binary files a/engine/core/docs/images/evibes-big-simple.png and /dev/null differ diff --git a/engine/core/docs/images/evibes-big.png b/engine/core/docs/images/evibes-big.png deleted file mode 100644 index 260d9404..00000000 Binary files a/engine/core/docs/images/evibes-big.png and /dev/null differ diff --git a/engine/core/docs/images/evibes.ico b/engine/core/docs/images/evibes.ico deleted file mode 100644 index f3ba783b..00000000 Binary files a/engine/core/docs/images/evibes.ico and /dev/null differ diff --git a/engine/core/docs/images/evibes.png b/engine/core/docs/images/evibes.png deleted file mode 100644 index 1edacbc4..00000000 Binary files a/engine/core/docs/images/evibes.png and /dev/null differ diff --git a/engine/core/docs/images/favicon.svg b/engine/core/docs/images/favicon.svg deleted file mode 100644 index 356c7ae0..00000000 --- a/engine/core/docs/images/favicon.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - diff --git a/engine/core/feeds/__init__.py b/engine/core/feeds/__init__.py new file mode 100644 index 00000000..87955c75 --- /dev/null +++ b/engine/core/feeds/__init__.py @@ -0,0 +1,21 @@ +from engine.core.feeds.amazon_seller import AmazonSellerFeedGenerator +from engine.core.feeds.base import BaseFeedGenerator +from engine.core.feeds.google_merchant import GoogleMerchantFeedGenerator +from engine.core.feeds.yandex_market import YandexMarketFeedGenerator +from engine.core.feeds.yandex_products import YandexProductsFeedGenerator + +FEED_GENERATORS: dict[str, type[BaseFeedGenerator]] = { + "google_merchant": GoogleMerchantFeedGenerator, + "yandex_market": YandexMarketFeedGenerator, + "yandex_products": YandexProductsFeedGenerator, + "amazon_seller": AmazonSellerFeedGenerator, +} + +__all__ = [ + "BaseFeedGenerator", + "GoogleMerchantFeedGenerator", + "YandexMarketFeedGenerator", + "YandexProductsFeedGenerator", + "AmazonSellerFeedGenerator", + "FEED_GENERATORS", +] diff --git a/engine/core/feeds/amazon_seller.py b/engine/core/feeds/amazon_seller.py new file mode 100644 index 00000000..a06903e7 --- /dev/null +++ b/engine/core/feeds/amazon_seller.py @@ -0,0 +1,241 @@ +from datetime import datetime +from typing import Any +from xml.etree.ElementTree import Element, SubElement + +from constance import config +from django.conf import settings +from django.db.models import QuerySet + +from engine.core.feeds.base import BaseFeedGenerator +from engine.core.models import Product + + +class AmazonSellerFeedGenerator(BaseFeedGenerator): + """ + Amazon Seller Central feed generator. + + Generates product feeds in Amazon's XML format for Seller Central. + Reference: https://developer-docs.amazon.com/sp-api/docs/feeds-api-v2021-06-30-reference + """ + + name: str = "amazon_seller" + supported_formats: tuple[str, ...] = ("xml", "json", "yaml") + default_format: str = "xml" + + AMAZON_NS = "http://www.amazon.com/schema/merchant/product/2024-01" + + def generate_feed_data(self, products: QuerySet[Product]) -> dict[str, Any]: + """Generate feed data as a structured dictionary.""" + messages = [] + for idx, product in enumerate(products, start=1): + message = self._build_message(product, idx) + if message: + messages.append(message) + + return { + "header": { + "documentVersion": "1.0", + "merchantIdentifier": config.COMPANY_NAME or settings.PROJECT_NAME, + }, + "messageType": "Product", + "purgeAndReplace": False, + "messages": messages, + "generated_at": datetime.now().isoformat(), + } + + def _build_message( + self, product: Product, message_id: int + ) -> dict[str, Any] | None: + """Build a message dictionary for a product.""" + if not product.price or product.price <= 0: + return None + + images = self.get_product_images(product) + + description_data: dict[str, Any] = { + "title": product.name[:200], + "brand": product.brand.name if product.brand else "", + "description": (product.description or "")[:2000], + "bulletPoint": self._get_bullet_points(product), + "manufacturer": product.brand.name + if product.brand + else config.COMPANY_NAME or "", + "itemType": self._get_item_type(product), + } + + if images: + description_data["mainImage"] = { + "imageType": "Main", + "imageLocation": images[0], + } + if len(images) > 1: + description_data["otherImages"] = [ + {"imageType": f"PT{i}", "imageLocation": img} + for i, img in enumerate(images[1:9], start=1) + ] + + message: dict[str, Any] = { + "messageID": message_id, + "operationType": "Update", + "product": { + "sku": product.sku, + "standardProductID": self._get_standard_product_id(product), + "productTaxCode": "A_GEN_TAX", + "descriptionData": description_data, + "productData": self._get_product_data(product), + }, + } + + return message + + def _get_standard_product_id(self, product: Product) -> dict[str, str]: + """Get standard product identifier (EAN/UPC/GTIN).""" + id_types = [ + ("ean", "EAN"), + ("upc", "UPC"), + ("gtin", "GTIN"), + ("isbn", "ISBN"), + ] + + for attr_value in product.attributes.all(): + attr_name_lower = attr_value.attribute.name.lower() + for attr_key, amazon_type in id_types: + if attr_name_lower == attr_key: + return {"type": amazon_type, "value": attr_value.value} + + if product.partnumber: + return {"type": "PrivateLabel", "value": product.partnumber} + + return {"type": "PrivateLabel", "value": product.sku} + + def _get_bullet_points(self, product: Product) -> list[str]: + """Generate bullet points from product attributes.""" + bullet_points = [] + + for attr_value in product.attributes.all()[:5]: + bullet_points.append(f"{attr_value.attribute.name}: {attr_value.value}") + + return bullet_points + + def _get_item_type(self, product: Product) -> str: + """Get the item type from category.""" + if product.category: + return product.category.name + return "General" + + def _get_product_data(self, product: Product) -> dict[str, Any]: + """Get additional product data.""" + data = { + "price": { + "standardPrice": { + "value": product.price, + "currency": self.get_currency(), + }, + }, + "inventory": { + "quantity": product.quantity, + "fulfillmentLatency": 3, + }, + } + + if product.discount_price: + sale_price = product.price - product.discount_price + if sale_price > 0: + data["price"]["salePrice"] = { + "value": sale_price, + "currency": self.get_currency(), + } + + return data + + def to_xml(self, data: dict[str, Any]) -> str: + """Convert feed data to Amazon XML format.""" + envelope = Element("AmazonEnvelope") + envelope.set("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") + envelope.set("xsi:noNamespaceSchemaLocation", "amzn-envelope.xsd") + + header = SubElement(envelope, "Header") + doc_version = SubElement(header, "DocumentVersion") + doc_version.text = data["header"]["documentVersion"] + merchant_id = SubElement(header, "MerchantIdentifier") + merchant_id.text = data["header"]["merchantIdentifier"] + + message_type = SubElement(envelope, "MessageType") + message_type.text = data["messageType"] + + purge = SubElement(envelope, "PurgeAndReplace") + purge.text = "true" if data["purgeAndReplace"] else "false" + + for msg_data in data["messages"]: + self._add_message_to_xml(envelope, msg_data) + + return '\n' + self.prettify_xml(envelope) + + def _add_message_to_xml(self, envelope: Element, msg_data: dict[str, Any]) -> None: + """Add a message to the XML envelope.""" + message = SubElement(envelope, "Message") + + message_id = SubElement(message, "MessageID") + message_id.text = str(msg_data["messageID"]) + + operation_type = SubElement(message, "OperationType") + operation_type.text = msg_data["operationType"] + + product = SubElement(message, "Product") + product_data = msg_data["product"] + + sku = SubElement(product, "SKU") + sku.text = product_data["sku"] + + std_product_id = SubElement(product, "StandardProductID") + type_elem = SubElement(std_product_id, "Type") + type_elem.text = product_data["standardProductID"]["type"] + value_elem = SubElement(std_product_id, "Value") + value_elem.text = product_data["standardProductID"]["value"] + + tax_code = SubElement(product, "ProductTaxCode") + tax_code.text = product_data["productTaxCode"] + + desc_data = SubElement(product, "DescriptionData") + self._add_description_data_to_xml(desc_data, product_data["descriptionData"]) + + def _add_description_data_to_xml( + self, parent: Element, desc_data: dict[str, Any] + ) -> None: + """Add description data to the XML element.""" + title = SubElement(parent, "Title") + title.text = desc_data["title"] + + if desc_data.get("brand"): + brand = SubElement(parent, "Brand") + brand.text = desc_data["brand"] + + if desc_data.get("description"): + description = SubElement(parent, "Description") + description.text = desc_data["description"] + + for bullet in desc_data.get("bulletPoint", []): + bullet_point = SubElement(parent, "BulletPoint") + bullet_point.text = bullet + + if desc_data.get("manufacturer"): + manufacturer = SubElement(parent, "Manufacturer") + manufacturer.text = desc_data["manufacturer"] + + if desc_data.get("itemType"): + item_type = SubElement(parent, "ItemType") + item_type.text = desc_data["itemType"] + + if desc_data.get("mainImage"): + main_image = SubElement(parent, "MainImage") + img_type = SubElement(main_image, "ImageType") + img_type.text = desc_data["mainImage"]["imageType"] + img_loc = SubElement(main_image, "ImageLocation") + img_loc.text = desc_data["mainImage"]["imageLocation"] + + for other_img in desc_data.get("otherImages", []): + other_image = SubElement(parent, "OtherImage") + img_type = SubElement(other_image, "ImageType") + img_type.text = other_img["imageType"] + img_loc = SubElement(other_image, "ImageLocation") + img_loc.text = other_img["imageLocation"] diff --git a/engine/core/feeds/base.py b/engine/core/feeds/base.py new file mode 100644 index 00000000..01f00ede --- /dev/null +++ b/engine/core/feeds/base.py @@ -0,0 +1,173 @@ +import json +import logging +import os +from abc import ABC, abstractmethod +from datetime import datetime +from typing import Any +from xml.dom import minidom +from xml.etree.ElementTree import Element, tostring + +import yaml +from django.conf import settings +from django.db.models import QuerySet + +from engine.core.models import Product + +logger = logging.getLogger(__name__) + + +class BaseFeedGenerator(ABC): + """ + Base class for marketplace feed generators. + + Each marketplace feed generator should inherit from this class and implement + the required methods for generating feed data in the appropriate format. + """ + + name: str = "base" + supported_formats: tuple[str, ...] = ("xml", "json", "yaml") + default_format: str = "xml" + + def __init__(self, locale: str = "en-gb"): + self.locale = locale + self.generated_at = datetime.now() + + def get_products(self) -> QuerySet[Product]: + """Get products that should be exported to marketplaces.""" + return ( + Product.objects.filter( + is_active=True, + export_to_marketplaces=True, + ) + .select_related( + "category", + "brand", + ) + .prefetch_related( + "images", + "stocks", + "attributes__attribute", + "tags", + ) + ) + + def get_product_url(self, product: Product) -> str: + """Generate the frontend URL for a product.""" + return ( + f"https://{settings.STOREFRONT_DOMAIN}/{self.locale}/product/{product.slug}" + ) + + def get_product_image_url(self, product: Product) -> str: + """Get the primary image URL for a product.""" + image = product.images.order_by("priority").first() + if image: + return image.image_url + return "" + + def get_product_images(self, product: Product) -> list[str]: + """Get all image URLs for a product.""" + return [ + img.image_url + for img in product.images.order_by("priority") + if img.image_url + ] + + def get_availability(self, product: Product) -> str: + """Get availability status for a product.""" + return "in stock" if product.quantity > 0 else "out of stock" + + def get_currency(self) -> str: + """Get the currency code.""" + return settings.CURRENCY_CODE + + def get_output_path(self, format_type: str) -> str: + """Get the output file path for the feed.""" + feeds_dir = os.path.join(settings.MEDIA_ROOT, "feeds") + os.makedirs(feeds_dir, exist_ok=True) + + extension = format_type if format_type != "yaml" else "yml" + return os.path.join(feeds_dir, f"{self.name}.{extension}") + + @abstractmethod + def generate_feed_data(self, products: QuerySet[Product]) -> Any: + """ + Generate the feed data structure. + + This method should be implemented by each marketplace-specific generator + to create the appropriate data structure for that marketplace. + """ + raise NotImplementedError + + def to_xml(self, data: Any) -> str: + """Convert feed data to XML format.""" + raise NotImplementedError( + f"{self.__class__.__name__} does not support XML format" + ) + + def to_json(self, data: Any) -> str: + """Convert feed data to JSON format.""" + return json.dumps(data, ensure_ascii=False, indent=2) + + def to_yaml(self, data: Any) -> str: + """Convert feed data to YAML format.""" + return yaml.dump(data, allow_unicode=True, default_flow_style=False) + + def generate(self, format_type: str | None = None) -> str: + """ + Generate the feed and save it to a file. + + Args: + format_type: The output format (xml, json, yaml). Defaults to the generator's default. + + Returns: + The path to the generated feed file. + """ + if format_type is None: + format_type = self.default_format + + if format_type not in self.supported_formats: + raise ValueError( + f"Format '{format_type}' is not supported by {self.__class__.__name__}. " + f"Supported formats: {self.supported_formats}" + ) + + products = self.get_products() + product_count = products.count() + + if product_count == 0: + logger.warning("No products to export for %s feed", self.name) + + logger.info("Generating %s feed with %d products", self.name, product_count) + + feed_data = self.generate_feed_data(products) + + match format_type: + case "xml": + content = self.to_xml(feed_data) + case "json": + content = self.to_json(feed_data) + case "yaml" | "yml": + content = self.to_yaml(feed_data) + case _: + raise ValueError(f"Unknown format: {format_type}") + + output_path = self.get_output_path(format_type) + + with open(output_path, "w", encoding="utf-8") as f: + f.write(content) + + logger.info("Generated %s feed at %s", self.name, output_path) + + return output_path + + @staticmethod + def prettify_xml(elem: Element) -> str: + """Return a pretty-printed XML string for the Element (without XML declaration).""" + rough_string = tostring(elem, encoding="unicode") + reparsed = minidom.parseString(rough_string) + pretty = reparsed.toprettyxml(indent=" ") + # Strip the XML declaration added by toprettyxml so callers can add their own + lines = pretty.split("\n") + if lines and lines[0].startswith(" list[dict[str, Any]]: + """Generate feed data as a list of product dictionaries.""" + items = [] + + for product in products: + item = self._build_product_item(product) + if item: + items.append(item) + + return items + + def _build_product_item(self, product: Product) -> dict[str, Any] | None: + """Build a product item dictionary for the feed.""" + if not product.price or product.price <= 0: + return None + + images = self.get_product_images(product) + primary_image = images[0] if images else "" + additional_images = images[1:10] if len(images) > 1 else [] + + item = { + "id": product.sku, + "title": product.name[:150], + "description": (product.description or "")[:5000], + "link": self.get_product_url(product), + "image_link": primary_image, + "availability": self.get_availability(product), + "price": f"{product.price:.2f} {self.get_currency()}", + "brand": product.brand.name if product.brand else "", + "condition": "new", + "product_type": self._get_product_type(product), + } + + if additional_images: + item["additional_image_link"] = additional_images + + if product.partnumber: + item["mpn"] = product.partnumber + + if product.discount_price: + sale_price = product.price - product.discount_price + if sale_price > 0: + item["sale_price"] = f"{sale_price:.2f} {self.get_currency()}" + + gtin = self._get_gtin(product) + if gtin: + item["gtin"] = gtin + else: + item["identifier_exists"] = "no" + + return item + + def _get_product_type(self, product: Product) -> str: + """Build the product type hierarchy from category.""" + if not product.category: + return "" + + ancestors = product.category.get_ancestors(include_self=True) + return " > ".join([cat.name for cat in ancestors]) + + def _get_gtin(self, product: Product) -> str | None: + """Extract GTIN/EAN/UPC from product attributes.""" + gtin_names = ["gtin", "ean", "upc", "isbn", "barcode"] + + for attr_value in product.attributes.all(): + if attr_value.attribute.name.lower() in gtin_names: + return attr_value.value + + return None + + def to_xml(self, data: list[dict[str, Any]]) -> str: + """Convert feed data to Google Merchant XML format.""" + rss = Element("rss") + rss.set("version", "2.0") + rss.set("xmlns:g", self.GOOGLE_NS) + + channel = SubElement(rss, "channel") + + title = SubElement(channel, "title") + title.text = config.COMPANY_NAME or settings.PROJECT_NAME + + link = SubElement(channel, "link") + link.text = f"https://{settings.STOREFRONT_DOMAIN}" + + description = SubElement(channel, "description") + description.text = ( + f"Product feed for {config.COMPANY_NAME or settings.PROJECT_NAME}" + ) + + for product_data in data: + item = SubElement(channel, "item") + self._add_product_to_xml(item, product_data) + + return '\n' + self.prettify_xml(rss) + + def _add_product_to_xml(self, item: Element, product_data: dict[str, Any]) -> None: + """Add a product's data to an XML item element.""" + simple_fields = [ + ("id", "g:id"), + ("title", "g:title"), + ("description", "g:description"), + ("link", "g:link"), + ("image_link", "g:image_link"), + ("availability", "g:availability"), + ("price", "g:price"), + ("brand", "g:brand"), + ("condition", "g:condition"), + ("product_type", "g:product_type"), + ("mpn", "g:mpn"), + ("gtin", "g:gtin"), + ("sale_price", "g:sale_price"), + ("identifier_exists", "g:identifier_exists"), + ] + + for data_key, xml_tag in simple_fields: + if data_key in product_data and product_data[data_key]: + elem = SubElement(item, xml_tag) + elem.text = str(product_data[data_key]) + + additional_images = product_data.get("additional_image_link", []) + for img_url in additional_images: + elem = SubElement(item, "g:additional_image_link") + elem.text = img_url + + def to_json(self, data: list[dict[str, Any]]) -> str: + """Convert feed data to JSON format.""" + feed = { + "channel": { + "title": config.COMPANY_NAME or settings.PROJECT_NAME, + "link": f"https://{settings.STOREFRONT_DOMAIN}", + "description": f"Product feed for {config.COMPANY_NAME or settings.PROJECT_NAME}", + "generated_at": datetime.now().isoformat(), + }, + "items": data, + } + return super().to_json(feed) diff --git a/engine/core/feeds/yandex_market.py b/engine/core/feeds/yandex_market.py new file mode 100644 index 00000000..8ce91e42 --- /dev/null +++ b/engine/core/feeds/yandex_market.py @@ -0,0 +1,219 @@ +from datetime import datetime +from typing import Any +from xml.etree.ElementTree import Element, SubElement + +from constance import config +from django.conf import settings +from django.db.models import QuerySet + +from engine.core.feeds.base import BaseFeedGenerator +from engine.core.models import Product + + +class YandexMarketFeedGenerator(BaseFeedGenerator): + """ + Yandex Market feed generator (YML format). + + Generates product feeds in Yandex Market Language (YML) format. + Reference: https://yandex.ru/support/partnermarket/export/yml.html + """ + + name: str = "yandex_market" + supported_formats: tuple[str, ...] = ("xml", "json", "yaml") + default_format: str = "xml" + + def generate_feed_data(self, products: QuerySet[Product]) -> dict[str, Any]: + """Generate feed data as a structured dictionary.""" + categories = self._get_categories_from_products(products) + currencies = self._get_currencies() + + offers = [] + for product in products: + offer = self._build_offer(product) + if offer: + offers.append(offer) + + return { + "shop": { + "name": config.COMPANY_NAME or settings.PROJECT_NAME, + "company": config.COMPANY_NAME or settings.PROJECT_NAME, + "url": f"https://{settings.STOREFRONT_DOMAIN}", + "currencies": currencies, + "categories": categories, + "offers": offers, + }, + "date": datetime.now().strftime("%Y-%m-%d %H:%M"), + } + + def _get_categories_from_products( + self, products: QuerySet[Product] + ) -> list[dict[str, Any]]: + """Extract unique categories from products with their hierarchy.""" + category_ids = set() + categories_data = [] + + for product in products: + if product.category_id: + ancestors = product.category.get_ancestors(include_self=True) + for cat in ancestors: + if cat.id not in category_ids: + category_ids.add(cat.id) + cat_data = { + "id": cat.id, + "name": cat.name, + } + if cat.parent_id: + cat_data["parentId"] = cat.parent_id + categories_data.append(cat_data) + + return categories_data + + def _get_currencies(self) -> list[dict[str, str]]: + """Get supported currencies.""" + return [ + {"id": self.get_currency(), "rate": "1"}, + ] + + def _build_offer(self, product: Product) -> dict[str, Any] | None: + """Build an offer dictionary for a product.""" + if not product.price or product.price <= 0: + return None + + images = self.get_product_images(product) + + offer = { + "id": product.sku, + "available": product.quantity > 0, + "url": self.get_product_url(product), + "price": product.price, + "currencyId": self.get_currency(), + "categoryId": product.category_id, + "name": product.name[:120], + } + + if images: + offer["picture"] = images[:10] + + if product.brand: + offer["vendor"] = product.brand.name + + if product.partnumber: + offer["vendorCode"] = product.partnumber + + if product.description: + offer["description"] = product.description[:3000] + + if product.discount_price: + offer["oldprice"] = product.price + offer["price"] = product.price - product.discount_price + + barcode = self._get_barcode(product) + if barcode: + offer["barcode"] = barcode + + params = self._get_params(product) + if params: + offer["param"] = params + + return offer + + def _get_barcode(self, product: Product) -> str | None: + """Extract barcode/EAN from product attributes.""" + barcode_names = ["barcode", "ean", "gtin", "upc"] + + for attr_value in product.attributes.all(): + if attr_value.attribute.name.lower() in barcode_names: + return attr_value.value + + return None + + def _get_params(self, product: Product) -> list[dict[str, str]]: + """Extract product parameters from attributes.""" + params = [] + skip_names = ["barcode", "ean", "gtin", "upc", "isbn"] + + for attr_value in product.attributes.all(): + attr_name = attr_value.attribute.name + if attr_name.lower() not in skip_names: + params.append( + { + "name": attr_name, + "value": attr_value.value, + } + ) + + return params + + def to_xml(self, data: dict[str, Any]) -> str: + """Convert feed data to YML XML format.""" + yml_catalog = Element("yml_catalog") + yml_catalog.set("date", data["date"]) + + shop = SubElement(yml_catalog, "shop") + + name = SubElement(shop, "name") + name.text = data["shop"]["name"] + + company = SubElement(shop, "company") + company.text = data["shop"]["company"] + + url = SubElement(shop, "url") + url.text = data["shop"]["url"] + + currencies = SubElement(shop, "currencies") + for curr in data["shop"]["currencies"]: + currency = SubElement(currencies, "currency") + currency.set("id", curr["id"]) + currency.set("rate", curr["rate"]) + + categories = SubElement(shop, "categories") + for cat in data["shop"]["categories"]: + category = SubElement(categories, "category") + category.set("id", str(cat["id"])) + if "parentId" in cat: + category.set("parentId", str(cat["parentId"])) + category.text = cat["name"] + + offers = SubElement(shop, "offers") + for offer_data in data["shop"]["offers"]: + self._add_offer_to_xml(offers, offer_data) + + return ( + '\n\n' + + self.prettify_xml(yml_catalog) + ) + + def _add_offer_to_xml(self, offers: Element, offer_data: dict[str, Any]) -> None: + """Add an offer to the XML offers element.""" + offer = SubElement(offers, "offer") + offer.set("id", str(offer_data["id"])) + offer.set("available", "true" if offer_data["available"] else "false") + + simple_fields = [ + "url", + "price", + "oldprice", + "currencyId", + "categoryId", + "name", + "vendor", + "vendorCode", + "description", + "barcode", + ] + + for field in simple_fields: + if field in offer_data and offer_data[field] is not None: + elem = SubElement(offer, field) + elem.text = str(offer_data[field]) + + pictures = offer_data.get("picture", []) + for pic_url in pictures: + picture = SubElement(offer, "picture") + picture.text = pic_url + + params = offer_data.get("param", []) + for param_data in params: + param = SubElement(offer, "param") + param.set("name", param_data["name"]) + param.text = param_data["value"] diff --git a/engine/core/feeds/yandex_products.py b/engine/core/feeds/yandex_products.py new file mode 100644 index 00000000..343e3df1 --- /dev/null +++ b/engine/core/feeds/yandex_products.py @@ -0,0 +1,141 @@ +from datetime import datetime +from typing import Any +from xml.etree.ElementTree import Element, SubElement + +from constance import config +from django.conf import settings +from django.db.models import QuerySet + +from engine.core.feeds.base import BaseFeedGenerator +from engine.core.models import Product + + +class YandexProductsFeedGenerator(BaseFeedGenerator): + """ + Yandex Products (Yandex Webmaster) feed generator. + + Generates product feeds for Yandex Webmaster product snippets. + Reference: https://yandex.ru/support/webmaster/goods-prices/technical-requirements.html + """ + + name: str = "yandex_products" + supported_formats: tuple[str, ...] = ("xml", "json", "yaml") + default_format: str = "xml" + + def generate_feed_data(self, products: QuerySet[Product]) -> dict[str, Any]: + """Generate feed data as a structured dictionary.""" + offers = [] + for product in products: + offer = self._build_offer(product) + if offer: + offers.append(offer) + + return { + "shop": { + "name": config.COMPANY_NAME or settings.PROJECT_NAME, + "company": config.COMPANY_NAME or settings.PROJECT_NAME, + "url": f"https://{settings.STOREFRONT_DOMAIN}", + "email": config.EMAIL_HOST_USER or "", + "offers": offers, + }, + "date": datetime.now().strftime("%Y-%m-%d %H:%M"), + } + + def _build_offer(self, product: Product) -> dict[str, Any] | None: + """Build an offer dictionary for a product.""" + if not product.price or product.price <= 0: + return None + + images = self.get_product_images(product) + + offer = { + "url": self.get_product_url(product), + "price": product.price, + "currencyId": self.get_currency(), + "name": product.name[:120], + "available": product.quantity > 0, + } + + if images: + offer["picture"] = images[0] + + if product.brand: + offer["vendor"] = product.brand.name + + if product.category: + ancestors = product.category.get_ancestors(include_self=True) + offer["category"] = " / ".join([cat.name for cat in ancestors]) + + if product.description: + offer["description"] = product.description[:500] + + if product.discount_price: + offer["oldprice"] = product.price + offer["price"] = product.price - product.discount_price + + barcode = self._get_barcode(product) + if barcode: + offer["barcode"] = barcode + + return offer + + def _get_barcode(self, product: Product) -> str | None: + """Extract barcode/EAN from product attributes.""" + barcode_names = ["barcode", "ean", "gtin", "upc"] + + for attr_value in product.attributes.all(): + if attr_value.attribute.name.lower() in barcode_names: + return attr_value.value + + return None + + def to_xml(self, data: dict[str, Any]) -> str: + """Convert feed data to Yandex Products XML format.""" + yml_catalog = Element("yml_catalog") + yml_catalog.set("date", data["date"]) + + shop = SubElement(yml_catalog, "shop") + + name = SubElement(shop, "name") + name.text = data["shop"]["name"] + + company = SubElement(shop, "company") + company.text = data["shop"]["company"] + + url = SubElement(shop, "url") + url.text = data["shop"]["url"] + + if data["shop"].get("email"): + email = SubElement(shop, "email") + email.text = data["shop"]["email"] + + offers = SubElement(shop, "offers") + for offer_data in data["shop"]["offers"]: + self._add_offer_to_xml(offers, offer_data) + + return '\n' + self.prettify_xml( + yml_catalog + ) + + def _add_offer_to_xml(self, offers: Element, offer_data: dict[str, Any]) -> None: + """Add an offer to the XML offers element.""" + offer = SubElement(offers, "offer") + offer.set("available", "true" if offer_data["available"] else "false") + + simple_fields = [ + "url", + "price", + "oldprice", + "currencyId", + "name", + "vendor", + "category", + "picture", + "description", + "barcode", + ] + + for field in simple_fields: + if field in offer_data and offer_data[field] is not None: + elem = SubElement(offer, field) + elem.text = str(offer_data[field]) diff --git a/engine/core/fixtures/demo.json b/engine/core/fixtures/demo.json new file mode 100644 index 00000000..e2669881 --- /dev/null +++ b/engine/core/fixtures/demo.json @@ -0,0 +1,710 @@ +{ + "category_tags": [ + {"tag_name": "precious", "name": "Precious Stones", "name_ru": "Драгоценные камни"}, + {"tag_name": "semi-precious", "name": "Semi-Precious Stones", "name_ru": "Полудрагоценные камни"}, + {"tag_name": "organic", "name": "Organic Gems", "name_ru": "Органические камни"} + ], + "product_tags": [ + {"tag_name": "certified", "name": "GIA Certified", "name_ru": "Сертификат GIA"}, + {"tag_name": "ethically-sourced", "name": "Ethically Sourced", "name_ru": "Этичное происхождение"}, + {"tag_name": "rare", "name": "Rare Find", "name_ru": "Редкая находка"}, + {"tag_name": "investment", "name": "Investment Grade", "name_ru": "Инвестиционное качество"}, + {"tag_name": "collector", "name": "Collector's Item", "name_ru": "Коллекционный экземпляр"} + ], + "attribute_groups": [ + {"name": "Physical Properties", "name_ru": "Физические свойства"}, + {"name": "Grading", "name_ru": "Оценка качества"}, + {"name": "Origin", "name_ru": "Происхождение"} + ], + "attributes": [ + {"group": "Physical Properties", "name": "Carat Weight", "name_ru": "Вес в каратах", "value_type": "float", "is_filterable": true}, + {"group": "Physical Properties", "name": "Dimensions (mm)", "name_ru": "Размеры (мм)", "value_type": "string", "is_filterable": false}, + {"group": "Physical Properties", "name": "Cut", "name_ru": "Огранка", "value_type": "string", "is_filterable": true}, + {"group": "Grading", "name": "Color Grade", "name_ru": "Цветовая категория", "value_type": "string", "is_filterable": true}, + {"group": "Grading", "name": "Clarity Grade", "name_ru": "Чистота", "value_type": "string", "is_filterable": true}, + {"group": "Origin", "name": "Country of Origin", "name_ru": "Страна происхождения", "value_type": "string", "is_filterable": true}, + {"group": "Origin", "name": "Mine", "name_ru": "Месторождение", "value_type": "string", "is_filterable": true} + ], + "brands": [ + { + "name": "Sparkle & Stone", + "name_ru": "Искра и Камень", + "description": "Premium gemstone specialists since 1987. Known for exceptional quality and ethical sourcing.", + "description_ru": "Премиальные специалисты по драгоценным камням с 1987 года. Известны исключительным качеством и этичными поставками." + }, + { + "name": "Azure Dreams", + "name_ru": "Лазурные Мечты", + "description": "Specializing in rare blue gemstones from around the world.", + "description_ru": "Специализируемся на редких голубых драгоценных камнях со всего мира." + }, + { + "name": "Crimson Vault", + "name_ru": "Багровое Хранилище", + "description": "Expert purveyors of red and pink precious stones.", + "description_ru": "Эксперты по красным и розовым драгоценным камням." + }, + { + "name": "Evergreen Gems", + "name_ru": "Вечнозелёные Камни", + "description": "The world's finest emeralds and green gemstones.", + "description_ru": "Лучшие изумруды и зелёные драгоценные камни в мире." + }, + { + "name": "Lumina Treasures", + "name_ru": "Сокровища Люмина", + "description": "Collectors' gems with exceptional clarity and fire.", + "description_ru": "Коллекционные камни с исключительной чистотой и игрой света." + }, + { + "name": "Oceanic Pearls", + "name_ru": "Океанический Жемчуг", + "description": "Sustainably harvested pearls from pristine waters.", + "description_ru": "Жемчуг устойчивого происхождения из чистейших вод." + }, + { + "name": "Terra Rara", + "name_ru": "Терра Рара", + "description": "Rare and unusual gemstones for the discerning collector.", + "description_ru": "Редкие и необычные драгоценные камни для взыскательных коллекционеров." + }, + { + "name": "Crystal Kingdom", + "name_ru": "Хрустальное Королевство", + "description": "Quartz varieties and crystal formations of museum quality.", + "description_ru": "Разновидности кварца и кристаллические образования музейного качества." + } + ], + "categories": [ + { + "name": "Gemstones", + "name_ru": "Драгоценные камни", + "description": "Fine gemstones from around the world", + "description_ru": "Изысканные драгоценные камни со всего мира", + "parent": null, + "markup_percent": 0 + }, + { + "name": "Diamonds", + "name_ru": "Бриллианты", + "description": "The hardest natural material on Earth, prized for brilliance and fire", + "description_ru": "Самый твёрдый природный материал на Земле, ценится за блеск и игру света", + "parent": "Gemstones", + "markup_percent": 15 + }, + { + "name": "Rubies", + "name_ru": "Рубины", + "description": "The king of precious stones, known for deep red color", + "description_ru": "Король драгоценных камней, известен глубоким красным цветом", + "parent": "Gemstones", + "markup_percent": 12 + }, + { + "name": "Sapphires", + "name_ru": "Сапфиры", + "description": "Classic blue gemstones with exceptional hardness", + "description_ru": "Классические голубые драгоценные камни с исключительной твёрдостью", + "parent": "Gemstones", + "markup_percent": 10 + }, + { + "name": "Emeralds", + "name_ru": "Изумруды", + "description": "Lush green beryl gemstones, symbol of rebirth", + "description_ru": "Роскошные зелёные камни берилла, символ возрождения", + "parent": "Gemstones", + "markup_percent": 10 + }, + { + "name": "Opals", + "name_ru": "Опалы", + "description": "Play-of-color gemstones with unique patterns", + "description_ru": "Камни с игрой цвета и уникальными узорами", + "parent": "Gemstones", + "markup_percent": 8 + }, + { + "name": "Pearls", + "name_ru": "Жемчуг", + "description": "Organic gems formed within mollusks", + "description_ru": "Органические драгоценности, образующиеся в моллюсках", + "parent": "Gemstones", + "markup_percent": 5 + }, + { + "name": "Amethyst", + "name_ru": "Аметист", + "description": "Purple quartz variety, February birthstone", + "description_ru": "Фиолетовая разновидность кварца, камень рождения февраля", + "parent": "Gemstones", + "markup_percent": 5 + }, + { + "name": "Aquamarine", + "name_ru": "Аквамарин", + "description": "Sea-blue beryl, March birthstone", + "description_ru": "Морской голубой берилл, камень рождения марта", + "parent": "Gemstones", + "markup_percent": 6 + }, + { + "name": "Tanzanite", + "name_ru": "Танзанит", + "description": "Rare blue-violet zoisite from Tanzania", + "description_ru": "Редкий сине-фиолетовый цоизит из Танзании", + "parent": "Gemstones", + "markup_percent": 12 + }, + { + "name": "Tourmaline", + "name_ru": "Турмалин", + "description": "Multi-colored gemstones with electric properties", + "description_ru": "Многоцветные драгоценные камни с электрическими свойствами", + "parent": "Gemstones", + "markup_percent": 7 + } + ], + "products": [ + { + "name": "Round Brilliant Diamond 1.5ct D VVS1", + "name_ru": "Бриллиант круглой огранки 1.5 карата D VVS1", + "description": "Exceptional 1.5 carat round brilliant cut diamond with D color and VVS1 clarity. Triple excellent cut grade with strong blue fluorescence. GIA certified. Perfect for an engagement ring centerpiece.", + "description_ru": "Исключительный бриллиант круглой огранки 1.5 карата с цветом D и чистотой VVS1. Тройная превосходная огранка с сильной голубой флуоресценцией. Сертификат GIA. Идеален для центрального камня обручального кольца.", + "category": "Diamonds", + "brand": "Sparkle & Stone", + "partnumber": "DIA-RB-150-D-VVS1", + "price": 18500, + "purchase_price": 15000, + "quantity": 3 + }, + { + "name": "Princess Cut Diamond 2.0ct E VS2", + "name_ru": "Бриллиант огранки «Принцесса» 2.0 карата E VS2", + "description": "Stunning 2.0 carat princess cut diamond with E color and VS2 clarity. Modern cut with excellent symmetry. GIA certified with laser inscription.", + "description_ru": "Потрясающий бриллиант огранки «Принцесса» 2.0 карата с цветом E и чистотой VS2. Современная огранка с отличной симметрией. Сертификат GIA с лазерной гравировкой.", + "category": "Diamonds", + "brand": "Sparkle & Stone", + "partnumber": "DIA-PC-200-E-VS2", + "price": 24000, + "purchase_price": 19500, + "quantity": 2 + }, + { + "name": "Oval Diamond 1.2ct F IF", + "name_ru": "Бриллиант овальной огранки 1.2 карата F IF", + "description": "Magnificent 1.2 carat oval cut diamond with F color and Internally Flawless clarity. Exceptional fire and brilliance with elongated shape.", + "description_ru": "Великолепный бриллиант овальной огранки 1.2 карата с цветом F и безупречной внутренней чистотой. Исключительная игра света и блеск с удлинённой формой.", + "category": "Diamonds", + "brand": "Lumina Treasures", + "partnumber": "DIA-OV-120-F-IF", + "price": 28500, + "purchase_price": 23000, + "quantity": 1 + }, + { + "name": "Cushion Cut Diamond 3.0ct G VS1", + "name_ru": "Бриллиант огранки «Кушон» 3.0 карата G VS1", + "description": "Impressive 3.0 carat cushion cut diamond with G color and VS1 clarity. Vintage-inspired cut with modern brilliance.", + "description_ru": "Впечатляющий бриллиант огранки «Кушон» 3.0 карата с цветом G и чистотой VS1. Огранка в винтажном стиле с современным блеском.", + "category": "Diamonds", + "brand": "Sparkle & Stone", + "partnumber": "DIA-CU-300-G-VS1", + "price": 42000, + "purchase_price": 35000, + "quantity": 1 + }, + { + "name": "Emerald Cut Diamond 1.8ct D VVS2", + "name_ru": "Бриллиант изумрудной огранки 1.8 карата D VVS2", + "description": "Elegant 1.8 carat emerald cut diamond with D color and VVS2 clarity. Step-cut facets create a hall-of-mirrors effect.", + "description_ru": "Элегантный бриллиант изумрудной огранки 1.8 карата с цветом D и чистотой VVS2. Ступенчатые грани создают эффект зеркального зала.", + "category": "Diamonds", + "brand": "Lumina Treasures", + "partnumber": "DIA-EM-180-D-VVS2", + "price": 32000, + "purchase_price": 26000, + "quantity": 2 + }, + { + "name": "Fancy Yellow Diamond 2.5ct", + "name_ru": "Фантазийный жёлтый бриллиант 2.5 карата", + "description": "Magnificent 2.5 carat fancy intense yellow diamond. Radiant cut with excellent color distribution. GIA certified.", + "description_ru": "Великолепный фантазийный интенсивно-жёлтый бриллиант 2.5 карата. Огранка «Радиант» с отличным распределением цвета. Сертификат GIA.", + "category": "Diamonds", + "brand": "Lumina Treasures", + "partnumber": "DIA-FY-250", + "price": 65000, + "purchase_price": 52000, + "quantity": 1 + }, + { + "name": "Pink Diamond 0.5ct Fancy Light", + "name_ru": "Розовый бриллиант 0.5 карата Fancy Light", + "description": "Rare 0.5 carat pink diamond with fancy light pink color. Pear shape from Argyle mine. Investment piece.", + "description_ru": "Редкий розовый бриллиант 0.5 карата светло-розового цвета. Грушевидная форма из рудника Аргайл. Инвестиционный экземпляр.", + "category": "Diamonds", + "brand": "Lumina Treasures", + "partnumber": "DIA-PNK-050-FL", + "price": 125000, + "purchase_price": 100000, + "quantity": 1 + }, + { + "name": "Burmese Ruby 2.5ct Pigeon Blood", + "name_ru": "Бирманский рубин 2.5 карата «Голубиная кровь»", + "description": "Exceptional 2.5 carat Burmese ruby with coveted pigeon blood color. Unheated and untreated with GRS certificate. Extremely rare collector's gem.", + "description_ru": "Исключительный бирманский рубин 2.5 карата с желанным цветом «голубиной крови». Без нагрева и обработки, сертификат GRS. Чрезвычайно редкий коллекционный камень.", + "category": "Rubies", + "brand": "Crimson Vault", + "partnumber": "RUB-BUR-250-PB", + "price": 125000, + "purchase_price": 100000, + "quantity": 1 + }, + { + "name": "Mozambique Ruby 1.8ct Vivid Red", + "name_ru": "Мозамбикский рубин 1.8 карата насыщенно-красный", + "description": "Beautiful 1.8 carat Mozambique ruby with vivid red saturation. Minor heat treatment for enhanced clarity. Excellent value.", + "description_ru": "Прекрасный мозамбикский рубин 1.8 карата с насыщенной красной окраской. Незначительная термообработка для улучшения чистоты. Отличное соотношение цены и качества.", + "category": "Rubies", + "brand": "Crimson Vault", + "partnumber": "RUB-MOZ-180-VR", + "price": 8500, + "purchase_price": 6800, + "quantity": 4 + }, + { + "name": "Star Ruby 3.2ct Six-Ray", + "name_ru": "Звёздчатый рубин 3.2 карата с шестилучевой звездой", + "description": "Magnificent 3.2 carat star ruby displaying sharp six-ray asterism. Cabochon cut to showcase the star effect. From Sri Lanka.", + "description_ru": "Великолепный звёздчатый рубин 3.2 карата с чёткой шестилучевой звездой. Огранка кабошон для демонстрации эффекта звезды. Из Шри-Ланки.", + "category": "Rubies", + "brand": "Terra Rara", + "partnumber": "RUB-STAR-320-SR", + "price": 15000, + "purchase_price": 12000, + "quantity": 2 + }, + { + "name": "Kashmir Sapphire 3.0ct Cornflower Blue", + "name_ru": "Кашмирский сапфир 3.0 карата васильково-голубой", + "description": "Museum-quality 3.0 carat Kashmir sapphire with legendary cornflower blue color. Unheated with velvety luster. Investment grade.", + "description_ru": "Кашмирский сапфир музейного качества 3.0 карата с легендарным васильково-голубым цветом. Без нагрева, с бархатистым блеском. Инвестиционное качество.", + "category": "Sapphires", + "brand": "Azure Dreams", + "partnumber": "SAP-KAS-300-CB", + "price": 185000, + "purchase_price": 150000, + "quantity": 1 + }, + { + "name": "Ceylon Sapphire 2.2ct Royal Blue", + "name_ru": "Цейлонский сапфир 2.2 карата королевский синий", + "description": "Stunning 2.2 carat Ceylon sapphire with rich royal blue color. Excellent clarity with minor silk inclusions. Heat treated.", + "description_ru": "Потрясающий цейлонский сапфир 2.2 карата насыщенного королевского синего цвета. Отличная чистота с незначительными шёлковыми включениями. Термообработан.", + "category": "Sapphires", + "brand": "Azure Dreams", + "partnumber": "SAP-CEY-220-RB", + "price": 12500, + "purchase_price": 10000, + "quantity": 3 + }, + { + "name": "Padparadscha Sapphire 1.5ct", + "name_ru": "Сапфир падпараджа 1.5 карата", + "description": "Rare 1.5 carat padparadscha sapphire with pink-orange sunset color. Unheated Sri Lankan origin. Highly sought after by collectors.", + "description_ru": "Редкий сапфир падпараджа 1.5 карата с розово-оранжевым закатным цветом. Без нагрева, происхождение Шри-Ланка. Высоко ценится коллекционерами.", + "category": "Sapphires", + "brand": "Terra Rara", + "partnumber": "SAP-PAD-150", + "price": 45000, + "purchase_price": 36000, + "quantity": 1 + }, + { + "name": "Yellow Sapphire 4.0ct Golden", + "name_ru": "Жёлтый сапфир 4.0 карата золотистый", + "description": "Brilliant 4.0 carat yellow sapphire with intense golden color. From Sri Lanka with excellent clarity. Untreated.", + "description_ru": "Блестящий жёлтый сапфир 4.0 карата интенсивного золотистого цвета. Из Шри-Ланки с отличной чистотой. Без обработки.", + "category": "Sapphires", + "brand": "Azure Dreams", + "partnumber": "SAP-YEL-400-GD", + "price": 6500, + "purchase_price": 5200, + "quantity": 5 + }, + { + "name": "Pink Sapphire 1.8ct Hot Pink", + "name_ru": "Розовый сапфир 1.8 карата ярко-розовый", + "description": "Vibrant 1.8 carat pink sapphire with hot pink saturation. Madagascar origin with excellent transparency.", + "description_ru": "Яркий розовый сапфир 1.8 карата с насыщенным ярко-розовым цветом. Происхождение Мадагаскар с отличной прозрачностью.", + "category": "Sapphires", + "brand": "Crimson Vault", + "partnumber": "SAP-PNK-180-HP", + "price": 4200, + "purchase_price": 3400, + "quantity": 6 + }, + { + "name": "Colombian Emerald 2.8ct Muzo Green", + "name_ru": "Колумбийский изумруд 2.8 карата зелёный Музо", + "description": "Premium 2.8 carat Colombian emerald from the famous Muzo mines. Deep green color with characteristic jardín inclusions.", + "description_ru": "Премиальный колумбийский изумруд 2.8 карата из знаменитых шахт Музо. Глубокий зелёный цвет с характерными включениями «жардин».", + "category": "Emeralds", + "brand": "Evergreen Gems", + "partnumber": "EME-COL-280-MZ", + "price": 35000, + "purchase_price": 28000, + "quantity": 2 + }, + { + "name": "Zambian Emerald 3.5ct Vivid Green", + "name_ru": "Замбийский изумруд 3.5 карата насыщенно-зелёный", + "description": "Impressive 3.5 carat Zambian emerald with vivid bluish-green color. Higher clarity than Colombian stones. Minor oil treatment.", + "description_ru": "Впечатляющий замбийский изумруд 3.5 карата с насыщенным сине-зелёным цветом. Чистота выше, чем у колумбийских камней. Незначительная масляная обработка.", + "category": "Emeralds", + "brand": "Evergreen Gems", + "partnumber": "EME-ZAM-350-VG", + "price": 18500, + "purchase_price": 15000, + "quantity": 3 + }, + { + "name": "Brazilian Emerald 1.2ct Medium Green", + "name_ru": "Бразильский изумруд 1.2 карата средне-зелёный", + "description": "Beautiful 1.2 carat Brazilian emerald with medium green saturation. Good clarity with subtle inclusions. Value option.", + "description_ru": "Прекрасный бразильский изумруд 1.2 карата средней зелёной насыщенности. Хорошая чистота с незаметными включениями. Выгодный вариант.", + "category": "Emeralds", + "brand": "Evergreen Gems", + "partnumber": "EME-BRA-120-MG", + "price": 2800, + "purchase_price": 2200, + "quantity": 8 + }, + { + "name": "Australian Black Opal 5.2ct", + "name_ru": "Австралийский чёрный опал 5.2 карата", + "description": "Spectacular 5.2 carat Australian black opal from Lightning Ridge. Brilliant play-of-color with red, green, and blue flashes.", + "description_ru": "Потрясающий австралийский чёрный опал 5.2 карата из Лайтнинг Ридж. Блестящая игра цвета с красными, зелёными и синими вспышками.", + "category": "Opals", + "brand": "Terra Rara", + "partnumber": "OPL-BLK-520-LR", + "price": 28000, + "purchase_price": 22500, + "quantity": 1 + }, + { + "name": "Ethiopian Welo Opal 3.8ct", + "name_ru": "Эфиопский опал Вело 3.8 карата", + "description": "Stunning 3.8 carat Ethiopian Welo opal with hydrophane properties. Intense play-of-color with honeycomb pattern.", + "description_ru": "Потрясающий эфиопский опал Вело 3.8 карата с гидрофанными свойствами. Интенсивная игра цвета с сотовым рисунком.", + "category": "Opals", + "brand": "Terra Rara", + "partnumber": "OPL-ETH-380-WL", + "price": 3500, + "purchase_price": 2800, + "quantity": 5 + }, + { + "name": "Boulder Opal 8.5ct", + "name_ru": "Боулдер-опал 8.5 карата", + "description": "Natural 8.5 carat boulder opal with ironstone matrix. Unique patterns with veins of brilliant color.", + "description_ru": "Природный боулдер-опал 8.5 карата с железистой матрицей. Уникальные узоры с прожилками ярких цветов.", + "category": "Opals", + "brand": "Terra Rara", + "partnumber": "OPL-BLD-850", + "price": 4800, + "purchase_price": 3800, + "quantity": 3 + }, + { + "name": "Fire Opal 2.1ct Mexican Orange", + "name_ru": "Огненный опал 2.1 карата мексиканский оранжевый", + "description": "Brilliant 2.1 carat Mexican fire opal with intense orange color. Transparent with subtle play-of-color.", + "description_ru": "Блестящий мексиканский огненный опал 2.1 карата интенсивного оранжевого цвета. Прозрачный с тонкой игрой цвета.", + "category": "Opals", + "brand": "Lumina Treasures", + "partnumber": "OPL-FIRE-210-MX", + "price": 1200, + "purchase_price": 950, + "quantity": 7 + }, + { + "name": "South Sea Pearl 14mm Golden", + "name_ru": "Жемчуг Южных морей 14мм золотистый", + "description": "Luxurious 14mm South Sea pearl with deep golden color. AAA grade with excellent luster and minimal blemishes.", + "description_ru": "Роскошный жемчуг Южных морей 14мм глубокого золотистого цвета. Класс AAA с отличным блеском и минимальными дефектами.", + "category": "Pearls", + "brand": "Oceanic Pearls", + "partnumber": "PRL-SSG-14MM", + "price": 8500, + "purchase_price": 6800, + "quantity": 4 + }, + { + "name": "Tahitian Pearl 12mm Peacock", + "name_ru": "Таитянский жемчуг 12мм павлиний", + "description": "Exotic 12mm Tahitian pearl with peacock overtones. Natural dark body color with green and purple iridescence.", + "description_ru": "Экзотический таитянский жемчуг 12мм с павлиньими переливами. Природный тёмный цвет тела с зелёной и фиолетовой иризацией.", + "category": "Pearls", + "brand": "Oceanic Pearls", + "partnumber": "PRL-TAH-12MM-PC", + "price": 3200, + "purchase_price": 2500, + "quantity": 6 + }, + { + "name": "Akoya Pearl Strand 7mm", + "name_ru": "Нить жемчуга Акойя 7мм", + "description": "Classic 18-inch strand of 7mm Akoya pearls. Perfect round shape with bright white body and rose overtone.", + "description_ru": "Классическая нить жемчуга Акойя 7мм длиной 45 см. Идеально круглая форма с ярко-белым телом и розовым перламутром.", + "category": "Pearls", + "brand": "Oceanic Pearls", + "partnumber": "PRL-AKO-7MM-STR", + "price": 4500, + "purchase_price": 3600, + "quantity": 3 + }, + { + "name": "Freshwater Pearl Set", + "name_ru": "Набор пресноводного жемчуга", + "description": "Elegant set of 10 matched freshwater pearls, 9-10mm. Various pastel colors including white, pink, and lavender.", + "description_ru": "Элегантный набор из 10 подобранных пресноводных жемчужин 9-10мм. Различные пастельные цвета: белый, розовый и лавандовый.", + "category": "Pearls", + "brand": "Oceanic Pearls", + "partnumber": "PRL-FW-SET-10", + "price": 850, + "purchase_price": 680, + "quantity": 10 + }, + { + "name": "Siberian Amethyst 8.5ct Deep Purple", + "name_ru": "Сибирский аметист 8.5 карата тёмно-фиолетовый", + "description": "Premium 8.5 carat Siberian amethyst with legendary deep purple color and red flashes. Cushion cut.", + "description_ru": "Премиальный сибирский аметист 8.5 карата с легендарным тёмно-фиолетовым цветом и красными вспышками. Огранка «Кушон».", + "category": "Amethyst", + "brand": "Crystal Kingdom", + "partnumber": "AME-SIB-850-DP", + "price": 1200, + "purchase_price": 950, + "quantity": 5 + }, + { + "name": "Uruguayan Amethyst 12.3ct", + "name_ru": "Уругвайский аметист 12.3 карата", + "description": "Magnificent 12.3 carat Uruguayan amethyst with excellent saturation. Oval cut with exceptional clarity.", + "description_ru": "Великолепный уругвайский аметист 12.3 карата с отличной насыщенностью. Овальная огранка с исключительной чистотой.", + "category": "Amethyst", + "brand": "Crystal Kingdom", + "partnumber": "AME-URU-1230", + "price": 650, + "purchase_price": 520, + "quantity": 8 + }, + { + "name": "Ametrine 6.8ct Bi-Color", + "name_ru": "Аметрин 6.8 карата двухцветный", + "description": "Unique 6.8 carat ametrine showing both amethyst purple and citrine gold colors. Emerald cut from Bolivia.", + "description_ru": "Уникальный аметрин 6.8 карата, демонстрирующий фиолетовый цвет аметиста и золотистый цитрина. Изумрудная огранка, Боливия.", + "category": "Amethyst", + "brand": "Crystal Kingdom", + "partnumber": "AME-TRI-680-BC", + "price": 450, + "purchase_price": 360, + "quantity": 6 + }, + { + "name": "Santa Maria Aquamarine 4.2ct", + "name_ru": "Аквамарин Санта-Мария 4.2 карата", + "description": "Exceptional 4.2 carat Santa Maria aquamarine with intense blue color. The finest aquamarine variety from Brazil.", + "description_ru": "Исключительный аквамарин Санта-Мария 4.2 карата с интенсивным голубым цветом. Лучшая разновидность аквамарина из Бразилии.", + "category": "Aquamarine", + "brand": "Azure Dreams", + "partnumber": "AQU-SM-420", + "price": 5500, + "purchase_price": 4400, + "quantity": 2 + }, + { + "name": "Madagascar Aquamarine 7.5ct", + "name_ru": "Мадагаскарский аквамарин 7.5 карата", + "description": "Beautiful 7.5 carat Madagascar aquamarine with light blue color. Excellent clarity with octagon cut.", + "description_ru": "Прекрасный мадагаскарский аквамарин 7.5 карата светло-голубого цвета. Отличная чистота с восьмиугольной огранкой.", + "category": "Aquamarine", + "brand": "Azure Dreams", + "partnumber": "AQU-MAD-750", + "price": 2200, + "purchase_price": 1750, + "quantity": 4 + }, + { + "name": "Pakistani Aquamarine 15.2ct", + "name_ru": "Пакистанский аквамарин 15.2 карата", + "description": "Spectacular 15.2 carat aquamarine from Pakistan's Shigar Valley. Medium blue with exceptional size and clarity.", + "description_ru": "Впечатляющий аквамарин 15.2 карата из пакистанской долины Шигар. Средне-голубой с исключительным размером и чистотой.", + "category": "Aquamarine", + "brand": "Terra Rara", + "partnumber": "AQU-PAK-1520", + "price": 4800, + "purchase_price": 3850, + "quantity": 2 + }, + { + "name": "AAA Tanzanite 5.8ct Vivid Blue", + "name_ru": "Танзанит ААА 5.8 карата насыщенно-синий", + "description": "Top-quality 5.8 carat tanzanite with vivid blue-violet color. Trillion cut with exceptional saturation.", + "description_ru": "Танзанит высшего качества 5.8 карата с насыщенным сине-фиолетовым цветом. Огранка «Триллион» с исключительной насыщенностью.", + "category": "Tanzanite", + "brand": "Terra Rara", + "partnumber": "TAN-AAA-580-VB", + "price": 8500, + "purchase_price": 6800, + "quantity": 2 + }, + { + "name": "Tanzanite 3.2ct Blue-Violet", + "name_ru": "Танзанит 3.2 карата сине-фиолетовый", + "description": "Beautiful 3.2 carat tanzanite with balanced blue-violet color shift. Oval cut with good clarity.", + "description_ru": "Прекрасный танзанит 3.2 карата со сбалансированным сине-фиолетовым переходом цвета. Овальная огранка с хорошей чистотой.", + "category": "Tanzanite", + "brand": "Terra Rara", + "partnumber": "TAN-320-BV", + "price": 3200, + "purchase_price": 2560, + "quantity": 4 + }, + { + "name": "Tanzanite Pair 2.0ct Each", + "name_ru": "Пара танзанитов по 2.0 карата", + "description": "Matched pair of 2.0 carat tanzanites, perfect for earrings. Identical color and cut with excellent symmetry.", + "description_ru": "Подобранная пара танзанитов по 2.0 карата, идеальна для серёг. Идентичный цвет и огранка с отличной симметрией.", + "category": "Tanzanite", + "brand": "Terra Rara", + "partnumber": "TAN-PAIR-200", + "price": 5800, + "purchase_price": 4650, + "quantity": 3 + }, + { + "name": "Paraiba Tourmaline 1.2ct Neon Blue", + "name_ru": "Параиба турмалин 1.2 карата неоново-голубой", + "description": "Extremely rare 1.2 carat Paraiba tourmaline with electric neon blue color. Brazilian origin with copper inclusions.", + "description_ru": "Чрезвычайно редкий турмалин параиба 1.2 карата с электрическим неоново-голубым цветом. Бразильское происхождение с медными включениями.", + "category": "Tourmaline", + "brand": "Terra Rara", + "partnumber": "TOU-PAR-120-NB", + "price": 85000, + "purchase_price": 68000, + "quantity": 1 + }, + { + "name": "Watermelon Tourmaline 8.5ct", + "name_ru": "Арбузный турмалин 8.5 карата", + "description": "Stunning 8.5 carat watermelon tourmaline with pink center and green rim. Slice cut to display bi-color.", + "description_ru": "Потрясающий арбузный турмалин 8.5 карата с розовым центром и зелёным ободком. Огранка «слайс» для демонстрации двуцветности.", + "category": "Tourmaline", + "brand": "Crystal Kingdom", + "partnumber": "TOU-WM-850", + "price": 1800, + "purchase_price": 1450, + "quantity": 4 + }, + { + "name": "Rubellite Tourmaline 4.3ct", + "name_ru": "Рубеллит турмалин 4.3 карата", + "description": "Vivid 4.3 carat rubellite tourmaline with raspberry red color. Cushion cut with excellent saturation.", + "description_ru": "Яркий рубеллит турмалин 4.3 карата малиново-красного цвета. Огранка «Кушон» с отличной насыщенностью.", + "category": "Tourmaline", + "brand": "Crimson Vault", + "partnumber": "TOU-RUB-430", + "price": 3500, + "purchase_price": 2800, + "quantity": 3 + }, + { + "name": "Chrome Tourmaline 2.8ct", + "name_ru": "Хромовый турмалин 2.8 карата", + "description": "Rich 2.8 carat chrome tourmaline with intense green color. From East Africa with excellent transparency.", + "description_ru": "Насыщенный хромовый турмалин 2.8 карата интенсивного зелёного цвета. Из Восточной Африки с отличной прозрачностью.", + "category": "Tourmaline", + "brand": "Evergreen Gems", + "partnumber": "TOU-CHR-280", + "price": 2200, + "purchase_price": 1750, + "quantity": 5 + }, + { + "name": "Indicolite Tourmaline 3.6ct", + "name_ru": "Индиголит турмалин 3.6 карата", + "description": "Beautiful 3.6 carat indicolite tourmaline with teal blue color. Oval cut from Afghanistan.", + "description_ru": "Прекрасный индиголит турмалин 3.6 карата сине-зелёного цвета. Овальная огранка, Афганистан.", + "category": "Tourmaline", + "brand": "Azure Dreams", + "partnumber": "TOU-IND-360", + "price": 2800, + "purchase_price": 2250, + "quantity": 4 + } + ], + "vendor": { + "name": "Schon Demo", + "markup_percent": 5 + }, + "demo_users": { + "password": "Schon!Demo888", + "email_domain": "demo.schon.store", + "first_names": [ + "Emma", "Liam", "Olivia", "Noah", "Ava", "Ethan", "Sophia", "Mason", + "Isabella", "William", "Mia", "James", "Charlotte", "Benjamin", "Amelia", + "Lucas", "Harper", "Henry", "Evelyn", "Alexander", "Abigail", "Michael", + "Emily", "Daniel", "Elizabeth", "Jacob", "Sofia", "Logan", "Avery", + "Jackson", "Ella", "Sebastian", "Scarlett", "Aiden", "Grace", "Matthew", + "Chloe", "David", "Victoria", "Joseph", "Riley", "Carter", "Aria", + "Owen", "Lily", "Wyatt", "Aurora", "John", "Zoey", "Luke", "Nora" + ], + "last_names": [ + "Smith", "Johnson", "Williams", "Brown", "Jones", "Garcia", "Miller", + "Davis", "Rodriguez", "Martinez", "Hernandez", "Lopez", "Gonzalez", + "Wilson", "Anderson", "Thomas", "Taylor", "Moore", "Jackson", "Martin", + "Lee", "Perez", "Thompson", "White", "Harris", "Sanchez", "Clark", + "Ramirez", "Lewis", "Robinson", "Walker", "Young", "Allen", "King", + "Wright", "Scott", "Torres", "Nguyen", "Hill", "Flores", "Green", + "Adams", "Nelson", "Baker", "Hall", "Rivera", "Campbell", "Mitchell", + "Carter", "Roberts" + ], + "cities": [ + {"city": "New York", "region": "NY", "postal_code": "10001", "country": "USA"}, + {"city": "Los Angeles", "region": "CA", "postal_code": "90001", "country": "USA"}, + {"city": "Chicago", "region": "IL", "postal_code": "60601", "country": "USA"}, + {"city": "Houston", "region": "TX", "postal_code": "77001", "country": "USA"}, + {"city": "Phoenix", "region": "AZ", "postal_code": "85001", "country": "USA"}, + {"city": "Philadelphia", "region": "PA", "postal_code": "19101", "country": "USA"}, + {"city": "San Antonio", "region": "TX", "postal_code": "78201", "country": "USA"}, + {"city": "San Diego", "region": "CA", "postal_code": "92101", "country": "USA"}, + {"city": "Dallas", "region": "TX", "postal_code": "75201", "country": "USA"}, + {"city": "San Jose", "region": "CA", "postal_code": "95101", "country": "USA"}, + {"city": "Austin", "region": "TX", "postal_code": "78701", "country": "USA"}, + {"city": "Jacksonville", "region": "FL", "postal_code": "32099", "country": "USA"}, + {"city": "Fort Worth", "region": "TX", "postal_code": "76101", "country": "USA"}, + {"city": "Columbus", "region": "OH", "postal_code": "43085", "country": "USA"}, + {"city": "Charlotte", "region": "NC", "postal_code": "28201", "country": "USA"}, + {"city": "London", "region": "Greater London", "postal_code": "SW1A 1AA", "country": "UK"}, + {"city": "Manchester", "region": "Greater Manchester", "postal_code": "M1 1AD", "country": "UK"}, + {"city": "Birmingham", "region": "West Midlands", "postal_code": "B1 1AA", "country": "UK"}, + {"city": "Paris", "region": "Île-de-France", "postal_code": "75001", "country": "France"}, + {"city": "Berlin", "region": "Berlin", "postal_code": "10115", "country": "Germany"}, + {"city": "Munich", "region": "Bavaria", "postal_code": "80331", "country": "Germany"}, + {"city": "Toronto", "region": "Ontario", "postal_code": "M5H 2N2", "country": "Canada"}, + {"city": "Vancouver", "region": "British Columbia", "postal_code": "V6C 1E1", "country": "Canada"}, + {"city": "Sydney", "region": "NSW", "postal_code": "2000", "country": "Australia"}, + {"city": "Melbourne", "region": "VIC", "postal_code": "3000", "country": "Australia"} + ], + "streets": [ + "Main Street", "Oak Avenue", "Maple Drive", "Park Boulevard", "Cedar Lane", + "Elm Street", "Washington Avenue", "Lake Street", "Hill Road", "Forest Drive", + "River Road", "Sunset Boulevard", "Highland Avenue", "Valley View Drive", + "Mountain Road" + ] + } +} diff --git a/engine/core/fixtures/demo_products_images/AME-SIB-850-DP.jpg b/engine/core/fixtures/demo_products_images/AME-SIB-850-DP.jpg new file mode 100644 index 00000000..9e30bfee Binary files /dev/null and b/engine/core/fixtures/demo_products_images/AME-SIB-850-DP.jpg differ diff --git a/engine/core/fixtures/demo_products_images/AME-TRI-680-BC.jpg b/engine/core/fixtures/demo_products_images/AME-TRI-680-BC.jpg new file mode 100644 index 00000000..26ecc0d4 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/AME-TRI-680-BC.jpg differ diff --git a/engine/core/fixtures/demo_products_images/AME-URU-1230.jpg b/engine/core/fixtures/demo_products_images/AME-URU-1230.jpg new file mode 100644 index 00000000..cd212d34 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/AME-URU-1230.jpg differ diff --git a/engine/core/fixtures/demo_products_images/AQU-SM-420.jpg b/engine/core/fixtures/demo_products_images/AQU-SM-420.jpg new file mode 100644 index 00000000..977e6842 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/AQU-SM-420.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-CU-300-G-VS1.jpg b/engine/core/fixtures/demo_products_images/DIA-CU-300-G-VS1.jpg new file mode 100644 index 00000000..15866368 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-CU-300-G-VS1.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-EM-180-D-VVS2.jpg b/engine/core/fixtures/demo_products_images/DIA-EM-180-D-VVS2.jpg new file mode 100644 index 00000000..11e6ce7f Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-EM-180-D-VVS2.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-FY-250.jpg b/engine/core/fixtures/demo_products_images/DIA-FY-250.jpg new file mode 100644 index 00000000..13e7dab0 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-FY-250.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-OV-120-F-IF.jpg b/engine/core/fixtures/demo_products_images/DIA-OV-120-F-IF.jpg new file mode 100644 index 00000000..94ed9ca4 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-OV-120-F-IF.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-PC-200-E-VS2.jpg b/engine/core/fixtures/demo_products_images/DIA-PC-200-E-VS2.jpg new file mode 100644 index 00000000..50e96ed7 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-PC-200-E-VS2.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-PNK-050-FL.jpg b/engine/core/fixtures/demo_products_images/DIA-PNK-050-FL.jpg new file mode 100644 index 00000000..2f3acc4f Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-PNK-050-FL.jpg differ diff --git a/engine/core/fixtures/demo_products_images/DIA-RB-150-D-VVS1.jpg b/engine/core/fixtures/demo_products_images/DIA-RB-150-D-VVS1.jpg new file mode 100644 index 00000000..17ce695b Binary files /dev/null and b/engine/core/fixtures/demo_products_images/DIA-RB-150-D-VVS1.jpg differ diff --git a/engine/core/fixtures/demo_products_images/EME-BRA-120-MG.jpg b/engine/core/fixtures/demo_products_images/EME-BRA-120-MG.jpg new file mode 100644 index 00000000..19d5cd64 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/EME-BRA-120-MG.jpg differ diff --git a/engine/core/fixtures/demo_products_images/EME-COL-280-MZ.jpg b/engine/core/fixtures/demo_products_images/EME-COL-280-MZ.jpg new file mode 100644 index 00000000..b283bb2d Binary files /dev/null and b/engine/core/fixtures/demo_products_images/EME-COL-280-MZ.jpg differ diff --git a/engine/core/fixtures/demo_products_images/EME-ZAM-350-VG.jpg b/engine/core/fixtures/demo_products_images/EME-ZAM-350-VG.jpg new file mode 100644 index 00000000..fdec0ae0 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/EME-ZAM-350-VG.jpg differ diff --git a/engine/core/fixtures/demo_products_images/OPL-BLD-850.jpg b/engine/core/fixtures/demo_products_images/OPL-BLD-850.jpg new file mode 100644 index 00000000..b250246d Binary files /dev/null and b/engine/core/fixtures/demo_products_images/OPL-BLD-850.jpg differ diff --git a/engine/core/fixtures/demo_products_images/OPL-BLK-520-LR.jpg b/engine/core/fixtures/demo_products_images/OPL-BLK-520-LR.jpg new file mode 100644 index 00000000..1d31350f Binary files /dev/null and b/engine/core/fixtures/demo_products_images/OPL-BLK-520-LR.jpg differ diff --git a/engine/core/fixtures/demo_products_images/OPL-ETH-380-WL.jpg b/engine/core/fixtures/demo_products_images/OPL-ETH-380-WL.jpg new file mode 100644 index 00000000..66812b63 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/OPL-ETH-380-WL.jpg differ diff --git a/engine/core/fixtures/demo_products_images/OPL-FIRE-210-MX.jpg b/engine/core/fixtures/demo_products_images/OPL-FIRE-210-MX.jpg new file mode 100644 index 00000000..586c3d40 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/OPL-FIRE-210-MX.jpg differ diff --git a/engine/core/fixtures/demo_products_images/PRL-AKO-7MM-STR.jpg b/engine/core/fixtures/demo_products_images/PRL-AKO-7MM-STR.jpg new file mode 100644 index 00000000..5e5bf6cf Binary files /dev/null and b/engine/core/fixtures/demo_products_images/PRL-AKO-7MM-STR.jpg differ diff --git a/engine/core/fixtures/demo_products_images/PRL-FW-SET-10.jpg b/engine/core/fixtures/demo_products_images/PRL-FW-SET-10.jpg new file mode 100644 index 00000000..7e7ed221 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/PRL-FW-SET-10.jpg differ diff --git a/engine/core/fixtures/demo_products_images/PRL-SSG-14MM.jpg b/engine/core/fixtures/demo_products_images/PRL-SSG-14MM.jpg new file mode 100644 index 00000000..a00d44a6 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/PRL-SSG-14MM.jpg differ diff --git a/engine/core/fixtures/demo_products_images/RUB-BUR-250-PB.jpg b/engine/core/fixtures/demo_products_images/RUB-BUR-250-PB.jpg new file mode 100644 index 00000000..0a4df056 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/RUB-BUR-250-PB.jpg differ diff --git a/engine/core/fixtures/demo_products_images/RUB-MOZ-180-VR.jpg b/engine/core/fixtures/demo_products_images/RUB-MOZ-180-VR.jpg new file mode 100644 index 00000000..ada20bd0 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/RUB-MOZ-180-VR.jpg differ diff --git a/engine/core/fixtures/demo_products_images/RUB-STAR-320-SR.jpg b/engine/core/fixtures/demo_products_images/RUB-STAR-320-SR.jpg new file mode 100644 index 00000000..77236d39 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/RUB-STAR-320-SR.jpg differ diff --git a/engine/core/fixtures/demo_products_images/SAP-CEY-220-RB.jpg b/engine/core/fixtures/demo_products_images/SAP-CEY-220-RB.jpg new file mode 100644 index 00000000..7c7b15cc Binary files /dev/null and b/engine/core/fixtures/demo_products_images/SAP-CEY-220-RB.jpg differ diff --git a/engine/core/fixtures/demo_products_images/SAP-KAS-300-CB.jpg b/engine/core/fixtures/demo_products_images/SAP-KAS-300-CB.jpg new file mode 100644 index 00000000..1718529f Binary files /dev/null and b/engine/core/fixtures/demo_products_images/SAP-KAS-300-CB.jpg differ diff --git a/engine/core/fixtures/demo_products_images/SAP-PNK-180-HP.jpg b/engine/core/fixtures/demo_products_images/SAP-PNK-180-HP.jpg new file mode 100644 index 00000000..49fc28d9 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/SAP-PNK-180-HP.jpg differ diff --git a/engine/core/fixtures/demo_products_images/SAP-YEL-400-GD.jpg b/engine/core/fixtures/demo_products_images/SAP-YEL-400-GD.jpg new file mode 100644 index 00000000..63608cdc Binary files /dev/null and b/engine/core/fixtures/demo_products_images/SAP-YEL-400-GD.jpg differ diff --git a/engine/core/fixtures/demo_products_images/TAN-AAA-580-VB.jpg b/engine/core/fixtures/demo_products_images/TAN-AAA-580-VB.jpg new file mode 100644 index 00000000..99f6541d Binary files /dev/null and b/engine/core/fixtures/demo_products_images/TAN-AAA-580-VB.jpg differ diff --git a/engine/core/fixtures/demo_products_images/TAN-PAIR-200.jpg b/engine/core/fixtures/demo_products_images/TAN-PAIR-200.jpg new file mode 100644 index 00000000..0c539b60 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/TAN-PAIR-200.jpg differ diff --git a/engine/core/fixtures/demo_products_images/TOU-IND-360.jpg b/engine/core/fixtures/demo_products_images/TOU-IND-360.jpg new file mode 100644 index 00000000..a201a5bd Binary files /dev/null and b/engine/core/fixtures/demo_products_images/TOU-IND-360.jpg differ diff --git a/engine/core/fixtures/demo_products_images/TOU-PAR-120-NB.jpg b/engine/core/fixtures/demo_products_images/TOU-PAR-120-NB.jpg new file mode 100644 index 00000000..31bf53ad Binary files /dev/null and b/engine/core/fixtures/demo_products_images/TOU-PAR-120-NB.jpg differ diff --git a/engine/core/fixtures/demo_products_images/TOU-WM-850.jpg b/engine/core/fixtures/demo_products_images/TOU-WM-850.jpg new file mode 100644 index 00000000..c38fad71 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/TOU-WM-850.jpg differ diff --git a/engine/core/fixtures/demo_products_images/placeholder.png b/engine/core/fixtures/demo_products_images/placeholder.png new file mode 100644 index 00000000..448cd452 Binary files /dev/null and b/engine/core/fixtures/demo_products_images/placeholder.png differ diff --git a/engine/core/graphene/mutations.py b/engine/core/graphene/mutations.py index 7c701cf2..eca0f2c3 100644 --- a/engine/core/graphene/mutations.py +++ b/engine/core/graphene/mutations.py @@ -25,7 +25,7 @@ from engine.core.utils.emailing import contact_us_email from engine.core.utils.messages import permission_denied_message from engine.core.utils.nominatim import fetch_address_suggestions from engine.payments.graphene.object_types import TransactionType -from evibes.utils.renderers import camelize +from schon.utils.renderers import camelize logger = logging.getLogger(__name__) @@ -335,9 +335,9 @@ class BulkWishlistAction(Mutation): # noinspection PyUnreachableCode match action: case "add": - wishlist = wishlist.bulk_add_products(products) # ty: ignore[possibly-missing-attribute] + wishlist = wishlist.bulk_add_products(products) case "remove": - wishlist = wishlist.bulk_remove_products(products) # ty: ignore[possibly-missing-attribute] + wishlist = wishlist.bulk_remove_products(products) case _: raise BadRequest(_("action must be either add or remove")) @@ -723,7 +723,7 @@ class Search(Mutation): return Search(results=None) # ty: ignore[unknown-argument] # noinspection PyTypeChecker - return Search( # ty: ignore[unknown-argument] + return Search( results=SearchResultsType( # ty: ignore[unknown-argument] products=data["products"], # ty: ignore[unknown-argument] categories=data["categories"], # ty: ignore[unknown-argument] diff --git a/engine/core/graphene/object_types.py b/engine/core/graphene/object_types.py index 9795b76e..44ffffc3 100644 --- a/engine/core/graphene/object_types.py +++ b/engine/core/graphene/object_types.py @@ -57,7 +57,7 @@ from engine.core.utils.seo_builders import ( website_schema, ) from engine.payments.graphene.object_types import TransactionType -from evibes.utils.renderers import camelize +from schon.utils.renderers import camelize logger = logging.getLogger(__name__) diff --git a/engine/core/locale/ar_AR/LC_MESSAGES/django.mo b/engine/core/locale/ar_AR/LC_MESSAGES/django.mo index a52eb0c9..b0e1f277 100644 Binary files a/engine/core/locale/ar_AR/LC_MESSAGES/django.mo and b/engine/core/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/ar_AR/LC_MESSAGES/django.po b/engine/core/locale/ar_AR/LC_MESSAGES/django.po index f1d46689..1335c1c0 100644 --- a/engine/core/locale/ar_AR/LC_MESSAGES/django.po +++ b/engine/core/locale/ar_AR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "نشط" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "إذا تم تعيينه على خطأ، لا يمكن للمستخدمين رؤية هذا الكائن دون الحاجة إلى إذن" @@ -73,8 +74,8 @@ msgstr "الطوابع الزمنية" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "تنشيط المحدد _PH_0__%(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "تنشيط %(verbose_name_plural)s المحدد" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -82,21 +83,21 @@ msgstr "تم تفعيل العناصر المختارة!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "إلغاء التنشيط المحدد _PH_0_%(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "إلغاء تنشيط %(verbose_name_plural)s المحدد" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "تم إلغاء تنشيط العناصر المحددة!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "قيمة السمة" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "قيم السمات" @@ -116,12 +117,12 @@ msgstr "المخزون" msgid "stocks" msgstr "الأسهم" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "طلب المنتج" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "اطلب المنتجات" @@ -129,7 +130,31 @@ msgstr "اطلب المنتجات" msgid "children" msgstr "الأطفال" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "يحتوي على صور" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "تصدير %(verbose_name_plural)s المحدد إلى موجزات الأسواق" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "تم تحديد %(verbose_name_plural)s للتصدير." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "حظر %(verbose_name_plural)s المحدد من موجزات الأسواق" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "تم حظر تصدير %(verbose_name_plural)s المختار." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "التكوين" @@ -153,7 +178,8 @@ msgstr "تم التسليم" msgid "canceled" msgstr "تم الإلغاء" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "فشل" @@ -191,9 +217,9 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"مخطط OpenApi3 لواجهة برمجة التطبيقات هذه. يمكن تحديد التنسيق عبر التفاوض على " -"المحتوى. يمكن تحديد اللغة باستخدام معلمة قبول اللغة ومعلمة الاستعلام على حد " -"سواء." +"مخطط OpenApi3 لواجهة برمجة التطبيقات هذه. يمكن تحديد التنسيق عبر التفاوض على" +" المحتوى. يمكن تحديد اللغة باستخدام معلمة قبول اللغة ومعلمة الاستعلام على حد" +" سواء." #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 msgid "cache I/O" @@ -205,8 +231,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "تطبيق مفتاح فقط لقراءة البيانات المسموح بها من ذاكرة التخزين المؤقت.\n" -"تطبيق مفتاح وبيانات ومهلة مع المصادقة لكتابة البيانات إلى ذاكرة التخزين " -"المؤقت." +"تطبيق مفتاح وبيانات ومهلة مع المصادقة لكتابة البيانات إلى ذاكرة التخزين المؤقت." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -269,7 +294,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "إعادة كتابة مجموعة سمات موجودة تحفظ غير القابلة للتعديل" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "إعادة كتابة بعض حقول مجموعة سمات موجودة تحفظ غير القابلة للتعديل" #: engine/core/docs/drf/viewsets.py:118 @@ -317,7 +343,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "إعادة كتابة قيمة سمة موجودة تحفظ غير القابلة للتعديل" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "إعادة كتابة بعض حقول قيمة سمة موجودة حفظ غير قابل للتعديل" #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 @@ -370,8 +397,8 @@ msgstr "بالنسبة للمستخدمين من غير الموظفين، يت #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "البحث في سلسلة فرعية غير حساسة لحالة الأحرف عبر human_readable_id و " "order_products.product.name و order_products.product.partnumber" @@ -407,9 +434,9 @@ msgstr "تصفية حسب حالة الطلب (مطابقة سلسلة فرعي #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "الترتيب حسب واحد من: uuid، معرف_بشري_مقروء، بريد_إلكتروني_مستخدم، مستخدم، " "حالة، إنشاء، تعديل، وقت_الشراء، عشوائي. البادئة بحرف \"-\" للترتيب التنازلي " @@ -491,7 +518,8 @@ msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"يضيف قائمة من المنتجات إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." +"يضيف قائمة من المنتجات إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" " +"المتوفرة." #: engine/core/docs/drf/viewsets.py:472 msgid "remove product from order" @@ -501,8 +529,7 @@ msgstr "إزالة منتج من الطلب" msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"يزيل منتجًا من أحد الطلبات باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." +msgstr "يزيل منتجًا من أحد الطلبات باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." #: engine/core/docs/drf/viewsets.py:483 msgid "remove product from order, quantities will not count" @@ -596,32 +623,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "تصفية حسب زوج واحد أو أكثر من أسماء/قيم السمات. \n" "- **صيغة**: `attr_name=الطريقة-القيمة[ ؛ attr2=الطريقة2-القيمة2]...`\n" -"- **الأساليب** (افتراضيًا إلى \"يحتوي على\" إذا تم حذفها): \"بالضبط\"، " -"\"بالضبط\"، \"بالضبط\"، \"يحتوي\"، \"يحتوي\"، \"لاغية\"، \"يبدأ ب\"، \"يبدأ " -"ب\"، \"يبدأ ب\"، \"ينتهي ب\"، \"ينتهي ب\"، \"regex\"، \"iregex\"، \"lt\"، " -"\"lte\"، \"gt\"، \"gte\"، \"in\n" -"- **كتابة القيمة**: تتم تجربة JSON أولًا (حتى تتمكن من تمرير القوائم/" -"المجادلات)، \"صحيح\"/\"خطأ\" للمنطقيين والأعداد الصحيحة والعوامات؛ وإلا يتم " -"التعامل معها كسلسلة. \n" -"- **القاعدة 64**: البادئة ب \"b64-\" لتشفير القيمة الخام بأمان لقاعدة 64- " -"لتشفير القيمة الخام. \n" +"- **الأساليب** (افتراضيًا إلى \"يحتوي على\" إذا تم حذفها): \"بالضبط\"، \"بالضبط\"، \"بالضبط\"، \"يحتوي\"، \"يحتوي\"، \"لاغية\"، \"يبدأ ب\"، \"يبدأ ب\"، \"يبدأ ب\"، \"ينتهي ب\"، \"ينتهي ب\"، \"regex\"، \"iregex\"، \"lt\"، \"lte\"، \"gt\"، \"gte\"، \"in\n" +"- **كتابة القيمة**: تتم تجربة JSON أولًا (حتى تتمكن من تمرير القوائم/المجادلات)، \"صحيح\"/\"خطأ\" للمنطقيين والأعداد الصحيحة والعوامات؛ وإلا يتم التعامل معها كسلسلة. \n" +"- **القاعدة 64**: البادئة ب \"b64-\" لتشفير القيمة الخام بأمان لقاعدة 64- لتشفير القيمة الخام. \n" "أمثلة: \n" -"'color=exact-red'، 'size=gt-10'، 'features=in-[\"wifi\"،\"bluetooth\"]، " -"'fatures=in-[\"wifi\",\"bluetooth\"],\n" +"'color=exact-red'، 'size=gt-10'، 'features=in-[\"wifi\"،\"bluetooth\"]، 'fatures=in-[\"wifi\",\"bluetooth\"],\n" "\"b64-description=icontains-aGVhdC1jb2xk" #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 @@ -634,8 +649,7 @@ msgstr "(بالضبط) UUID المنتج" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" "قائمة مفصولة بفواصل من الحقول للفرز حسب. البادئة بـ \"-\" للفرز التنازلي. \n" @@ -1175,8 +1189,8 @@ msgstr "شراء طلبية" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "الرجاء إرسال السمات كسلسلة منسقة مثل attr1=قيمة1، attr2=قيمة2" #: engine/core/graphene/mutations.py:580 @@ -1196,9 +1210,9 @@ msgstr "طلب المنتج {order_product_uuid} غير موجود!" msgid "original address string provided by the user" msgstr "سلسلة العنوان الأصلي المقدمة من المستخدم" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1214,8 +1228,8 @@ msgstr "ElasticSearch - يعمل مثل السحر" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "السمات" @@ -1251,7 +1265,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "ما هي السمات والقيم التي يمكن استخدامها لتصفية هذه الفئة." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "الحد الأدنى والحد الأقصى لأسعار المنتجات في هذه الفئة، إذا كانت متوفرة." @@ -1289,7 +1304,7 @@ msgid "represents feedback from a user." msgstr "يمثل ملاحظات من المستخدم." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "الإشعارات" @@ -1297,7 +1312,7 @@ msgstr "الإشعارات" msgid "download url for this order product if applicable" msgstr "تحميل الرابط الخاص بمنتج الطلب هذا إن أمكن" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "الملاحظات" @@ -1305,7 +1320,7 @@ msgstr "الملاحظات" msgid "a list of order products in this order" msgstr "قائمة بطلب المنتجات بهذا الترتيب" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "عنوان إرسال الفواتير" @@ -1333,7 +1348,7 @@ msgstr "هل جميع المنتجات في الطلب رقمي" msgid "transactions for this order" msgstr "المعاملات الخاصة بهذا الطلب" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "الطلبات" @@ -1350,7 +1365,7 @@ msgstr "صور المنتج" msgid "category" msgstr "الفئة" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "الملاحظات" @@ -1391,7 +1406,7 @@ msgstr "المنتجات متاحة للطلبات الشخصية فقط" msgid "discount price" msgstr "سعر الخصم" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "المنتجات" @@ -1403,7 +1418,7 @@ msgstr "الرموز الترويجية" msgid "products on sale" msgstr "المنتجات المعروضة للبيع" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "العروض الترويجية" @@ -1411,7 +1426,7 @@ msgstr "العروض الترويجية" msgid "vendor" msgstr "البائع" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1419,11 +1434,11 @@ msgstr "البائع" msgid "product" msgstr "المنتج" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "المنتجات المفضلة" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "قوائم التمنيات" @@ -1463,8 +1478,8 @@ msgstr "رقم هاتف الشركة" #: engine/core/graphene/object_types.py:761 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -"\"البريد الإلكتروني من\"، في بعض الأحيان يجب استخدامه بدلاً من قيمة المستخدم " -"المضيف" +"\"البريد الإلكتروني من\"، في بعض الأحيان يجب استخدامه بدلاً من قيمة المستخدم" +" المضيف" #: engine/core/graphene/object_types.py:764 msgid "email host user" @@ -1540,7 +1555,7 @@ msgstr "مجموعة السمات الرئيسية" msgid "attribute group's name" msgstr "اسم مجموعة السمات" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "مجموعة السمات" @@ -1558,8 +1573,8 @@ msgstr "" "تفاعلهم. يتم استخدام فئة البائع لتعريف وإدارة المعلومات المتعلقة ببائع " "خارجي. وهو يخزن اسم البائع، وتفاصيل المصادقة المطلوبة للاتصال، والنسبة " "المئوية للترميز المطبقة على المنتجات المسترجعة من البائع. يحتفظ هذا النموذج " -"أيضًا ببيانات وصفية وقيود إضافية، مما يجعله مناسبًا للاستخدام في الأنظمة التي " -"تتفاعل مع البائعين الخارجيين." +"أيضًا ببيانات وصفية وقيود إضافية، مما يجعله مناسبًا للاستخدام في الأنظمة " +"التي تتفاعل مع البائعين الخارجيين." #: engine/core/models.py:122 msgid "stores credentials and endpoints required for vendor communication" @@ -1612,9 +1627,9 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "يمثل علامة منتج تُستخدم لتصنيف المنتجات أو تعريفها. صُممت فئة ProductTag " -"لتعريف المنتجات وتصنيفها بشكل فريد من خلال مزيج من معرّف علامة داخلي واسم عرض " -"سهل الاستخدام. وهي تدعم العمليات التي يتم تصديرها من خلال mixins وتوفر تخصيص " -"البيانات الوصفية لأغراض إدارية." +"لتعريف المنتجات وتصنيفها بشكل فريد من خلال مزيج من معرّف علامة داخلي واسم " +"عرض سهل الاستخدام. وهي تدعم العمليات التي يتم تصديرها من خلال mixins وتوفر " +"تخصيص البيانات الوصفية لأغراض إدارية." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1642,8 +1657,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"يمثل علامة فئة تستخدم للمنتجات. تمثل هذه الفئة علامة فئة يمكن استخدامها لربط " -"المنتجات وتصنيفها. وهي تتضمن سمات لمعرف علامة داخلي واسم عرض سهل الاستخدام." +"يمثل علامة فئة تستخدم للمنتجات. تمثل هذه الفئة علامة فئة يمكن استخدامها لربط" +" المنتجات وتصنيفها. وهي تتضمن سمات لمعرف علامة داخلي واسم عرض سهل الاستخدام." #: engine/core/models.py:249 msgid "category tag" @@ -1669,9 +1684,9 @@ msgstr "" "علاقات هرمية مع فئات أخرى، مما يدعم العلاقات بين الأصل والطفل. تتضمن الفئة " "حقول للبيانات الوصفية والتمثيل المرئي، والتي تعمل كأساس للميزات المتعلقة " "بالفئات. تُستخدم هذه الفئة عادةً لتعريف وإدارة فئات المنتجات أو غيرها من " -"التجميعات المماثلة داخل التطبيق، مما يسمح للمستخدمين أو المسؤولين بتحديد اسم " -"الفئات ووصفها وتسلسلها الهرمي، بالإضافة إلى تعيين سمات مثل الصور أو العلامات " -"أو الأولوية." +"التجميعات المماثلة داخل التطبيق، مما يسمح للمستخدمين أو المسؤولين بتحديد اسم" +" الفئات ووصفها وتسلسلها الهرمي، بالإضافة إلى تعيين سمات مثل الصور أو " +"العلامات أو الأولوية." #: engine/core/models.py:269 msgid "upload an image representing this category" @@ -1722,7 +1737,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "يمثل كائن العلامة التجارية في النظام. تتعامل هذه الفئة مع المعلومات والسمات " "المتعلقة بالعلامة التجارية، بما في ذلك اسمها وشعاراتها ووصفها والفئات " @@ -1771,8 +1787,8 @@ msgstr "الفئات" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1804,8 +1820,8 @@ msgstr "سعر البيع" msgid "the product associated with this stock entry" msgstr "المنتج المرتبط بإدخال المخزون هذا" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "المنتج المرتبط" @@ -1862,10 +1878,10 @@ msgid "" msgstr "" "يمثل منتجًا بخصائص مثل الفئة والعلامة التجارية والعلامات والحالة الرقمية " "والاسم والوصف ورقم الجزء والعلامة التجارية والحالة الرقمية والاسم والوصف " -"ورقم الجزء والسبيكة. يوفر خصائص الأداة المساعدة ذات الصلة لاسترداد التقييمات " -"وعدد الملاحظات والسعر والكمية وإجمالي الطلبات. مصمم للاستخدام في نظام يتعامل " -"مع التجارة الإلكترونية أو إدارة المخزون. تتفاعل هذه الفئة مع النماذج ذات " -"الصلة (مثل الفئة والعلامة التجارية وعلامة المنتج) وتدير التخزين المؤقت " +"ورقم الجزء والسبيكة. يوفر خصائص الأداة المساعدة ذات الصلة لاسترداد التقييمات" +" وعدد الملاحظات والسعر والكمية وإجمالي الطلبات. مصمم للاستخدام في نظام " +"يتعامل مع التجارة الإلكترونية أو إدارة المخزون. تتفاعل هذه الفئة مع النماذج " +"ذات الصلة (مثل الفئة والعلامة التجارية وعلامة المنتج) وتدير التخزين المؤقت " "للخصائص التي يتم الوصول إليها بشكل متكرر لتحسين الأداء. يتم استخدامه لتعريف " "ومعالجة بيانات المنتج والمعلومات المرتبطة به داخل التطبيق." @@ -1905,7 +1921,7 @@ msgstr "توفير اسم تعريفي واضح للمنتج" msgid "product name" msgstr "اسم المنتج" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "إضافة وصف تفصيلي للمنتج" @@ -1925,13 +1941,21 @@ msgstr "رقم الجزء" msgid "stock keeping unit for this product" msgstr "وحدة حفظ المخزون لهذا المنتج" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "ما إذا كان سيتم تصدير هذا المنتج إلى الأسواق" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "التصدير إلى الأسواق" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "يمثل سمة في النظام. تُستخدم هذه الفئة لتعريف السمات وإدارتها، وهي عبارة عن " @@ -1940,89 +1964,89 @@ msgstr "" "من القيم، بما في ذلك السلسلة، والعدد الصحيح، والعائم، والمنطقي، والصفيف، " "والكائن. وهذا يسمح بهيكلة ديناميكية ومرنة للبيانات." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "مجموعة هذه السمة" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "الخيط" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "عدد صحيح" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "تعويم" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "منطقية" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "المصفوفة" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "الكائن" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "نوع قيمة السمة" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "نوع القيمة" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "اسم هذه السمة" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "اسم السمة" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "قابل للتصفية" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "يحدد ما إذا كان يمكن استخدام هذه السمة للتصفية أم لا" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "السمة" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "يمثل قيمة محددة لسمة مرتبطة بمنتج ما. يربط \"السمة\" بـ \"قيمة\" فريدة، مما " "يسمح بتنظيم أفضل وتمثيل ديناميكي لخصائص المنتج." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "سمة هذه القيمة" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "المنتج المحدد المرتبط بقيمة هذه السمة" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "القيمة المحددة لهذه السمة" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2030,209 +2054,210 @@ msgstr "" "بالمنتجات، بما في ذلك وظيفة تحميل ملفات الصور، وربطها بمنتجات معينة، وتحديد " "ترتيب عرضها. وتتضمن أيضًا ميزة إمكانية الوصول مع نص بديل للصور." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "توفير نص بديل للصورة لإمكانية الوصول" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "النص البديل للصورة" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "تحميل ملف الصورة لهذا المنتج" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "صورة المنتج" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "يحدد الترتيب الذي يتم عرض الصور به" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "أولوية العرض" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "المنتج الذي تمثله هذه الصورة" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "صور المنتج" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"يمثل حملة ترويجية للمنتجات ذات الخصم. تُستخدم هذه الفئة لتعريف وإدارة الحملات " -"الترويجية التي تقدم خصمًا على أساس النسبة المئوية للمنتجات. تتضمن الفئة سمات " -"لتعيين معدل الخصم وتوفير تفاصيل حول العرض الترويجي وربطه بالمنتجات القابلة " -"للتطبيق. تتكامل مع كتالوج المنتجات لتحديد العناصر المتأثرة في الحملة." +"يمثل حملة ترويجية للمنتجات ذات الخصم. تُستخدم هذه الفئة لتعريف وإدارة " +"الحملات الترويجية التي تقدم خصمًا على أساس النسبة المئوية للمنتجات. تتضمن " +"الفئة سمات لتعيين معدل الخصم وتوفير تفاصيل حول العرض الترويجي وربطه " +"بالمنتجات القابلة للتطبيق. تتكامل مع كتالوج المنتجات لتحديد العناصر المتأثرة" +" في الحملة." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "النسبة المئوية للخصم على المنتجات المختارة" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "نسبة الخصم" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "تقديم اسم فريد لهذا العرض الترويجي" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "اسم الترقية" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "وصف الترقية" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "حدد المنتجات المشمولة في هذا العرض الترويجي" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "المنتجات المشمولة" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "الترقية" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"يمثل قائمة أمنيات المستخدم لتخزين وإدارة المنتجات المطلوبة. توفر الفئة وظائف " -"لإدارة مجموعة من المنتجات، وتدعم عمليات مثل إضافة المنتجات وإزالتها، " +"يمثل قائمة أمنيات المستخدم لتخزين وإدارة المنتجات المطلوبة. توفر الفئة وظائف" +" لإدارة مجموعة من المنتجات، وتدعم عمليات مثل إضافة المنتجات وإزالتها، " "بالإضافة إلى دعم عمليات إضافة وإزالة منتجات متعددة في وقت واحد." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "المنتجات التي حددها المستخدم على أنها مطلوبة" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "المستخدم الذي يمتلك قائمة الرغبات هذه" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "مالك قائمة الرغبات" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "قائمة الرغبات" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"يمثل سجل وثائقي مرتبط بمنتج ما. تُستخدم هذه الفئة لتخزين معلومات حول الأفلام " -"الوثائقية المرتبطة بمنتجات محددة، بما في ذلك تحميلات الملفات وبياناتها " +"يمثل سجل وثائقي مرتبط بمنتج ما. تُستخدم هذه الفئة لتخزين معلومات حول الأفلام" +" الوثائقية المرتبطة بمنتجات محددة، بما في ذلك تحميلات الملفات وبياناتها " "الوصفية. يحتوي على أساليب وخصائص للتعامل مع نوع الملف ومسار التخزين للملفات " "الوثائقية. وهو يوسع الوظائف من مزيج معين ويوفر ميزات مخصصة إضافية." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "فيلم وثائقي" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "الأفلام الوثائقية" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "لم يتم حلها" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "يمثل كيان عنوان يتضمن تفاصيل الموقع والارتباطات مع المستخدم. يوفر وظائف " "لتخزين البيانات الجغرافية وبيانات العنوان، بالإضافة إلى التكامل مع خدمات " -"الترميز الجغرافي. صُممت هذه الفئة لتخزين معلومات العنوان التفصيلية بما في ذلك " -"مكونات مثل الشارع والمدينة والمنطقة والبلد والموقع الجغرافي (خطوط الطول " +"الترميز الجغرافي. صُممت هذه الفئة لتخزين معلومات العنوان التفصيلية بما في " +"ذلك مكونات مثل الشارع والمدينة والمنطقة والبلد والموقع الجغرافي (خطوط الطول " "والعرض). وهو يدعم التكامل مع واجهات برمجة التطبيقات للترميز الجغرافي، مما " "يتيح تخزين استجابات واجهة برمجة التطبيقات الخام لمزيد من المعالجة أو الفحص. " "تسمح الفئة أيضًا بربط عنوان مع مستخدم، مما يسهل التعامل مع البيانات الشخصية." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "سطر العنوان للعميل" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "سطر العنوان" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "الشارع" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "المنطقة" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "المدينة" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "المنطقة" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "الرمز البريدي" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "البلد" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "نقطة تحديد الموقع الجغرافي(خط الطول، خط العرض)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "استجابة JSON كاملة من أداة التشفير الجغرافي لهذا العنوان" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "استجابة JSON مخزّنة من خدمة الترميز الجغرافي" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "العنوان" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "العناوين" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2241,99 +2266,100 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"يمثل الرمز الترويجي الذي يمكن استخدامه للحصول على خصومات وإدارة صلاحيته ونوع " -"الخصم والتطبيق. تقوم فئة PromoCode بتخزين تفاصيل حول الرمز الترويجي، بما في " -"ذلك معرفه الفريد، وخصائص الخصم (المبلغ أو النسبة المئوية)، وفترة الصلاحية، " +"يمثل الرمز الترويجي الذي يمكن استخدامه للحصول على خصومات وإدارة صلاحيته ونوع" +" الخصم والتطبيق. تقوم فئة PromoCode بتخزين تفاصيل حول الرمز الترويجي، بما في" +" ذلك معرفه الفريد، وخصائص الخصم (المبلغ أو النسبة المئوية)، وفترة الصلاحية، " "والمستخدم المرتبط به (إن وجد)، وحالة استخدامه. ويتضمن وظيفة للتحقق من صحة " "الرمز الترويجي وتطبيقه على الطلب مع ضمان استيفاء القيود." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "الرمز الفريد الذي يستخدمه المستخدم لاسترداد قيمة الخصم" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "معرّف الرمز الترويجي" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "مبلغ الخصم الثابت المطبق في حالة عدم استخدام النسبة المئوية" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "مبلغ الخصم الثابت" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "النسبة المئوية للخصم المطبق في حالة عدم استخدام مبلغ ثابت" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "النسبة المئوية للخصم" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "الطابع الزمني عند انتهاء صلاحية الرمز الترويجي" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "وقت انتهاء الصلاحية" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "الطابع الزمني الذي يكون هذا الرمز الترويجي صالحاً منه" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "وقت بدء الصلاحية" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" -msgstr "الطابع الزمني عند استخدام الرمز الترويجي، فارغ إذا لم يتم استخدامه بعد" +msgstr "" +"الطابع الزمني عند استخدام الرمز الترويجي، فارغ إذا لم يتم استخدامه بعد" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "الطابع الزمني للاستخدام" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "المستخدم المعين لهذا الرمز الترويجي إن أمكن" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "المستخدم المعين" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "الرمز الترويجي" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "الرموز الترويجية" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"يجب تحديد نوع واحد فقط من الخصم (المبلغ أو النسبة المئوية)، وليس كلا النوعين " -"أو لا هذا ولا ذاك." +"يجب تحديد نوع واحد فقط من الخصم (المبلغ أو النسبة المئوية)، وليس كلا النوعين" +" أو لا هذا ولا ذاك." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "تم استخدام الرمز الترويجي بالفعل" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "نوع الخصم غير صالح للرمز الترويجي {self.uuid}" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2343,150 +2369,150 @@ msgstr "" "مرتبطة، ويمكن تطبيق العروض الترويجية، وتعيين العناوين، وتحديث تفاصيل الشحن " "أو الفوترة. وبالمثل، تدعم الوظيفة إدارة المنتجات في دورة حياة الطلب." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "عنوان إرسال الفواتير المستخدم لهذا الطلب" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "الرمز الترويجي الاختياري المطبق على هذا الطلب" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "الرمز الترويجي المطبق" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "عنوان الشحن المستخدم لهذا الطلب" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "عنوان الشحن" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "الحالة الحالية للطلب في دورة حياته" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "حالة الطلب" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "بنية JSON للإشعارات التي سيتم عرضها للمستخدمين، في واجهة مستخدم المشرف، يتم " "استخدام عرض الجدول" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "تمثيل JSON لسمات الطلب لهذا الطلب" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "المستخدم الذي قدم الطلب" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "المستخدم" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "الطابع الزمني عند الانتهاء من الطلب" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "وقت الشراء" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "معرّف يمكن قراءته بواسطة البشر للطلب" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "معرّف يمكن قراءته من قبل البشر" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "الطلب" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "يجب أن يكون لدى المستخدم طلب واحد فقط معلق في كل مرة!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "لا يمكنك إضافة منتجات إلى طلب غير معلق إلى طلب غير معلق" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "لا يمكنك إضافة منتجات غير نشطة للطلب" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "لا يمكنك إضافة منتجات أكثر من المتوفرة في المخزون" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "لا يمكنك إزالة المنتجات من طلب غير معلق من طلب غير معلق" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} غير موجود مع الاستعلام <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "الرمز الترويجي غير موجود" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "يمكنك فقط شراء المنتجات المادية مع تحديد عنوان الشحن فقط!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "العنوان غير موجود" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "لا يمكنك الشراء في هذه اللحظة، يرجى المحاولة مرة أخرى بعد بضع دقائق." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "قيمة القوة غير صالحة" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "لا يمكنك شراء طلبية فارغة!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "لا يمكنك شراء طلب بدون مستخدم!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "المستخدم بدون رصيد لا يمكنه الشراء بالرصيد!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "عدم كفاية الأموال لإكمال الطلب" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -"لا يمكنك الشراء بدون تسجيل، يرجى تقديم المعلومات التالية: اسم العميل، البريد " -"الإلكتروني للعميل، رقم هاتف العميل" +"لا يمكنك الشراء بدون تسجيل، يرجى تقديم المعلومات التالية: اسم العميل، البريد" +" الإلكتروني للعميل، رقم هاتف العميل" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "طريقة الدفع غير صالحة: {payment_method} من {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2499,31 +2525,32 @@ msgstr "" "المستخدم، ومرجع إلى المنتج ذي الصلة في الطلب، وتقييم معين من قبل المستخدم. " "يستخدم الفصل حقول قاعدة البيانات لنمذجة وإدارة بيانات الملاحظات بشكل فعال." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "التعليقات المقدمة من المستخدمين حول تجربتهم مع المنتج" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "تعليقات على الملاحظات" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "الإشارة إلى المنتج المحدد في الطلب الذي تدور حوله هذه الملاحظات" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "منتجات الطلبات ذات الصلة" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "التصنيف المعين من قبل المستخدم للمنتج" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "تصنيف المنتج" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2538,131 +2565,131 @@ msgstr "" "يمثل المنتجات المرتبطة بالطلبات وسماتها. يحتفظ نموذج OrderProduct بمعلومات " "حول المنتج الذي هو جزء من الطلب، بما في ذلك تفاصيل مثل سعر الشراء والكمية " "وسمات المنتج وحالته. يدير الإشعارات للمستخدم والمسؤولين ويتعامل مع عمليات " -"مثل إرجاع رصيد المنتج أو إضافة ملاحظات. يوفر هذا النموذج أيضًا أساليب وخصائص " -"تدعم منطق العمل، مثل حساب السعر الإجمالي أو إنشاء عنوان URL للتنزيل للمنتجات " -"الرقمية. يتكامل النموذج مع نموذجي الطلب والمنتج ويخزن مرجعًا لهما." +"مثل إرجاع رصيد المنتج أو إضافة ملاحظات. يوفر هذا النموذج أيضًا أساليب وخصائص" +" تدعم منطق العمل، مثل حساب السعر الإجمالي أو إنشاء عنوان URL للتنزيل " +"للمنتجات الرقمية. يتكامل النموذج مع نموذجي الطلب والمنتج ويخزن مرجعًا لهما." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "السعر الذي دفعه العميل لهذا المنتج وقت الشراء" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "سعر الشراء وقت الطلب" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "تعليقات داخلية للمسؤولين حول هذا المنتج المطلوب" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "التعليقات الداخلية" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "إشعارات المستخدم" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "تمثيل JSON لسمات هذا العنصر" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "سمات المنتج المطلوبة" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "الإشارة إلى الطلب الأصلي الذي يحتوي على هذا المنتج" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "ترتيب الوالدين" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "المنتج المحدد المرتبط بخط الطلب هذا" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "كمية هذا المنتج المحدد في الطلب" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "كمية المنتج" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "الحالة الحالية لهذا المنتج بالترتيب" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "حالة خط الإنتاج" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "يجب أن يكون لـ Orderproduct طلب مرتبط به!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "تم تحديد إجراء خاطئ للتغذية الراجعة: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "لا يمكنك التعليق على طلب لم يتم استلامه" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "الاسم" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "رابط التكامل" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "بيانات اعتماد المصادقة" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "يمكن أن يكون لديك موفر CRM افتراضي واحد فقط" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "إدارة علاقات العملاء" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "إدارة علاقات العملاء" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "رابط إدارة علاقات العملاء الخاصة بالطلب" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "روابط إدارة علاقات العملاء الخاصة بالطلبات" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "يمثل وظيفة التنزيل للأصول الرقمية المرتبطة بالطلبات. توفر فئة " "DigitalAssetDownload القدرة على إدارة التنزيلات المتعلقة بمنتجات الطلبات " "والوصول إليها. وتحتفظ بمعلومات حول منتج الطلب المرتبط، وعدد التنزيلات، وما " -"إذا كان الأصل مرئيًا للعامة. وتتضمن طريقة لإنشاء عنوان URL لتنزيل الأصل عندما " -"يكون الطلب المرتبط في حالة مكتملة." +"إذا كان الأصل مرئيًا للعامة. وتتضمن طريقة لإنشاء عنوان URL لتنزيل الأصل " +"عندما يكون الطلب المرتبط في حالة مكتملة." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "تنزيل" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "التنزيلات" @@ -2861,12 +2888,11 @@ msgstr "مرحباً %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"شكرًا لك على طلبك #%(order.pk)s! يسعدنا إبلاغك بأننا قد أخذنا طلبك في العمل. " -"فيما يلي تفاصيل طلبك:" +"شكرًا لك على طلبك #%(order.pk)s! يسعدنا إبلاغك بأننا قد أخذنا طلبك في العمل." +" فيما يلي تفاصيل طلبك:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2973,8 +2999,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "شكرًا لك على طلبك! يسعدنا تأكيد طلبك. فيما يلي تفاصيل طلبك:" @@ -3101,14 +3126,10 @@ msgstr "يتعامل بمنطق الشراء كشركة تجارية دون تس #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "يتعامل مع تنزيل الأصل الرقمي المرتبط بأمر ما.\n" -"تحاول هذه الدالة خدمة ملف الأصل الرقمي الموجود في دليل التخزين الخاص " -"بالمشروع. إذا لم يتم العثور على الملف، يتم رفع خطأ HTTP 404 للإشارة إلى أن " -"المورد غير متوفر." +"تحاول هذه الدالة خدمة ملف الأصل الرقمي الموجود في دليل التخزين الخاص بالمشروع. إذا لم يتم العثور على الملف، يتم رفع خطأ HTTP 404 للإشارة إلى أن المورد غير متوفر." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3137,28 +3158,24 @@ msgstr "الرمز المفضل غير موجود" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "يتعامل مع طلبات الرمز المفضل لموقع ويب.\n" -"تحاول هذه الدالة عرض ملف الأيقونة المفضلة الموجود في الدليل الثابت للمشروع. " -"إذا لم يتم العثور على ملف الأيقونة المفضلة، يتم رفع خطأ HTTP 404 للإشارة إلى " -"أن المورد غير متوفر." +"تحاول هذه الدالة عرض ملف الأيقونة المفضلة الموجود في الدليل الثابت للمشروع. إذا لم يتم العثور على ملف الأيقونة المفضلة، يتم رفع خطأ HTTP 404 للإشارة إلى أن المورد غير متوفر." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"يعيد توجيه الطلب إلى صفحة فهرس المشرف. تعالج الدالة طلبات HTTP الواردة وتعيد " -"توجيهها إلى صفحة فهرس واجهة إدارة Django. تستخدم دالة \"إعادة التوجيه\" في " +"يعيد توجيه الطلب إلى صفحة فهرس المشرف. تعالج الدالة طلبات HTTP الواردة وتعيد" +" توجيهها إلى صفحة فهرس واجهة إدارة Django. تستخدم دالة \"إعادة التوجيه\" في " "Django للتعامل مع إعادة توجيه HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "إرجاع الإصدار الحالي من eVibes." +msgid "Returns current version of the Schon. " +msgstr "إرجاع الإصدار الحالي من Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3171,28 +3188,29 @@ msgstr "إرجاع المتغيرات المخصصة للوحة التحكم." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"يحدد مجموعة طرق عرض لإدارة العمليات المتعلقة ب Evibes. يرث صنف EvibesViewSet " -"من ModelViewSet ويوفر وظائف للتعامل مع الإجراءات والعمليات على كيانات " -"Evibes. وتتضمن دعمًا لفئات المتسلسلات الديناميكية استنادًا إلى الإجراء الحالي، " +"يحدد مجموعة طرق عرض لإدارة العمليات المتعلقة ب schon. يرث صنف SchonViewSet " +"من ModelViewSet ويوفر وظائف للتعامل مع الإجراءات والعمليات على كيانات schon." +" وتتضمن دعمًا لفئات المتسلسلات الديناميكية استنادًا إلى الإجراء الحالي، " "والأذونات القابلة للتخصيص، وتنسيقات العرض." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "يمثل مجموعة طرق عرض لإدارة كائنات AttributeGroup. يتعامل مع العمليات " "المتعلقة ب AttributeGroup، بما في ذلك التصفية والتسلسل واسترجاع البيانات. " -"تعد هذه الفئة جزءًا من طبقة واجهة برمجة التطبيقات الخاصة بالتطبيق وتوفر طريقة " -"موحدة لمعالجة الطلبات والاستجابات لبيانات AttributeGroup." +"تعد هذه الفئة جزءًا من طبقة واجهة برمجة التطبيقات الخاصة بالتطبيق وتوفر " +"طريقة موحدة لمعالجة الطلبات والاستجابات لبيانات AttributeGroup." #: engine/core/viewsets.py:179 msgid "" @@ -3214,13 +3232,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"مجموعة طرق عرض لإدارة كائنات AttributeValue. توفر مجموعة طرق العرض هذه وظائف " -"لإدراج كائنات AttributeValue واسترجاعها وإنشائها وتحديثها وحذفها. وهي تتكامل " -"مع آليات مجموعة طرق عرض Django REST Framework وتستخدم المتسلسلات المناسبة " -"للإجراءات المختلفة. يتم توفير إمكانيات التصفية من خلال DjangoFilterBackend." +"مجموعة طرق عرض لإدارة كائنات AttributeValue. توفر مجموعة طرق العرض هذه وظائف" +" لإدراج كائنات AttributeValue واسترجاعها وإنشائها وتحديثها وحذفها. وهي " +"تتكامل مع آليات مجموعة طرق عرض Django REST Framework وتستخدم المتسلسلات " +"المناسبة للإجراءات المختلفة. يتم توفير إمكانيات التصفية من خلال " +"DjangoFilterBackend." #: engine/core/viewsets.py:217 msgid "" @@ -3231,8 +3250,8 @@ msgid "" "can access specific data." msgstr "" "يدير طرق العرض للعمليات المتعلقة بالفئة. فئة CategoryViewSet مسؤولة عن " -"التعامل مع العمليات المتعلقة بنموذج الفئة في النظام. وهي تدعم استرجاع بيانات " -"الفئة وتصفيتها وتسلسلها. تفرض مجموعة طرق العرض أيضًا الأذونات لضمان وصول " +"التعامل مع العمليات المتعلقة بنموذج الفئة في النظام. وهي تدعم استرجاع بيانات" +" الفئة وتصفيتها وتسلسلها. تفرض مجموعة طرق العرض أيضًا الأذونات لضمان وصول " "المستخدمين المصرح لهم فقط إلى بيانات محددة." #: engine/core/viewsets.py:346 @@ -3252,14 +3271,14 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "يدير العمليات المتعلقة بنموذج \"المنتج\" في النظام. توفر هذه الفئة مجموعة " "طرق عرض لإدارة المنتجات، بما في ذلك تصفيتها وتسلسلها وعملياتها على مثيلات " -"محددة. وهو يمتد من 'EvibesViewSet' لاستخدام الوظائف الشائعة ويتكامل مع إطار " +"محددة. وهو يمتد من 'SchonViewSet' لاستخدام الوظائف الشائعة ويتكامل مع إطار " "عمل Django REST لعمليات RESTful API. يتضمن أساليب لاسترجاع تفاصيل المنتج، " "وتطبيق الأذونات، والوصول إلى الملاحظات ذات الصلة بمنتج ما." @@ -3272,34 +3291,35 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" "يمثل مجموعة طرق عرض لإدارة كائنات المورد. تسمح مجموعة العرض هذه بجلب بيانات " -"البائع وتصفيتها وتسلسلها. وهي تُعرِّف مجموعة الاستعلام، وتكوينات التصفية، وفئات " -"أداة التسلسل المستخدمة للتعامل مع الإجراءات المختلفة. الغرض من هذه الفئة هو " -"توفير وصول مبسط إلى الموارد المتعلقة بالمورد من خلال إطار عمل Django REST." +"البائع وتصفيتها وتسلسلها. وهي تُعرِّف مجموعة الاستعلام، وتكوينات التصفية، " +"وفئات أداة التسلسل المستخدمة للتعامل مع الإجراءات المختلفة. الغرض من هذه " +"الفئة هو توفير وصول مبسط إلى الموارد المتعلقة بالمورد من خلال إطار عمل " +"Django REST." #: engine/core/viewsets.py:625 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "تمثيل مجموعة عرض تتعامل مع كائنات الملاحظات. تدير هذه الفئة العمليات " "المتعلقة بكائنات الملاحظات، بما في ذلك الإدراج والتصفية واسترجاع التفاصيل. " "الغرض من مجموعة العرض هذه هو توفير متسلسلات مختلفة لإجراءات مختلفة وتنفيذ " -"معالجة قائمة على الأذونات لكائنات الملاحظات التي يمكن الوصول إليها. وهي توسع " -"\"مجموعة عرض الملاحظات\" الأساسية وتستفيد من نظام تصفية Django للاستعلام عن " -"البيانات." +"معالجة قائمة على الأذونات لكائنات الملاحظات التي يمكن الوصول إليها. وهي توسع" +" \"مجموعة عرض الملاحظات\" الأساسية وتستفيد من نظام تصفية Django للاستعلام عن" +" البيانات." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet لإدارة الطلبات والعمليات ذات الصلة. توفر هذه الفئة وظائف لاسترداد " @@ -3313,8 +3333,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "يوفر مجموعة طرق عرض لإدارة كيانات OrderProduct. تتيح مجموعة طرق العرض هذه " @@ -3346,15 +3366,15 @@ msgstr "يتعامل مع العمليات المتعلقة ببيانات ال msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"ViewSet لإدارة عمليات قائمة الرغبات. توفر مجموعة طرق عرض قائمة الأمنيات نقاط " -"نهاية للتفاعل مع قائمة أمنيات المستخدم، مما يسمح باسترجاع المنتجات وتعديلها " -"وتخصيصها ضمن قائمة الأمنيات. تسهل مجموعة العرض هذه وظائف مثل الإضافة " +"ViewSet لإدارة عمليات قائمة الرغبات. توفر مجموعة طرق عرض قائمة الأمنيات نقاط" +" نهاية للتفاعل مع قائمة أمنيات المستخدم، مما يسمح باسترجاع المنتجات وتعديلها" +" وتخصيصها ضمن قائمة الأمنيات. تسهل مجموعة العرض هذه وظائف مثل الإضافة " "والإزالة والإجراءات المجمعة لمنتجات قائمة الرغبات. يتم دمج عمليات التحقق من " "الأذونات للتأكد من أن المستخدمين يمكنهم فقط إدارة قوائم الرغبات الخاصة بهم " "ما لم يتم منح أذونات صريحة." diff --git a/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo index 71ef7fb0..a18bbab6 100644 Binary files a/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo and b/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/cs_CZ/LC_MESSAGES/django.po b/engine/core/locale/cs_CZ/LC_MESSAGES/django.po index 3272a778..e0956411 100644 --- a/engine/core/locale/cs_CZ/LC_MESSAGES/django.po +++ b/engine/core/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -28,7 +28,8 @@ msgstr "Je aktivní" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Pokud je nastaveno na false, nemohou tento objekt vidět uživatelé bez " "potřebného oprávnění." @@ -75,8 +76,8 @@ msgstr "Časová razítka" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Aktivace vybraného %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Aktivovat vybrané %(verbose_name_plural)s" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -84,21 +85,21 @@ msgstr "Vybrané položky byly aktivovány!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Deaktivace vybraných %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Deaktivovat vybrané %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Vybrané položky byly deaktivovány!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Hodnota atributu" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Hodnoty atributů" @@ -118,12 +119,12 @@ msgstr "Stock" msgid "stocks" msgstr "Zásoby" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Objednat produkt" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Objednat produkty" @@ -131,7 +132,31 @@ msgstr "Objednat produkty" msgid "children" msgstr "Děti" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Obsahuje obrázky" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Exportovat vybrané %(verbose_name_plural)s do feedů tržišť" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Vybrané %(verbose_name_plural)s byly označeny pro export." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Zakázat vybraný %(verbose_name_plural)s z feedů tržišť" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Vybrané %(verbose_name_plural)s byly zakázány pro export." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfigurace" @@ -155,7 +180,8 @@ msgstr "Doručeno na" msgid "canceled" msgstr "Zrušeno" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Neúspěšný" @@ -272,7 +298,8 @@ msgstr "" "Přepsání existující skupiny atributů s uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Přepsání některých polí existující skupiny atributů s uložením " "neupravitelných položek" @@ -324,7 +351,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Přepsání existující hodnoty atributu uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Přepsání některých polí existující hodnoty atributu s uložením " "neupravitelných položek" @@ -382,12 +410,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Vyhledávání podřetězců bez ohledu na velikost písmen v položkách " -"human_readable_id, order_products.product.name a order_products.product." -"partnumber" +"human_readable_id, order_products.product.name a " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -423,9 +451,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Řazení podle jedné z následujících možností: uuid, human_readable_id, " "user_email, user, status, created, modified, buy_time, random. Pro sestupné " @@ -470,8 +498,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"Dokončí nákup objednávky. Pokud je použito `force_balance`, nákup se dokončí " -"s použitím zůstatku uživatele; pokud je použito `force_payment`, zahájí se " +"Dokončí nákup objednávky. Pokud je použito `force_balance`, nákup se dokončí" +" s použitím zůstatku uživatele; pokud je použito `force_payment`, zahájí se " "transakce." #: engine/core/docs/drf/viewsets.py:427 @@ -602,7 +630,8 @@ msgstr "Přidání mnoha produktů do seznamu přání" #: engine/core/docs/drf/viewsets.py:579 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "Přidá mnoho produktů do seznamu přání pomocí zadaných `product_uuids`." +msgstr "" +"Přidá mnoho produktů do seznamu přání pomocí zadaných `product_uuids`." #: engine/core/docs/drf/viewsets.py:588 msgid "remove many products from wishlist" @@ -618,28 +647,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrování podle jedné nebo více dvojic název/hodnota atributu. \n" "- **Syntaxe**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- **Metody** (pokud je vynecháno, výchozí hodnota je `obsahuje`): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- **Typování hodnot**: Pro booleany, celá čísla, floaty se nejprve zkouší " -"JSON (takže můžete předávat seznamy/dicty), `true`/`false`; jinak se s nimi " -"zachází jako s řetězci. \n" -"- **Base64**: předpona `b64-` pro bezpečné zakódování surové hodnoty do URL " -"base64. \n" +"- **Metody** (pokud je vynecháno, výchozí hodnota je `obsahuje`): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Typování hodnot**: Pro booleany, celá čísla, floaty se nejprve zkouší JSON (takže můžete předávat seznamy/dicty), `true`/`false`; jinak se s nimi zachází jako s řetězci. \n" +"- **Base64**: předpona `b64-` pro bezpečné zakódování surové hodnoty do URL base64. \n" "Příklady: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -654,12 +673,10 @@ msgstr "(přesně) UUID produktu" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Seznam polí oddělených čárkou, podle kterých se má třídit. Pro sestupné " -"řazení použijte předponu `-`. \n" +"Seznam polí oddělených čárkou, podle kterých se má třídit. Pro sestupné řazení použijte předponu `-`. \n" "**Povolené:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -914,7 +931,8 @@ msgstr "Odstranění povýšení" #: engine/core/docs/drf/viewsets.py:1244 msgid "rewrite an existing promotion saving non-editables" -msgstr "Přepsání existující propagační akce s uložením neupravitelných položek" +msgstr "" +"Přepsání existující propagační akce s uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" @@ -965,7 +983,8 @@ msgstr "Odstranění značky produktu" #: engine/core/docs/drf/viewsets.py:1342 msgid "rewrite an existing product tag saving non-editables" -msgstr "Přepsání existující značky produktu s uložením neupravitelných položek" +msgstr "" +"Přepsání existující značky produktu s uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" @@ -1205,11 +1224,11 @@ msgstr "Koupit objednávku" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Prosím, pošlete atributy jako řetězec ve formátu attr1=hodnota1," -"attr2=hodnota2." +"Prosím, pošlete atributy jako řetězec ve formátu " +"attr1=hodnota1,attr2=hodnota2." #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1228,9 +1247,9 @@ msgstr "Orderproduct {order_product_uuid} nenalezen!" msgid "original address string provided by the user" msgstr "Původní řetězec adresy zadaný uživatelem" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1246,8 +1265,8 @@ msgstr "ElasticSearch - funguje jako kouzlo" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Atributy" @@ -1283,9 +1302,11 @@ msgid "which attributes and values can be used for filtering this category." msgstr "Které atributy a hodnoty lze použít pro filtrování této kategorie." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" -"Minimální a maximální ceny produktů v této kategorii, pokud jsou k dispozici." +"Minimální a maximální ceny produktů v této kategorii, pokud jsou k " +"dispozici." #: engine/core/graphene/object_types.py:234 msgid "tags for this category" @@ -1321,7 +1342,7 @@ msgid "represents feedback from a user." msgstr "Představuje zpětnou vazbu od uživatele." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Oznámení" @@ -1329,7 +1350,7 @@ msgstr "Oznámení" msgid "download url for this order product if applicable" msgstr "Stáhněte si url adresu pro tento objednaný produkt, pokud je to možné" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Zpětná vazba" @@ -1337,7 +1358,7 @@ msgstr "Zpětná vazba" msgid "a list of order products in this order" msgstr "Seznam objednaných produktů v tomto pořadí" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Fakturační adresa" @@ -1365,7 +1386,7 @@ msgstr "Jsou všechny produkty v objednávce digitální" msgid "transactions for this order" msgstr "Transakce pro tuto objednávku" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Objednávky" @@ -1382,7 +1403,7 @@ msgstr "Obrázky produktu" msgid "category" msgstr "Kategorie" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Zpětná vazba" @@ -1423,7 +1444,7 @@ msgstr "Produkty jsou k dispozici pouze pro osobní objednávky" msgid "discount price" msgstr "Cena se slevou" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produkty" @@ -1435,7 +1456,7 @@ msgstr "Propagační kódy" msgid "products on sale" msgstr "Produkty v prodeji" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Propagační akce" @@ -1443,7 +1464,7 @@ msgstr "Propagační akce" msgid "vendor" msgstr "Prodejce" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1451,11 +1472,11 @@ msgstr "Prodejce" msgid "product" msgstr "Produkt" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produkty uvedené na seznamu přání" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Seznamy přání" @@ -1572,7 +1593,7 @@ msgstr "Nadřazená skupina atributů" msgid "attribute group's name" msgstr "Název skupiny atributů" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Skupina atributů" @@ -1590,8 +1611,8 @@ msgstr "" "dodavatelích a jejich požadavcích na interakci. Třída Vendor se používá k " "definování a správě informací týkajících se externího dodavatele. Uchovává " "jméno prodejce, údaje o ověření požadované pro komunikaci a procentuální " -"přirážku použitou na produkty získané od prodejce. Tento model také uchovává " -"další metadata a omezení, takže je vhodný pro použití v systémech, které " +"přirážku použitou na produkty získané od prodejce. Tento model také uchovává" +" další metadata a omezení, takže je vhodný pro použití v systémech, které " "komunikují s prodejci třetích stran." #: engine/core/models.py:122 @@ -1706,8 +1727,8 @@ msgstr "" "jinými kategoriemi a podporovat vztahy rodič-dítě. Třída obsahuje pole pro " "metadata a vizuální zobrazení, která slouží jako základ pro funkce " "související s kategoriemi. Tato třída se obvykle používá k definování a " -"správě kategorií produktů nebo jiných podobných seskupení v rámci aplikace a " -"umožňuje uživatelům nebo správcům zadávat název, popis a hierarchii " +"správě kategorií produktů nebo jiných podobných seskupení v rámci aplikace a" +" umožňuje uživatelům nebo správcům zadávat název, popis a hierarchii " "kategorií a také přiřazovat atributy, jako jsou obrázky, značky nebo " "priorita." @@ -1760,7 +1781,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Reprezentuje objekt značky v systému. Tato třída zpracovává informace a " "atributy související se značkou, včetně jejího názvu, loga, popisu, " @@ -1809,8 +1831,8 @@ msgstr "Kategorie" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1843,8 +1865,8 @@ msgstr "Prodejní cena" msgid "the product associated with this stock entry" msgstr "Produkt spojený s touto skladovou položkou" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Související produkt" @@ -1903,10 +1925,10 @@ msgstr "" "digitální stav, název, popis, číslo dílu a přípona. Poskytuje související " "užitečné vlastnosti pro získání hodnocení, počtu zpětných vazeb, ceny, " "množství a celkového počtu objednávek. Určeno pro použití v systému, který " -"zpracovává elektronické obchodování nebo správu zásob. Tato třída komunikuje " -"se souvisejícími modely (například Category, Brand a ProductTag) a spravuje " -"ukládání často přistupovaných vlastností do mezipaměti pro zlepšení výkonu. " -"Používá se k definování a manipulaci s údaji o produktu a souvisejícími " +"zpracovává elektronické obchodování nebo správu zásob. Tato třída komunikuje" +" se souvisejícími modely (například Category, Brand a ProductTag) a spravuje" +" ukládání často přistupovaných vlastností do mezipaměti pro zlepšení výkonu." +" Používá se k definování a manipulaci s údaji o produktu a souvisejícími " "informacemi v rámci aplikace." #: engine/core/models.py:595 @@ -1945,7 +1967,7 @@ msgstr "Uveďte jasný identifikační název výrobku" msgid "product name" msgstr "Název produktu" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Přidejte podrobný popis produktu" @@ -1965,13 +1987,21 @@ msgstr "Číslo dílu" msgid "stock keeping unit for this product" msgstr "Skladová jednotka pro tento produkt" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Zda exportovat tento produkt na tržiště" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Export na tržiště" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Reprezentuje atribut v systému. Tato třída slouží k definování a správě " @@ -1981,179 +2011,179 @@ msgstr "" "booleanu, pole a objektu. To umožňuje dynamické a flexibilní strukturování " "dat." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Skupina tohoto atributu" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Řetězec" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Celé číslo" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Float" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Pole" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objekt" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Typ hodnoty atributu" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Typ hodnoty" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Název tohoto atributu" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Název atributu" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "je filtrovatelný" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "určuje, zda lze tento atribut použít pro filtrování, nebo ne." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Představuje konkrétní hodnotu atributu, který je spojen s produktem. Spojuje " -"\"atribut\" s jedinečnou \"hodnotou\", což umožňuje lepší organizaci a " +"Představuje konkrétní hodnotu atributu, který je spojen s produktem. Spojuje" +" \"atribut\" s jedinečnou \"hodnotou\", což umožňuje lepší organizaci a " "dynamickou reprezentaci vlastností produktu." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Atribut této hodnoty" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Konkrétní produkt spojený s hodnotou tohoto atributu" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Konkrétní hodnota tohoto atributu" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Představuje obrázek produktu spojený s produktem v systému. Tato třída je " "určena ke správě obrázků produktů, včetně funkcí pro nahrávání souborů s " -"obrázky, jejich přiřazování ke konkrétním produktům a určování pořadí jejich " -"zobrazení. Obsahuje také funkci pro zpřístupnění alternativního textu pro " +"obrázky, jejich přiřazování ke konkrétním produktům a určování pořadí jejich" +" zobrazení. Obsahuje také funkci pro zpřístupnění alternativního textu pro " "obrázky." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Poskytněte alternativní text k obrázku kvůli přístupnosti." -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Text alt obrázku" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Nahrát soubor s obrázkem tohoto produktu" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Obrázek produktu" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Určuje pořadí, v jakém se obrázky zobrazují." -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Priorita zobrazení" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Výrobek, který tento obrázek představuje" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Obrázky produktů" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Představuje propagační kampaň na produkty se slevou. Tato třída se používá k " -"definici a správě propagačních kampaní, které nabízejí procentuální slevu na " -"produkty. Třída obsahuje atributy pro nastavení slevové sazby, poskytnutí " -"podrobností o akci a její propojení s příslušnými produkty. Integruje se s " +"Představuje propagační kampaň na produkty se slevou. Tato třída se používá k" +" definici a správě propagačních kampaní, které nabízejí procentuální slevu " +"na produkty. Třída obsahuje atributy pro nastavení slevové sazby, poskytnutí" +" podrobností o akci a její propojení s příslušnými produkty. Integruje se s " "katalogem produktů, aby bylo možné určit položky, kterých se kampaň týká." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Procentuální sleva na vybrané produkty" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Procento slevy" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Uveďte jedinečný název této propagační akce" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Název akce" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Popis propagace" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Vyberte, které produkty jsou zahrnuty do této akce" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Zahrnuté produkty" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Propagace" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2165,30 +2195,30 @@ msgstr "" "operace, jako je přidávání a odebírání produktů, a také operace pro " "přidávání a odebírání více produktů najednou." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Výrobky, které uživatel označil jako požadované" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Uživatel, který vlastní tento seznam přání" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Majitel seznamu přání" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Seznam přání" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Představuje dokumentační záznam vázaný na produkt. Tato třída se používá k " "ukládání informací o dokumentech souvisejících s konkrétními produkty, " @@ -2196,91 +2226,91 @@ msgstr "" "zpracování typu souboru a cesty k uložení souborů dokumentů. Rozšiřuje " "funkčnost konkrétních mixinů a poskytuje další vlastní funkce." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Dokumentární film" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Dokumentární filmy" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Nevyřešené" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Reprezentuje entitu adresy, která obsahuje údaje o umístění a asociace s " "uživatelem. Poskytuje funkce pro ukládání geografických a adresních dat a " "integraci se službami geokódování. Tato třída je určena k ukládání " "podrobných informací o adrese včetně komponent, jako je ulice, město, " "region, země a geolokace (zeměpisná délka a šířka). Podporuje integraci se " -"službami API pro geokódování a umožňuje ukládání nezpracovaných odpovědí API " -"pro další zpracování nebo kontrolu. Třída také umožňuje přiřadit adresu k " +"službami API pro geokódování a umožňuje ukládání nezpracovaných odpovědí API" +" pro další zpracování nebo kontrolu. Třída také umožňuje přiřadit adresu k " "uživateli, což usnadňuje personalizované zpracování dat." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Adresní řádek pro zákazníka" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adresní řádek" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Ulice" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Okres" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Město" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Poštovní směrovací číslo" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Země" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokace Bod(Zeměpisná délka, Zeměpisná šířka)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Úplná odpověď JSON z geokodéru pro tuto adresu" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Uložená odpověď JSON ze služby geokódování" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adresa" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresy" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2296,71 +2326,71 @@ msgstr "" "existuje) a stavu jeho použití. Obsahuje funkce pro ověření platnosti a " "použití propagačního kódu na objednávku při zajištění splnění omezení." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Jedinečný kód, který uživatel použije k uplatnění slevy." -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identifikátor propagačního kódu" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Pevná výše slevy, pokud není použito procento" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Pevná výše slevy" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentuální sleva uplatněná v případě nevyužití pevné částky" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Procentuální sleva" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Časové razítko ukončení platnosti promokódu" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Doba ukončení platnosti" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Časové razítko, od kterého je tento promokód platný" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Čas zahájení platnosti" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "Časové razítko použití promokódu, prázdné, pokud ještě nebyl použit." -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Časové razítko použití" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Uživatel přiřazený k tomuto promokódu, je-li to relevantní" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Přiřazený uživatel" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Propagační kód" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Propagační kódy" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2368,21 +2398,21 @@ msgstr "" "Měl by být definován pouze jeden typ slevy (částka nebo procento), nikoli " "však oba typy slev nebo žádný z nich." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promo kód byl již použit" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Neplatný typ slevy pro promokód {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2394,136 +2424,137 @@ msgstr "" "fakturaci. Stejně tak funkce podporuje správu produktů v životním cyklu " "objednávky." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Fakturační adresa použitá pro tuto objednávku" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Volitelný promo kód použitý na tuto objednávku" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Použitý promo kód" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Dodací adresa použitá pro tuto objednávku" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Dodací adresa" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Aktuální stav zakázky v jejím životním cyklu" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Stav objednávky" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON struktura oznámení pro zobrazení uživatelům, v uživatelském rozhraní " "administrátora se používá tabulkové zobrazení." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON reprezentace atributů objednávky pro tuto objednávku" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Uživatel, který zadal objednávku" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Uživatel" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Časové razítko, kdy byla objednávka dokončena." -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Kupte si čas" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Lidsky čitelný identifikátor objednávky" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "lidsky čitelné ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Objednávka" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Uživatel smí mít vždy pouze jednu čekající objednávku!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" -msgstr "Do objednávky, která není v procesu vyřizování, nelze přidat produkty." +msgstr "" +"Do objednávky, která není v procesu vyřizování, nelze přidat produkty." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Do objednávky nelze přidat neaktivní produkty" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Nelze přidat více produktů, než je dostupné na skladě" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "Nelze odebrat produkty z objednávky, která není nevyřízená." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} neexistuje s dotazem <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promo kód neexistuje" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "Fyzické produkty můžete zakoupit pouze se zadanou dodací adresou!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adresa neexistuje" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "V tuto chvíli nemůžete nakupovat, zkuste to prosím znovu za několik minut." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Neplatná hodnota síly" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Nelze zakoupit prázdnou objednávku!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Bez uživatele nelze objednávku zakoupit!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Uživatel bez zůstatku nemůže nakupovat se zůstatkem!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Nedostatek finančních prostředků na dokončení objednávky" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2531,14 +2562,14 @@ msgstr "" "bez registrace nelze nakupovat, uveďte prosím následující údaje: jméno " "zákazníka, e-mail zákazníka, telefonní číslo zákazníka." -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Neplatný způsob platby: {payment_method} z {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2547,38 +2578,39 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "spravuje zpětnou vazbu uživatelů k produktům. Tato třída je určena k " -"zachycování a ukládání zpětné vazby uživatelů ke konkrétním produktům, které " -"si zakoupili. Obsahuje atributy pro ukládání komentářů uživatelů, odkaz na " +"zachycování a ukládání zpětné vazby uživatelů ke konkrétním produktům, které" +" si zakoupili. Obsahuje atributy pro ukládání komentářů uživatelů, odkaz na " "související produkt v objednávce a hodnocení přiřazené uživatelem. Třída " "využívá databázová pole k efektivnímu modelování a správě dat zpětné vazby." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Komentáře uživatelů o jejich zkušenostech s produktem" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Zpětná vazba" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Odkazuje na konkrétní produkt v objednávce, kterého se tato zpětná vazba " "týká." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Související objednávka produktu" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Hodnocení produktu přidělené uživatelem" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Hodnocení produktu" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2600,115 +2632,115 @@ msgstr "" "produktů. Model se integruje s modely objednávek a produktů a ukládá na ně " "odkaz." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Cena, kterou zákazník zaplatil za tento produkt v době nákupu." -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Nákupní cena v době objednávky" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Interní komentáře pro administrátory k tomuto objednanému produktu" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Interní připomínky" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Oznámení uživatele" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON reprezentace atributů této položky" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Objednané atributy produktu" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Odkaz na nadřazenou objednávku, která obsahuje tento produkt" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Objednávka rodičů" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Konkrétní produkt spojený s touto objednávkou" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Množství tohoto konkrétního produktu v objednávce" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Množství produktu" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Aktuální stav tohoto produktu v objednávce" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Stav produktové řady" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct musí mít přiřazenou objednávku!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Špatně zadaná akce pro zpětnou vazbu: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "nelze poskytnout zpětnou vazbu na objednávku, která nebyla přijata" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Název" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "Adresa URL integrace" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Ověřovací pověření" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Můžete mít pouze jednoho výchozího poskytovatele CRM" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Odkaz na CRM objednávky" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Odkazy CRM objednávek" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Představuje funkci stahování digitálních aktiv spojených s objednávkami. " "Třída DigitalAssetDownload poskytuje možnost spravovat a zpřístupňovat " @@ -2717,11 +2749,11 @@ msgstr "" "veřejně viditelné. Obsahuje metodu pro generování adresy URL pro stažení " "aktiva, když je přidružená objednávka ve stavu dokončena." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Stáhnout" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Ke stažení na" @@ -2921,8 +2953,7 @@ msgstr "Ahoj %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Děkujeme vám za vaši objednávku #%(order.pk)s! S potěšením Vám oznamujeme, " @@ -3037,8 +3068,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Děkujeme vám za vaši objednávku! S potěšením potvrzujeme váš nákup. Níže " @@ -3143,8 +3173,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Zpracovává operace mezipaměti, jako je čtení a nastavování dat mezipaměti se " -"zadaným klíčem a časovým limitem." +"Zpracovává operace mezipaměti, jako je čtení a nastavování dat mezipaměti se" +" zadaným klíčem a časovým limitem." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3169,14 +3199,10 @@ msgstr "Řeší logiku nákupu jako firmy bez registrace." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Zpracovává stahování digitálního aktiva spojeného s objednávkou.\n" -"Tato funkce se pokusí obsloužit soubor digitálního aktiva umístěný v " -"adresáři úložiště projektu. Pokud soubor není nalezen, je vyvolána chyba " -"HTTP 404, která označuje, že zdroj není k dispozici." +"Tato funkce se pokusí obsloužit soubor digitálního aktiva umístěný v adresáři úložiště projektu. Pokud soubor není nalezen, je vyvolána chyba HTTP 404, která označuje, že zdroj není k dispozici." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3205,29 +3231,25 @@ msgstr "favicon nebyl nalezen" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Zpracovává požadavky na favicon webové stránky.\n" -"Tato funkce se pokusí obsloužit soubor favicon umístěný ve statickém " -"adresáři projektu. Pokud soubor favicon není nalezen, je vyvolána chyba HTTP " -"404, která označuje, že zdroj není k dispozici." +"Tato funkce se pokusí obsloužit soubor favicon umístěný ve statickém adresáři projektu. Pokud soubor favicon není nalezen, je vyvolána chyba HTTP 404, která označuje, že zdroj není k dispozici." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Přesměruje požadavek na indexovou stránku správce. Funkce zpracovává " "příchozí požadavky HTTP a přesměrovává je na indexovou stránku " -"administrátorského rozhraní Django. Pro zpracování přesměrování HTTP používá " -"funkci `redirect` Djanga." +"administrátorského rozhraní Django. Pro zpracování přesměrování HTTP používá" +" funkci `redirect` Djanga." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Vrací aktuální verzi systému eVibes." +msgid "Returns current version of the Schon. " +msgstr "Vrací aktuální verzi systému Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3240,23 +3262,24 @@ msgstr "Vrací vlastní proměnné pro Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definuje sadu pohledů pro správu operací souvisejících s Evibes. Třída " -"EvibesViewSet dědí z ModelViewSet a poskytuje funkce pro zpracování akcí a " -"operací s entitami Evibes. Zahrnuje podporu dynamických tříd serializátorů " -"na základě aktuální akce, přizpůsobitelných oprávnění a formátů vykreslování." +"Definuje sadu pohledů pro správu operací souvisejících s schon. Třída " +"SchonViewSet dědí z ModelViewSet a poskytuje funkce pro zpracování akcí a " +"operací s entitami schon. Zahrnuje podporu dynamických tříd serializátorů na" +" základě aktuální akce, přizpůsobitelných oprávnění a formátů vykreslování." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Představuje sadu pohledů pro správu objektů AttributeGroup. Zpracovává " "operace související s AttributeGroup, včetně filtrování, serializace a " @@ -3285,8 +3308,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Sada pohledů pro správu objektů AttributeValue. Tato sada pohledů poskytuje " "funkce pro výpis, načítání, vytváření, aktualizaci a mazání objektů " @@ -3325,7 +3348,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3333,10 +3356,10 @@ msgstr "" "Spravuje operace související s modelem `Product` v systému. Tato třída " "poskytuje sadu pohledů pro správu produktů, včetně jejich filtrování, " "serializace a operací s konkrétními instancemi. Rozšiřuje se z " -"`EvibesViewSet`, aby využívala společné funkce, a integruje se s rámcem " +"`SchonViewSet`, aby využívala společné funkce, a integruje se s rámcem " "Django REST pro operace RESTful API. Obsahuje metody pro načítání " -"podrobností o produktu, uplatňování oprávnění a přístup k související zpětné " -"vazbě produktu." +"podrobností o produktu, uplatňování oprávnění a přístup k související zpětné" +" vazbě produktu." #: engine/core/viewsets.py:605 msgid "" @@ -3357,8 +3380,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentace sady zobrazení, která zpracovává objekty zpětné vazby. Tato " @@ -3366,38 +3389,38 @@ msgstr "" "filtrování a načítání podrobností. Účelem této sady zobrazení je poskytnout " "různé serializátory pro různé akce a implementovat manipulaci s přístupnými " "objekty Zpětné vazby na základě oprávnění. Rozšiřuje základní třídu " -"`EvibesViewSet` a využívá systém filtrování Djanga pro dotazování na data." +"`SchonViewSet` a využívá systém filtrování Djanga pro dotazování na data." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet pro správu objednávek a souvisejících operací. Tato třída poskytuje " "funkce pro načítání, úpravu a správu objektů objednávek. Obsahuje různé " "koncové body pro zpracování operací s objednávkami, jako je přidávání nebo " "odebírání produktů, provádění nákupů pro registrované i neregistrované " -"uživatele a načítání nevyřízených objednávek aktuálního ověřeného uživatele. " -"Sada ViewSet používá několik serializátorů podle konkrétní prováděné akce a " -"podle toho vynucuje oprávnění při interakci s daty objednávek." +"uživatele a načítání nevyřízených objednávek aktuálního ověřeného uživatele." +" Sada ViewSet používá několik serializátorů podle konkrétní prováděné akce a" +" podle toho vynucuje oprávnění při interakci s daty objednávek." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Poskytuje sadu pohledů pro správu entit OrderProduct. Tato sada pohledů " "umožňuje operace CRUD a vlastní akce specifické pro model OrderProduct. " -"Zahrnuje filtrování, kontroly oprávnění a přepínání serializátoru na základě " -"požadované akce. Kromě toho poskytuje podrobnou akci pro zpracování zpětné " +"Zahrnuje filtrování, kontroly oprávnění a přepínání serializátoru na základě" +" požadované akce. Kromě toho poskytuje podrobnou akci pro zpracování zpětné " "vazby na instance OrderProduct" #: engine/core/viewsets.py:974 @@ -3424,8 +3447,8 @@ msgstr "Zpracovává operace související s údaji o zásobách v systému." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3446,9 +3469,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Tato třída poskytuje funkce sady pohledů pro správu objektů `Address`. Třída " -"AddressViewSet umožňuje operace CRUD, filtrování a vlastní akce související " -"s entitami adres. Obsahuje specializované chování pro různé metody HTTP, " +"Tato třída poskytuje funkce sady pohledů pro správu objektů `Address`. Třída" +" AddressViewSet umožňuje operace CRUD, filtrování a vlastní akce související" +" s entitami adres. Obsahuje specializované chování pro různé metody HTTP, " "přepisování serializátoru a zpracování oprávnění na základě kontextu " "požadavku." @@ -3468,5 +3491,5 @@ msgstr "" "Zpracovává operace související se značkami produktů v rámci aplikace. Tato " "třída poskytuje funkce pro načítání, filtrování a serializaci objektů " "Product Tag. Podporuje flexibilní filtrování podle konkrétních atributů " -"pomocí zadaného filtru backend a dynamicky používá různé serializátory podle " -"prováděné akce." +"pomocí zadaného filtru backend a dynamicky používá různé serializátory podle" +" prováděné akce." diff --git a/engine/core/locale/da_DK/LC_MESSAGES/django.mo b/engine/core/locale/da_DK/LC_MESSAGES/django.mo index 70d017af..68b1d296 100644 Binary files a/engine/core/locale/da_DK/LC_MESSAGES/django.mo and b/engine/core/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/da_DK/LC_MESSAGES/django.po b/engine/core/locale/da_DK/LC_MESSAGES/django.po index 66d3e9d7..6b094333 100644 --- a/engine/core/locale/da_DK/LC_MESSAGES/django.po +++ b/engine/core/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "Er aktiv" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Hvis det er sat til false, kan dette objekt ikke ses af brugere uden den " "nødvendige tilladelse." @@ -74,8 +75,8 @@ msgstr "Tidsstempler" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Aktivér valgt %(verbose_name_plural)s." +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Aktiver valgt %(verbose_name_plural)s" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -83,21 +84,21 @@ msgstr "Udvalgte varer er blevet aktiveret!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Deaktiver valgte %(verbose_name_plural)s." +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Deaktiver valgt %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Udvalgte varer er blevet deaktiveret!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attributværdi" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attributværdier" @@ -117,12 +118,12 @@ msgstr "Lager" msgid "stocks" msgstr "Aktier" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Bestil produkt" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Bestil produkter" @@ -130,7 +131,31 @@ msgstr "Bestil produkter" msgid "children" msgstr "Børn" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Har billeder" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Eksporter valgt %(verbose_name_plural)s til markedspladsers feeds" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "De valgte %(verbose_name_plural)s er markeret til eksport." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Udeluk %(verbose_name_plural)s fra markedspladsernes feeds" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Udvalgte %(verbose_name_plural)s er blevet forbudt at eksportere." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfig" @@ -154,7 +179,8 @@ msgstr "Leveret" msgid "canceled" msgstr "Annulleret" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Mislykket" @@ -205,8 +231,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Anvend kun en nøgle til at læse tilladte data fra cachen.\n" -"Anvend nøgle, data og timeout med autentificering for at skrive data til " -"cachen." +"Anvend nøgle, data og timeout med autentificering for at skrive data til cachen." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -271,7 +296,8 @@ msgstr "" "attributter" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende attributgruppe og gem ikke-" "redigerbare felter" @@ -324,10 +350,11 @@ msgstr "" "Omskriv en eksisterende attributværdi, der gemmer ikke-redigerbare filer" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" -"Omskriv nogle felter i en eksisterende attributværdi og gem ikke-redigerbare " -"felter" +"Omskriv nogle felter i en eksisterende attributværdi og gem ikke-redigerbare" +" felter" #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -377,16 +404,17 @@ msgstr "Liste over alle kategorier (enkel visning)" #: engine/core/docs/drf/viewsets.py:303 msgid "for non-staff users, only their own orders are returned." -msgstr "For ikke-ansatte brugere er det kun deres egne ordrer, der returneres." +msgstr "" +"For ikke-ansatte brugere er det kun deres egne ordrer, der returneres." #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Substringsøgning uden brug af store og små bogstaver på tværs af " -"human_readable_id, order_products.product.name og order_products.product." -"partnumber" +"human_readable_id, order_products.product.name og " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -418,13 +446,13 @@ msgstr "Filtrer efter ordrestatus (case-insensitive substring match)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Bestil efter en af: uuid, human_readable_id, user_email, user, status, " -"created, modified, buy_time, random. Præfiks med '-' for faldende rækkefølge " -"(f.eks. '-buy_time')." +"created, modified, buy_time, random. Præfiks med '-' for faldende rækkefølge" +" (f.eks. '-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -594,7 +622,8 @@ msgstr "Fjern et produkt fra ønskelisten" #: engine/core/docs/drf/viewsets.py:568 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -"Fjerner et produkt fra en ønskeliste ved hjælp af den angivne `product_uuid`." +"Fjerner et produkt fra en ønskeliste ved hjælp af den angivne " +"`product_uuid`." #: engine/core/docs/drf/viewsets.py:577 msgid "add many products to wishlist" @@ -621,28 +650,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrer efter et eller flere attributnavn/værdipar. \n" "- **Syntaks**: `attr_name=method-value[;attr2=method2-value2]...`.\n" -"- **Metoder** (standard er `icontains`, hvis udeladt): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- Værdiindtastning**: JSON forsøges først (så du kan sende lister/dikter), " -"`true`/`false` for booleans, heltal, floats; ellers behandles de som " -"strenge. \n" -"- **Base64**: præfiks med `b64-` for URL-sikker base64-kodning af den rå " -"værdi. \n" +"- **Metoder** (standard er `icontains`, hvis udeladt): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- Værdiindtastning**: JSON forsøges først (så du kan sende lister/dikter), `true`/`false` for booleans, heltal, floats; ellers behandles de som strenge. \n" +"- **Base64**: præfiks med `b64-` for URL-sikker base64-kodning af den rå værdi. \n" "Eksempler på dette: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." @@ -657,12 +676,10 @@ msgstr "(præcis) Produkt-UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Kommasepareret liste over felter, der skal sorteres efter. Præfiks med `-` " -"for faldende. \n" +"Kommasepareret liste over felter, der skal sorteres efter. Præfiks med `-` for faldende. \n" "**Tilladt:** uuid, vurdering, navn, slug, oprettet, ændret, pris, tilfældig" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -1212,11 +1229,11 @@ msgstr "Køb en ordre" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Send venligst attributterne som en streng formateret som attr1=værdi1," -"attr2=værdi2" +"Send venligst attributterne som en streng formateret som " +"attr1=værdi1,attr2=værdi2" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1235,9 +1252,9 @@ msgstr "Ordreprodukt {order_product_uuid} ikke fundet!" msgid "original address string provided by the user" msgstr "Original adressestreng leveret af brugeren" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1253,8 +1270,8 @@ msgstr "ElasticSearch - fungerer som en charme" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Egenskaber" @@ -1288,10 +1305,12 @@ msgstr "Markup-procentdel" #: engine/core/graphene/object_types.py:224 msgid "which attributes and values can be used for filtering this category." msgstr "" -"Hvilke attributter og værdier, der kan bruges til at filtrere denne kategori." +"Hvilke attributter og værdier, der kan bruges til at filtrere denne " +"kategori." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimums- og maksimumspriser for produkter i denne kategori, hvis de er " "tilgængelige." @@ -1332,7 +1351,7 @@ msgid "represents feedback from a user." msgstr "Repræsenterer feedback fra en bruger." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Meddelelser" @@ -1340,7 +1359,7 @@ msgstr "Meddelelser" msgid "download url for this order product if applicable" msgstr "Download url for dette ordreprodukt, hvis det er relevant" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1348,7 +1367,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "En liste over bestillingsprodukter i denne ordre" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Faktureringsadresse" @@ -1376,7 +1395,7 @@ msgstr "Er alle produkterne i ordren digitale?" msgid "transactions for this order" msgstr "Transaktioner for denne ordre" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Bestillinger" @@ -1393,7 +1412,7 @@ msgstr "Produktets billeder" msgid "category" msgstr "Kategori" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Tilbagemeldinger" @@ -1434,7 +1453,7 @@ msgstr "Produkter kun tilgængelige for personlige bestillinger" msgid "discount price" msgstr "Rabatpris" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produkter" @@ -1446,7 +1465,7 @@ msgstr "Promokoder" msgid "products on sale" msgstr "Produkter til salg" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Kampagner" @@ -1454,7 +1473,7 @@ msgstr "Kampagner" msgid "vendor" msgstr "Leverandør" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1462,11 +1481,11 @@ msgstr "Leverandør" msgid "product" msgstr "Produkt" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produkter på ønskelisten" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Ønskelister" @@ -1583,7 +1602,7 @@ msgstr "Overordnet attributgruppe" msgid "attribute group's name" msgstr "Attributgruppens navn" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attributgruppe" @@ -1599,12 +1618,12 @@ msgid "" msgstr "" "Repræsenterer en vendor-enhed, der er i stand til at lagre oplysninger om " "eksterne leverandører og deres interaktionskrav. Vendor-klassen bruges til " -"at definere og administrere oplysninger om en ekstern leverandør. Den gemmer " -"leverandørens navn, godkendelsesoplysninger, der kræves til kommunikation, " +"at definere og administrere oplysninger om en ekstern leverandør. Den gemmer" +" leverandørens navn, godkendelsesoplysninger, der kræves til kommunikation, " "og den procentvise markering, der anvendes på produkter, der hentes fra " "leverandøren. Denne model vedligeholder også yderligere metadata og " -"begrænsninger, hvilket gør den velegnet til brug i systemer, der interagerer " -"med tredjepartsleverandører." +"begrænsninger, hvilket gør den velegnet til brug i systemer, der interagerer" +" med tredjepartsleverandører." #: engine/core/models.py:122 msgid "stores credentials and endpoints required for vendor communication" @@ -1660,8 +1679,8 @@ msgstr "" "identificere produkter. ProductTag-klassen er designet til entydigt at " "identificere og klassificere produkter gennem en kombination af en intern " "tag-identifikator og et brugervenligt visningsnavn. Den understøtter " -"operationer, der eksporteres gennem mixins, og giver mulighed for tilpasning " -"af metadata til administrative formål." +"operationer, der eksporteres gennem mixins, og giver mulighed for tilpasning" +" af metadata til administrative formål." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1720,9 +1739,9 @@ msgstr "" "Klassen indeholder felter til metadata og visuel repræsentation, som " "fungerer som et fundament for kategorirelaterede funktioner. Denne klasse " "bruges typisk til at definere og administrere produktkategorier eller andre " -"lignende grupperinger i en applikation, så brugere eller administratorer kan " -"angive navn, beskrivelse og hierarki for kategorier samt tildele attributter " -"som billeder, tags eller prioritet." +"lignende grupperinger i en applikation, så brugere eller administratorer kan" +" angive navn, beskrivelse og hierarki for kategorier samt tildele " +"attributter som billeder, tags eller prioritet." #: engine/core/models.py:269 msgid "upload an image representing this category" @@ -1773,12 +1792,13 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Repræsenterer et brand-objekt i systemet. Denne klasse håndterer oplysninger " -"og attributter relateret til et brand, herunder dets navn, logoer, " -"beskrivelse, tilknyttede kategorier, en unik slug og prioriteret rækkefølge. " -"Den gør det muligt at organisere og repræsentere brand-relaterede data i " +"Repræsenterer et brand-objekt i systemet. Denne klasse håndterer oplysninger" +" og attributter relateret til et brand, herunder dets navn, logoer, " +"beskrivelse, tilknyttede kategorier, en unik slug og prioriteret rækkefølge." +" Den gør det muligt at organisere og repræsentere brand-relaterede data i " "applikationen." #: engine/core/models.py:456 @@ -1823,8 +1843,8 @@ msgstr "Kategorier" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1832,8 +1852,8 @@ msgid "" msgstr "" "Repræsenterer lageret af et produkt, der administreres i systemet. Denne " "klasse giver detaljer om forholdet mellem leverandører, produkter og deres " -"lageroplysninger samt lagerrelaterede egenskaber som pris, købspris, mængde, " -"SKU og digitale aktiver. Den er en del af lagerstyringssystemet for at " +"lageroplysninger samt lagerrelaterede egenskaber som pris, købspris, mængde," +" SKU og digitale aktiver. Den er en del af lagerstyringssystemet for at " "muliggøre sporing og evaluering af produkter, der er tilgængelige fra " "forskellige leverandører." @@ -1857,8 +1877,8 @@ msgstr "Salgspris" msgid "the product associated with this stock entry" msgstr "Det produkt, der er knyttet til denne lagerpost" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Tilknyttet produkt" @@ -1918,8 +1938,8 @@ msgstr "" "egenskaber til at hente vurderinger, antal tilbagemeldinger, pris, antal og " "samlede ordrer. Designet til brug i et system, der håndterer e-handel eller " "lagerstyring. Denne klasse interagerer med relaterede modeller (såsom " -"Category, Brand og ProductTag) og administrerer caching for hyppigt anvendte " -"egenskaber for at forbedre ydeevnen. Den bruges til at definere og " +"Category, Brand og ProductTag) og administrerer caching for hyppigt anvendte" +" egenskaber for at forbedre ydeevnen. Den bruges til at definere og " "manipulere produktdata og tilhørende oplysninger i en applikation." #: engine/core/models.py:595 @@ -1958,7 +1978,7 @@ msgstr "Giv produktet et klart identificerende navn" msgid "product name" msgstr "Produktets navn" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Tilføj en detaljeret beskrivelse af produktet" @@ -1978,108 +1998,117 @@ msgstr "Varenummer" msgid "stock keeping unit for this product" msgstr "Lagerbeholdning for dette produkt" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Om dette produkt skal eksporteres til markedspladser" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Eksport til markedspladser" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"Repræsenterer en attribut i systemet. Denne klasse bruges til at definere og " -"administrere attributter, som er data, der kan tilpasses, og som kan knyttes " -"til andre enheder. Attributter har tilknyttede kategorier, grupper, " +"Repræsenterer en attribut i systemet. Denne klasse bruges til at definere og" +" administrere attributter, som er data, der kan tilpasses, og som kan " +"knyttes til andre enheder. Attributter har tilknyttede kategorier, grupper, " "værdityper og navne. Modellen understøtter flere typer værdier, herunder " "string, integer, float, boolean, array og object. Det giver mulighed for " "dynamisk og fleksibel datastrukturering." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Gruppe af denne attribut" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Streng" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Heltal" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Flyder" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolsk" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objekt" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Type af attributtens værdi" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Værditype" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Navn på denne attribut" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Attributtens navn" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "er filtrerbar" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -"Hvilke attributter og værdier, der kan bruges til at filtrere denne kategori." +"Hvilke attributter og værdier, der kan bruges til at filtrere denne " +"kategori." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Repræsenterer en specifik værdi for en attribut, der er knyttet til et " "produkt. Den forbinder 'attributten' med en unik 'værdi', hvilket giver " "mulighed for bedre organisering og dynamisk repræsentation af " "produktegenskaber." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribut for denne værdi" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Det specifikke produkt, der er knyttet til denne attributs værdi" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Den specifikke værdi for denne attribut" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2089,46 +2118,46 @@ msgstr "" "specifikke produkter og bestemme deres visningsrækkefølge. Den indeholder " "også en tilgængelighedsfunktion med alternativ tekst til billederne." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Giv alternativ tekst til billedet af hensyn til tilgængeligheden" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Billedets alt-tekst" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Upload billedfilen til dette produkt" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Produktbillede" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Bestemmer den rækkefølge, billederne vises i" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Skærm-prioritet" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Det produkt, som dette billede repræsenterer" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Produktbilleder" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Repræsenterer en reklamekampagne for produkter med rabat. Denne klasse " "bruges til at definere og administrere kampagner, der tilbyder en " @@ -2137,39 +2166,39 @@ msgstr "" "relevante produkter. Den integreres med produktkataloget for at bestemme de " "berørte varer i kampagnen." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Procentvis rabat for de valgte produkter" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Rabatprocent" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Giv et unikt navn til denne kampagne" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Navn på kampagne" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Beskrivelse af kampagnen" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Vælg, hvilke produkter der er inkluderet i denne kampagne" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Inkluderede produkter" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Forfremmelse" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2182,30 +2211,30 @@ msgstr "" "produkter samt operationer til at tilføje og fjerne flere produkter på én " "gang." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produkter, som brugeren har markeret som ønskede" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Bruger, der ejer denne ønskeliste" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Ønskelistens ejer" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Ønskeliste" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Repræsenterer en dokumentarisk post, der er knyttet til et produkt. Denne " "klasse bruges til at gemme oplysninger om dokumentarfilm relateret til " @@ -2214,28 +2243,28 @@ msgstr "" "dokumentarfilerne. Den udvider funktionaliteten fra specifikke mixins og " "giver yderligere brugerdefinerede funktioner." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Dokumentarfilm" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Dokumentarfilm" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Uafklaret" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Repræsenterer en adresseenhed, der indeholder placeringsoplysninger og " "tilknytninger til en bruger. Indeholder funktionalitet til lagring af " @@ -2247,59 +2276,59 @@ msgstr "" "Klassen gør det også muligt at knytte en adresse til en bruger, hvilket " "letter personlig datahåndtering." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Adresselinje til kunden" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adresselinje" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Gade" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distrikt" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "By" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postnummer" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Land" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokaliseringspunkt (længdegrad, breddegrad)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Fuldt JSON-svar fra geokoderen for denne adresse" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Gemt JSON-svar fra geokodningstjenesten" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adresse" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresser" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2310,77 +2339,77 @@ msgid "" msgstr "" "Repræsenterer en kampagnekode, der kan bruges til rabatter, og styrer dens " "gyldighed, rabattype og anvendelse. PromoCode-klassen gemmer oplysninger om " -"en kampagnekode, herunder dens unikke identifikator, rabattegenskaber (beløb " -"eller procent), gyldighedsperiode, tilknyttet bruger (hvis nogen) og status " -"for dens brug. Den indeholder funktionalitet til at validere og anvende " +"en kampagnekode, herunder dens unikke identifikator, rabattegenskaber (beløb" +" eller procent), gyldighedsperiode, tilknyttet bruger (hvis nogen) og status" +" for dens brug. Den indeholder funktionalitet til at validere og anvende " "kampagnekoden på en ordre og samtidig sikre, at begrænsningerne er opfyldt." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unik kode, der bruges af en bruger til at indløse en rabat" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identifikator for kampagnekode" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Fast rabatbeløb anvendes, hvis procent ikke bruges" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Fast rabatbeløb" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentvis rabat, hvis det faste beløb ikke bruges" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Procentvis rabat" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Tidsstempel, når promokoden udløber" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Slut gyldighedstid" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Tidsstempel, hvorfra denne promokode er gyldig" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Start gyldighedstid" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Tidsstempel, hvor promokoden blev brugt, blank, hvis den ikke er brugt endnu" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Tidsstempel for brug" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Bruger tildelt denne promokode, hvis relevant" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Tildelt bruger" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Kampagnekode" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Kampagnekoder" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2388,21 +2417,21 @@ msgstr "" "Der skal kun defineres én type rabat (beløb eller procent), men ikke begge " "eller ingen af dem." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promokoden er allerede blevet brugt" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ugyldig rabattype for promokode {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2410,141 +2439,143 @@ msgstr "" "ordre i applikationen, herunder dens forskellige attributter såsom " "fakturerings- og forsendelsesoplysninger, status, tilknyttet bruger, " "notifikationer og relaterede operationer. Ordrer kan have tilknyttede " -"produkter, kampagner kan anvendes, adresser kan indstilles, og forsendelses- " -"eller faktureringsoplysninger kan opdateres. Ligeledes understøtter " +"produkter, kampagner kan anvendes, adresser kan indstilles, og forsendelses-" +" eller faktureringsoplysninger kan opdateres. Ligeledes understøtter " "funktionaliteten håndtering af produkterne i ordrens livscyklus." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Den faktureringsadresse, der bruges til denne ordre" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Valgfri kampagnekode anvendt på denne ordre" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Anvendt kampagnekode" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Den leveringsadresse, der er brugt til denne ordre" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Leveringsadresse" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Ordrens aktuelle status i dens livscyklus" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Bestillingsstatus" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -"JSON-struktur af meddelelser, der skal vises til brugerne, i admin UI bruges " -"tabelvisningen" +"JSON-struktur af meddelelser, der skal vises til brugerne, i admin UI bruges" +" tabelvisningen" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON-repræsentation af ordreattributter for denne ordre" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Den bruger, der har afgivet ordren" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Bruger" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Tidsstemplet for, hvornår ordren blev afsluttet" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Køb tid" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "En menneskeligt læsbar identifikator for ordren" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "menneskeligt læsbart ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Bestil" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "En bruger må kun have én afventende ordre ad gangen!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "Du kan ikke tilføje produkter til en ordre, der ikke er i gang." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Du kan ikke tilføje inaktive produkter til en ordre" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Du kan ikke tilføje flere produkter, end der er på lager" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende ordre." +"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende " +"ordre." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} findes ikke med forespørgslen <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promokode findes ikke" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "Du kan kun købe fysiske produkter med angivet leveringsadresse!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adressen findes ikke" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "Du kan ikke købe i øjeblikket, prøv venligst igen om et par minutter." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Ugyldig kraftværdi" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Du kan ikke købe en tom ordre!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" -"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende ordre." +"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende " +"ordre." -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "En bruger uden saldo kan ikke købe med saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Utilstrækkelige midler til at gennemføre ordren" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2552,14 +2583,14 @@ msgstr "" "du kan ikke købe uden registrering, angiv venligst følgende oplysninger: " "kundens navn, kundens e-mail, kundens telefonnummer" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ugyldig betalingsmetode: {payment_method} fra {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2574,32 +2605,34 @@ msgstr "" "bruger databasefelter til effektivt at modellere og administrere " "feedbackdata." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Brugernes kommentarer om deres oplevelse med produktet" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Kommentarer til feedback" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Henviser til det specifikke produkt i en ordre, som denne feedback handler om" +"Henviser til det specifikke produkt i en ordre, som denne feedback handler " +"om" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Relateret ordreprodukt" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Brugertildelt vurdering af produktet" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Produktvurdering" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2612,8 +2645,8 @@ msgid "" "Product models and stores a reference to them." msgstr "" "Repræsenterer produkter forbundet med ordrer og deres attributter. " -"OrderProduct-modellen vedligeholder oplysninger om et produkt, der er en del " -"af en ordre, herunder detaljer som købspris, antal, produktattributter og " +"OrderProduct-modellen vedligeholder oplysninger om et produkt, der er en del" +" af en ordre, herunder detaljer som købspris, antal, produktattributter og " "status. Den administrerer notifikationer til brugeren og administratorer og " "håndterer operationer som f.eks. at returnere produktsaldoen eller tilføje " "feedback. Modellen indeholder også metoder og egenskaber, der understøtter " @@ -2621,116 +2654,117 @@ msgstr "" "en download-URL for digitale produkter. Modellen integreres med Order- og " "Product-modellerne og gemmer en reference til dem." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Den pris, som kunden har betalt for dette produkt på købstidspunktet" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Købspris på bestillingstidspunktet" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Interne kommentarer til administratorer om dette bestilte produkt" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Interne kommentarer" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Notifikationer til brugere" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON-repræsentation af dette elements attributter" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Bestilte produktattributter" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Henvisning til den overordnede ordre, der indeholder dette produkt" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Forældreordre" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Det specifikke produkt, der er knyttet til denne ordrelinje" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Mængde af dette specifikke produkt i ordren" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Produktmængde" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Aktuel status for dette produkt i bestillingen" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status for produktlinje" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct skal have en tilknyttet ordre!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Forkert handling angivet for feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" -"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende ordre." +"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende " +"ordre." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Navn" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL til integrationen" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Legitimationsoplysninger til godkendelse" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Du kan kun have én standard CRM-udbyder" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM'er" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Ordrens CRM-link" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Bestillingernes CRM-links" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Repræsenterer downloadfunktionen for digitale aktiver, der er forbundet med " "ordrer. DigitalAssetDownload-klassen giver mulighed for at administrere og " @@ -2740,11 +2774,11 @@ msgstr "" "URL til download af aktivet, når den tilknyttede ordre har status som " "afsluttet." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Download" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Downloads" @@ -2945,8 +2979,7 @@ msgstr "Hej %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Tak for din ordre #%(order.pk)s! Vi er glade for at kunne informere dig om, " @@ -3060,8 +3093,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Tak for din bestilling! Vi er glade for at kunne bekræfte dit køb. Nedenfor " @@ -3132,7 +3164,8 @@ msgstr "Parameteren NOMINATIM_URL skal være konfigureret!" #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -"Billedets dimensioner bør ikke overstige w{max_width} x h{max_height} pixels." +"Billedets dimensioner bør ikke overstige w{max_width} x h{max_height} " +"pixels." #: engine/core/views.py:104 msgid "" @@ -3193,14 +3226,10 @@ msgstr "Håndterer logikken i at købe som en virksomhed uden registrering." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Håndterer download af et digitalt aktiv, der er knyttet til en ordre.\n" -"Denne funktion forsøger at betjene den digitale aktivfil, der ligger i " -"projektets lagermappe. Hvis filen ikke findes, udløses en HTTP 404-fejl som " -"tegn på, at ressourcen ikke er tilgængelig." +"Denne funktion forsøger at betjene den digitale aktivfil, der ligger i projektets lagermappe. Hvis filen ikke findes, udløses en HTTP 404-fejl som tegn på, at ressourcen ikke er tilgængelig." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3229,19 +3258,15 @@ msgstr "Favicon ikke fundet" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Håndterer anmodninger om et websteds favicon.\n" -"Denne funktion forsøger at servere favicon-filen, der ligger i projektets " -"statiske mappe. Hvis favicon-filen ikke findes, udløses en HTTP 404-fejl for " -"at angive, at ressourcen ikke er tilgængelig." +"Denne funktion forsøger at servere favicon-filen, der ligger i projektets statiske mappe. Hvis favicon-filen ikke findes, udløses en HTTP 404-fejl for at angive, at ressourcen ikke er tilgængelig." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Omdirigerer anmodningen til administratorens indeksside. Funktionen " @@ -3250,8 +3275,8 @@ msgstr "" "til at håndtere HTTP-omdirigeringen." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Returnerer den aktuelle version af eVibes." +msgid "Returns current version of the Schon. " +msgstr "Returnerer den aktuelle version af Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3264,24 +3289,25 @@ msgstr "Returnerer brugerdefinerede variabler til Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definerer et visningssæt til håndtering af Evibes-relaterede operationer. " -"EvibesViewSet-klassen arver fra ModelViewSet og giver funktionalitet til " -"håndtering af handlinger og operationer på Evibes-enheder. Den omfatter " +"Definerer et visningssæt til håndtering af schon-relaterede operationer. " +"SchonViewSet-klassen arver fra ModelViewSet og giver funktionalitet til " +"håndtering af handlinger og operationer på schon-enheder. Den omfatter " "understøttelse af dynamiske serializer-klasser baseret på den aktuelle " "handling, tilladelser, der kan tilpasses, og gengivelsesformater." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Repræsenterer et visningssæt til håndtering af AttributeGroup-objekter. " "Håndterer operationer relateret til AttributeGroup, herunder filtrering, " @@ -3310,11 +3336,11 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Et visningssæt til håndtering af AttributeValue-objekter. Dette viewet giver " -"funktionalitet til at liste, hente, oprette, opdatere og slette " +"Et visningssæt til håndtering af AttributeValue-objekter. Dette viewet giver" +" funktionalitet til at liste, hente, oprette, opdatere og slette " "AttributeValue-objekter. Det integreres med Django REST Framework's viewset-" "mekanismer og bruger passende serializers til forskellige handlinger. " "Filtreringsfunktioner leveres gennem DjangoFilterBackend." @@ -3340,8 +3366,8 @@ msgid "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"Repræsenterer et visningssæt til håndtering af Brand-instanser. Denne klasse " -"giver funktionalitet til at forespørge, filtrere og serialisere Brand-" +"Repræsenterer et visningssæt til håndtering af Brand-instanser. Denne klasse" +" giver funktionalitet til at forespørge, filtrere og serialisere Brand-" "objekter. Den bruger Djangos ViewSet-rammeværk til at forenkle " "implementeringen af API-slutpunkter for Brand-objekter." @@ -3350,7 +3376,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3358,7 +3384,7 @@ msgstr "" "Håndterer operationer relateret til `Product`-modellen i systemet. Denne " "klasse giver et visningssæt til håndtering af produkter, herunder deres " "filtrering, serialisering og operationer på specifikke forekomster. Den " -"udvider fra `EvibesViewSet` for at bruge fælles funktionalitet og integrerer " +"udvider fra `SchonViewSet` for at bruge fælles funktionalitet og integrerer " "med Django REST-frameworket til RESTful API-operationer. Indeholder metoder " "til at hente produktoplysninger, anvende tilladelser og få adgang til " "relateret feedback om et produkt." @@ -3371,9 +3397,9 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Repræsenterer et visningssæt til håndtering af Vendor-objekter. Dette viewet " -"gør det muligt at hente, filtrere og serialisere Vendor-data. Det definerer " -"queryset, filterkonfigurationer og serializer-klasser, der bruges til at " +"Repræsenterer et visningssæt til håndtering af Vendor-objekter. Dette viewet" +" gør det muligt at hente, filtrere og serialisere Vendor-data. Det definerer" +" queryset, filterkonfigurationer og serializer-klasser, der bruges til at " "håndtere forskellige handlinger. Formålet med denne klasse er at give " "strømlinet adgang til Vendor-relaterede ressourcer gennem Django REST-" "frameworket." @@ -3383,16 +3409,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Repræsentation af et visningssæt, der håndterer feedback-objekter. Denne " -"klasse håndterer handlinger relateret til feedback-objekter, herunder liste, " -"filtrering og hentning af detaljer. Formålet med dette visningssæt er at " +"klasse håndterer handlinger relateret til feedback-objekter, herunder liste," +" filtrering og hentning af detaljer. Formålet med dette visningssæt er at " "levere forskellige serializers til forskellige handlinger og implementere " -"tilladelsesbaseret håndtering af tilgængelige feedback-objekter. Det udvider " -"basen `EvibesViewSet` og gør brug af Djangos filtreringssystem til at " +"tilladelsesbaseret håndtering af tilgængelige feedback-objekter. Det udvider" +" basen `SchonViewSet` og gør brug af Djangos filtreringssystem til at " "forespørge på data." #: engine/core/viewsets.py:652 @@ -3400,14 +3426,14 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet til håndtering af ordrer og relaterede operationer. Denne klasse " -"indeholder funktionalitet til at hente, ændre og administrere ordreobjekter. " -"Den indeholder forskellige endpoints til håndtering af ordreoperationer " +"indeholder funktionalitet til at hente, ændre og administrere ordreobjekter." +" Den indeholder forskellige endpoints til håndtering af ordreoperationer " "såsom tilføjelse eller fjernelse af produkter, udførelse af køb for " "registrerede såvel som uregistrerede brugere og hentning af den aktuelle " "godkendte brugers afventende ordrer. ViewSet bruger flere serializers " @@ -3418,13 +3444,13 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Indeholder et visningssæt til håndtering af OrderProduct-enheder. Dette " -"visningssæt muliggør CRUD-operationer og brugerdefinerede handlinger, der er " -"specifikke for OrderProduct-modellen. Det omfatter filtrering, kontrol af " +"visningssæt muliggør CRUD-operationer og brugerdefinerede handlinger, der er" +" specifikke for OrderProduct-modellen. Det omfatter filtrering, kontrol af " "tilladelser og skift af serializer baseret på den ønskede handling. " "Derudover indeholder det en detaljeret handling til håndtering af feedback " "på OrderProduct-instanser." @@ -3453,8 +3479,8 @@ msgstr "Håndterer operationer relateret til lagerdata i systemet." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3475,11 +3501,11 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Denne klasse giver viewset-funktionalitet til håndtering af `Address`-" -"objekter. AddressViewSet-klassen muliggør CRUD-operationer, filtrering og " -"brugerdefinerede handlinger relateret til adresseenheder. Den omfatter " -"specialiseret adfærd for forskellige HTTP-metoder, tilsidesættelse af " -"serializer og håndtering af tilladelser baseret på anmodningskonteksten." +"Denne klasse giver viewset-funktionalitet til håndtering af " +"`Address`-objekter. AddressViewSet-klassen muliggør CRUD-operationer, " +"filtrering og brugerdefinerede handlinger relateret til adresseenheder. Den " +"omfatter specialiseret adfærd for forskellige HTTP-metoder, tilsidesættelse " +"af serializer og håndtering af tilladelser baseret på anmodningskonteksten." #: engine/core/viewsets.py:1254 #, python-brace-format diff --git a/engine/core/locale/de_DE/LC_MESSAGES/django.mo b/engine/core/locale/de_DE/LC_MESSAGES/django.mo index c227907e..f98b62dc 100644 Binary files a/engine/core/locale/de_DE/LC_MESSAGES/django.mo and b/engine/core/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/de_DE/LC_MESSAGES/django.po b/engine/core/locale/de_DE/LC_MESSAGES/django.po index 7f727012..aa0c0557 100644 --- a/engine/core/locale/de_DE/LC_MESSAGES/django.po +++ b/engine/core/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Ist aktiv" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Wenn auf false gesetzt, kann dieses Objekt von Benutzern ohne die " "erforderliche Berechtigung nicht gesehen werden." @@ -76,8 +77,8 @@ msgstr "Zeitstempel" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Ausgewählte %(verbose_name_plural)s aktivieren" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Ausgewähltes %(verbose_name_plural)s aktivieren" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -85,7 +86,7 @@ msgstr "Ausgewählte Artikel wurden aktiviert!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "Ausgewählte %(verbose_name_plural)s deaktivieren" #: engine/core/admin.py:184 @@ -93,13 +94,13 @@ msgid "selected items have been deactivated." msgstr "Ausgewählte Artikel wurden deaktiviert!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attribut Wert" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attribut Werte" @@ -119,12 +120,12 @@ msgstr "Lagerbestand" msgid "stocks" msgstr "Bestände" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Produkt bestellen" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Produkte bestellen" @@ -132,7 +133,32 @@ msgstr "Produkte bestellen" msgid "children" msgstr "Kinder" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Hat Bilder" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" +"Ausgewählte %(verbose_name_plural)s in die Feeds der Marktplätze exportieren" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Ausgewählte %(verbose_name_plural)s wurden für den Export markiert." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "%(verbose_name_plural)s aus den Feeds der Marktplätze verbannen" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Ausgewählte %(verbose_name_plural)s wurden für den Export gesperrt." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfigurieren Sie" @@ -156,7 +182,8 @@ msgstr "Geliefert" msgid "canceled" msgstr "Abgesagt" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Gescheitert" @@ -207,10 +234,8 @@ msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." msgstr "" -"Wenden Sie nur einen Schlüssel an, um erlaubte Daten aus dem Cache zu " -"lesen.\n" -"Schlüssel, Daten und Timeout mit Authentifizierung anwenden, um Daten in den " -"Cache zu schreiben." +"Wenden Sie nur einen Schlüssel an, um erlaubte Daten aus dem Cache zu lesen.\n" +"Schlüssel, Daten und Timeout mit Authentifizierung anwenden, um Daten in den Cache zu schreiben." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -276,7 +301,8 @@ msgstr "" "Editierbarkeit" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Umschreiben einiger Felder einer bestehenden Attributgruppe, wobei nicht " "editierbare Felder gespeichert werden" @@ -306,8 +332,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:156 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:166 msgid "list all attribute values (simple view)" @@ -332,7 +358,8 @@ msgstr "" "Editierbarkeit" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Umschreiben einiger Felder eines vorhandenen Attributwerts, wobei nicht " "bearbeitbare Daten gespeichert werden" @@ -365,8 +392,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:270 engine/core/docs/drf/viewsets.py:272 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:280 engine/core/docs/drf/viewsets.py:757 #: engine/core/docs/drf/viewsets.py:1046 @@ -391,12 +418,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Groß- und Kleinschreibung unempfindliche Teilstringsuche über " -"human_readable_id, order_products.product.name und order_products.product." -"partnumber" +"human_readable_id, order_products.product.name und " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -432,9 +459,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Sortierung nach einem von: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Präfix mit '-' für absteigend " @@ -468,8 +495,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:403 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:410 msgid "purchase an order" @@ -502,7 +529,8 @@ msgstr "eine Bestellung kaufen, ohne ein Konto anzulegen" #: engine/core/docs/drf/viewsets.py:439 msgid "finalizes the order purchase for a non-registered user." msgstr "" -"schließt den Kauf einer Bestellung für einen nicht registrierten Benutzer ab." +"schließt den Kauf einer Bestellung für einen nicht registrierten Benutzer " +"ab." #: engine/core/docs/drf/viewsets.py:450 msgid "add product to order" @@ -519,8 +547,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:461 msgid "add a list of products to order, quantities will not count" msgstr "" -"Fügen Sie eine Liste der zu bestellenden Produkte hinzu, Mengen werden nicht " -"gezählt" +"Fügen Sie eine Liste der zu bestellenden Produkte hinzu, Mengen werden nicht" +" gezählt" #: engine/core/docs/drf/viewsets.py:463 msgid "" @@ -589,8 +617,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:537 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:544 msgid "retrieve current pending wishlist of a user" @@ -599,8 +627,8 @@ msgstr "Abruf der aktuellen Wunschliste eines Benutzers" #: engine/core/docs/drf/viewsets.py:545 msgid "retrieves a current pending wishlist of an authenticated user" msgstr "" -"ruft eine aktuelle ausstehende Wunschliste eines authentifizierten Benutzers " -"ab" +"ruft eine aktuelle ausstehende Wunschliste eines authentifizierten Benutzers" +" ab" #: engine/core/docs/drf/viewsets.py:555 msgid "add product to wishlist" @@ -647,29 +675,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtern Sie nach einem oder mehreren Attributnamen/Wertpaaren. \n" "- **Syntax**: `attr_name=Methode-Wert[;attr2=Methode2-Wert2]...`\n" -"- **Methoden** (Standardwert ist \"icontains\", wenn nicht angegeben): " -"`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, " -"`istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, " -"`gt`, `gte`, `in`\n" -"- **Wert-Typisierung**: JSON wird zuerst versucht (damit man Listen/Dicts " -"übergeben kann), `true`/`false` für Booleans, Integers, Floats; ansonsten " -"als String behandelt. \n" -"- Base64**: Präfix \"b64-\" für URL-sichere Base64-Kodierung des " -"Rohwertes. \n" +"- **Methoden** (Standardwert ist \"icontains\", wenn nicht angegeben): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Wert-Typisierung**: JSON wird zuerst versucht (damit man Listen/Dicts übergeben kann), `true`/`false` für Booleans, Integers, Floats; ansonsten als String behandelt. \n" +"- Base64**: Präfix \"b64-\" für URL-sichere Base64-Kodierung des Rohwertes. \n" "Beispiele: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -684,12 +701,10 @@ msgstr "(genaue) Produkt-UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Durch Kommata getrennte Liste der Felder, nach denen sortiert werden soll. " -"Präfix mit \"-\" für absteigend. \n" +"Durch Kommata getrennte Liste der Felder, nach denen sortiert werden soll. Präfix mit \"-\" für absteigend. \n" "**Erlaubt:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -709,8 +724,8 @@ msgstr "Ein Produkt erstellen" #: engine/core/docs/drf/viewsets.py:677 engine/core/docs/drf/viewsets.py:678 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" -"Umschreiben eines bestehenden Produkts unter Beibehaltung nicht editierbarer " -"Felder" +"Umschreiben eines bestehenden Produkts unter Beibehaltung nicht editierbarer" +" Felder" #: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:700 msgid "" @@ -762,10 +777,10 @@ msgstr "Autovervollständigung der Adresseingabe" #: engine/core/docs/drf/viewsets.py:848 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -"docker compose exec app poetry run python manage.py deepl_translate -l en-gb " -"-l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " -"it-it -l ja-jp -l kk-kz -l nl-nl -l pl -l pt-br -l ro-ro -l ru-ru -l zh-hans " -"-a core -a geo -a payments -a vibes_auth -a blog" +"docker compose exec app poetry run python manage.py deepl_translate -l en-gb" +" -l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " +"it-it -l ja-jp -l kk-kz -l nl-nl -l pl -l pt-br -l ro-ro -l ru-ru -l zh-hans" +" -a core -a geo -a payments -a vibes_auth -a blog" #: engine/core/docs/drf/viewsets.py:855 msgid "limit the results amount, 1 < limit < 10, default: 5" @@ -795,8 +810,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:909 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:919 msgid "list all order–product relations (simple view)" @@ -855,8 +870,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1039 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1064 msgid "list all vendors (simple view)" @@ -882,8 +897,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1102 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1112 msgid "list all product images (simple view)" @@ -909,8 +924,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1165 msgid "list all promo codes (simple view)" @@ -936,8 +951,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1203 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1213 msgid "list all promotions (simple view)" @@ -963,8 +978,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1261 msgid "list all stocks (simple view)" @@ -990,8 +1005,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1297 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1308 msgid "list all product tags (simple view)" @@ -1017,8 +1032,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/elasticsearch/__init__.py:128 #: engine/core/elasticsearch/__init__.py:629 @@ -1101,8 +1116,8 @@ msgstr "SKU" #: engine/core/filters.py:212 msgid "there must be a category_uuid to use include_subcategories flag" msgstr "" -"Es muss eine category_uuid vorhanden sein, um das Flag include_subcategories " -"zu verwenden" +"Es muss eine category_uuid vorhanden sein, um das Flag include_subcategories" +" zu verwenden" #: engine/core/filters.py:398 msgid "Search (ID, product name or part number)" @@ -1221,7 +1236,8 @@ msgstr "Aktion muss entweder \"Hinzufügen\" oder \"Entfernen\" sein!" #: engine/core/graphene/mutations.py:312 msgid "perform an action on a list of products in the wishlist" -msgstr "Ausführen einer Aktion für eine Liste von Produkten in der Wunschliste" +msgstr "" +"Ausführen einer Aktion für eine Liste von Produkten in der Wunschliste" #: engine/core/graphene/mutations.py:330 msgid "please provide wishlist_uuid value" @@ -1256,8 +1272,8 @@ msgstr "Eine Bestellung kaufen" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Bitte senden Sie die Attribute als String im Format attr1=wert1,attr2=wert2" @@ -1279,9 +1295,9 @@ msgstr "Bestellprodukt {order_product_uuid} nicht gefunden!" msgid "original address string provided by the user" msgstr "Vom Benutzer angegebene Originaladresse" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1297,8 +1313,8 @@ msgstr "ElasticSearch - funktioniert wie ein Zauber" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attribute" @@ -1336,9 +1352,11 @@ msgstr "" "verwendet werden." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" -"Mindest- und Höchstpreise für Produkte in dieser Kategorie, sofern verfügbar." +"Mindest- und Höchstpreise für Produkte in dieser Kategorie, sofern " +"verfügbar." #: engine/core/graphene/object_types.py:234 msgid "tags for this category" @@ -1375,7 +1393,7 @@ msgid "represents feedback from a user." msgstr "Stellt das Feedback eines Benutzers dar." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Benachrichtigungen" @@ -1383,7 +1401,7 @@ msgstr "Benachrichtigungen" msgid "download url for this order product if applicable" msgstr "Download-Url für dieses Bestellprodukt, falls zutreffend" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Rückmeldung" @@ -1391,7 +1409,7 @@ msgstr "Rückmeldung" msgid "a list of order products in this order" msgstr "Eine Liste der bestellten Produkte in dieser Reihenfolge" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Rechnungsadresse" @@ -1419,7 +1437,7 @@ msgstr "Sind alle Produkte in der Bestellung digital" msgid "transactions for this order" msgstr "Vorgänge für diesen Auftrag" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Bestellungen" @@ -1436,7 +1454,7 @@ msgstr "Bilder des Produkts" msgid "category" msgstr "Kategorie" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Rückmeldungen" @@ -1477,7 +1495,7 @@ msgstr "Produkte nur für persönliche Bestellungen verfügbar" msgid "discount price" msgstr "Rabattierter Preis" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produkte" @@ -1489,7 +1507,7 @@ msgstr "Promocodes" msgid "products on sale" msgstr "Zum Verkauf stehende Produkte" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Werbeaktionen" @@ -1497,7 +1515,7 @@ msgstr "Werbeaktionen" msgid "vendor" msgstr "Anbieter" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1505,11 +1523,11 @@ msgstr "Anbieter" msgid "product" msgstr "Produkt" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Auf dem Wunschzettel stehende Produkte" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Wunschzettel" @@ -1608,11 +1626,11 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"Stellt eine Gruppe von Attributen dar, die hierarchisch aufgebaut sein kann. " -"Diese Klasse wird verwendet, um Attributgruppen zu verwalten und zu " +"Stellt eine Gruppe von Attributen dar, die hierarchisch aufgebaut sein kann." +" Diese Klasse wird verwendet, um Attributgruppen zu verwalten und zu " "organisieren. Eine Attributgruppe kann eine übergeordnete Gruppe haben, die " -"eine hierarchische Struktur bildet. Dies kann nützlich sein, um Attribute in " -"einem komplexen System effektiver zu kategorisieren und zu verwalten." +"eine hierarchische Struktur bildet. Dies kann nützlich sein, um Attribute in" +" einem komplexen System effektiver zu kategorisieren und zu verwalten." #: engine/core/models.py:88 msgid "parent of this group" @@ -1626,7 +1644,7 @@ msgstr "Übergeordnete Attributgruppe" msgid "attribute group's name" msgstr "Name der Attributgruppe" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attribut-Gruppe" @@ -1642,9 +1660,9 @@ msgid "" msgstr "" "Stellt eine Verkäuferentität dar, die Informationen über externe Verkäufer " "und deren Interaktionsanforderungen speichern kann. Die Klasse Vendor wird " -"zur Definition und Verwaltung von Informationen über einen externen Anbieter " -"verwendet. Sie speichert den Namen des Anbieters, die für die Kommunikation " -"erforderlichen Authentifizierungsdaten und den prozentualen Aufschlag, der " +"zur Definition und Verwaltung von Informationen über einen externen Anbieter" +" verwendet. Sie speichert den Namen des Anbieters, die für die Kommunikation" +" erforderlichen Authentifizierungsdaten und den prozentualen Aufschlag, der " "auf die vom Anbieter abgerufenen Produkte angewendet wird. Dieses Modell " "verwaltet auch zusätzliche Metadaten und Einschränkungen, wodurch es sich " "für die Verwendung in Systemen eignet, die mit Drittanbietern interagieren." @@ -1701,10 +1719,10 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"Stellt ein Produkt-Tag dar, das zur Klassifizierung oder Identifizierung von " -"Produkten verwendet wird. Die Klasse ProductTag dient der eindeutigen " -"Identifizierung und Klassifizierung von Produkten durch eine Kombination aus " -"einem internen Tag-Bezeichner und einem benutzerfreundlichen Anzeigenamen. " +"Stellt ein Produkt-Tag dar, das zur Klassifizierung oder Identifizierung von" +" Produkten verwendet wird. Die Klasse ProductTag dient der eindeutigen " +"Identifizierung und Klassifizierung von Produkten durch eine Kombination aus" +" einem internen Tag-Bezeichner und einem benutzerfreundlichen Anzeigenamen. " "Sie unterstützt Operationen, die über Mixins exportiert werden, und " "ermöglicht die Anpassung von Metadaten für Verwaltungszwecke." @@ -1765,9 +1783,9 @@ msgstr "" "Beziehungen unterstützen. Die Klasse enthält Felder für Metadaten und " "visuelle Darstellung, die als Grundlage für kategoriebezogene Funktionen " "dienen. Diese Klasse wird in der Regel verwendet, um Produktkategorien oder " -"andere ähnliche Gruppierungen innerhalb einer Anwendung zu definieren und zu " -"verwalten. Sie ermöglicht es Benutzern oder Administratoren, den Namen, die " -"Beschreibung und die Hierarchie von Kategorien festzulegen sowie Attribute " +"andere ähnliche Gruppierungen innerhalb einer Anwendung zu definieren und zu" +" verwalten. Sie ermöglicht es Benutzern oder Administratoren, den Namen, die" +" Beschreibung und die Hierarchie von Kategorien festzulegen sowie Attribute " "wie Bilder, Tags oder Priorität zuzuweisen." #: engine/core/models.py:269 @@ -1821,7 +1839,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Stellt ein Markenobjekt im System dar. Diese Klasse verwaltet Informationen " "und Attribute in Bezug auf eine Marke, einschließlich ihres Namens, Logos, " @@ -1872,16 +1891,16 @@ msgstr "Kategorien" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" "Stellt den Bestand eines im System verwalteten Produkts dar. Diese Klasse " -"liefert Details über die Beziehung zwischen Lieferanten, Produkten und deren " -"Bestandsinformationen sowie bestandsbezogene Eigenschaften wie Preis, " +"liefert Details über die Beziehung zwischen Lieferanten, Produkten und deren" +" Bestandsinformationen sowie bestandsbezogene Eigenschaften wie Preis, " "Einkaufspreis, Menge, SKU und digitale Assets. Sie ist Teil des " "Bestandsverwaltungssystems, um die Nachverfolgung und Bewertung der von " "verschiedenen Anbietern verfügbaren Produkte zu ermöglichen." @@ -1906,8 +1925,8 @@ msgstr "Verkaufspreis" msgid "the product associated with this stock entry" msgstr "Das mit diesem Bestandseintrag verbundene Produkt" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Zugehöriges Produkt" @@ -1937,7 +1956,8 @@ msgstr "SKU des Verkäufers" #: engine/core/models.py:564 msgid "digital file associated with this stock if applicable" -msgstr "Digitale Datei, die mit diesem Bestand verbunden ist, falls zutreffend" +msgstr "" +"Digitale Datei, die mit diesem Bestand verbunden ist, falls zutreffend" #: engine/core/models.py:565 msgid "digital file" @@ -1965,12 +1985,12 @@ msgstr "" "Stellt ein Produkt mit Attributen wie Kategorie, Marke, Tags, digitalem " "Status, Name, Beschreibung, Teilenummer und Slug dar. Bietet verwandte " "Hilfseigenschaften zum Abrufen von Bewertungen, Feedback-Zahlen, Preis, " -"Menge und Gesamtbestellungen. Konzipiert für die Verwendung in einem System, " -"das den elektronischen Handel oder die Bestandsverwaltung verwaltet. Diese " +"Menge und Gesamtbestellungen. Konzipiert für die Verwendung in einem System," +" das den elektronischen Handel oder die Bestandsverwaltung verwaltet. Diese " "Klasse interagiert mit verwandten Modellen (wie Category, Brand und " -"ProductTag) und verwaltet die Zwischenspeicherung von Eigenschaften, auf die " -"häufig zugegriffen wird, um die Leistung zu verbessern. Sie wird verwendet, " -"um Produktdaten und die damit verbundenen Informationen innerhalb einer " +"ProductTag) und verwaltet die Zwischenspeicherung von Eigenschaften, auf die" +" häufig zugegriffen wird, um die Leistung zu verbessern. Sie wird verwendet," +" um Produktdaten und die damit verbundenen Informationen innerhalb einer " "Anwendung zu definieren und zu manipulieren." #: engine/core/models.py:595 @@ -2005,13 +2025,14 @@ msgstr "ist das Produkt aktualisierbar" #: engine/core/models.py:631 msgid "provide a clear identifying name for the product" -msgstr "Geben Sie einen eindeutigen Namen zur Identifizierung des Produkts an." +msgstr "" +"Geben Sie einen eindeutigen Namen zur Identifizierung des Produkts an." #: engine/core/models.py:632 msgid "product name" msgstr "Name des Produkts" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Fügen Sie eine detaillierte Beschreibung des Produkts hinzu" @@ -2031,204 +2052,212 @@ msgstr "Teilnummer" msgid "stock keeping unit for this product" msgstr "Lagerhaltende Einheit für dieses Produkt" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Ob dieses Produkt auf Marktplätze exportiert werden soll" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Exportieren zu Marktplätzen" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"Stellt ein Attribut im System dar. Diese Klasse wird verwendet, um Attribute " -"zu definieren und zu verwalten. Dabei handelt es sich um anpassbare " +"Stellt ein Attribut im System dar. Diese Klasse wird verwendet, um Attribute" +" zu definieren und zu verwalten. Dabei handelt es sich um anpassbare " "Datenelemente, die mit anderen Entitäten verknüpft werden können. Attribute " "haben zugehörige Kategorien, Gruppen, Werttypen und Namen. Das Modell " "unterstützt mehrere Wertetypen, darunter String, Integer, Float, Boolean, " "Array und Object. Dies ermöglicht eine dynamische und flexible " "Datenstrukturierung." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Gruppe dieses Attributs" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Zeichenfolge" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Integer" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Schwimmer" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolesche" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objekt" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Typ des Attributwerts" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Werttyp" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Name dieses Attributs" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Name des Attributs" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "ist filterbar" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Welche Attribute und Werte können für die Filterung dieser Kategorie " "verwendet werden." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Stellt einen spezifischen Wert für ein Attribut dar, das mit einem Produkt " "verknüpft ist. Es verknüpft das \"Attribut\" mit einem eindeutigen \"Wert\" " "und ermöglicht so eine bessere Organisation und dynamische Darstellung der " "Produktmerkmale." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribut dieses Wertes" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "" "Das spezifische Produkt, das mit dem Wert dieses Attributs verbunden ist" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Der spezifische Wert für dieses Attribut" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Stellt ein Produktbild dar, das mit einem Produkt im System verbunden ist. " "Diese Klasse dient der Verwaltung von Bildern für Produkte, einschließlich " "der Funktionen zum Hochladen von Bilddateien, der Zuordnung zu bestimmten " -"Produkten und der Festlegung ihrer Anzeigereihenfolge. Sie enthält auch eine " -"Funktion zur Barrierefreiheit mit alternativem Text für die Bilder." +"Produkten und der Festlegung ihrer Anzeigereihenfolge. Sie enthält auch eine" +" Funktion zur Barrierefreiheit mit alternativem Text für die Bilder." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" "Geben Sie einen alternativen Text für das Bild an, um die Barrierefreiheit " "zu gewährleisten." -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Bild-Alt-Text" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Laden Sie die Bilddatei für dieses Produkt hoch" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Produktbild" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Legt die Reihenfolge fest, in der die Bilder angezeigt werden" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Priorität anzeigen" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Das Produkt, das dieses Bild darstellt" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Produktbilder" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Repräsentiert eine Werbekampagne für Produkte mit einem Rabatt. Diese Klasse " -"wird verwendet, um Werbekampagnen zu definieren und zu verwalten, die einen " -"prozentualen Rabatt für Produkte anbieten. Die Klasse enthält Attribute zum " -"Festlegen des Rabattsatzes, zum Bereitstellen von Details über die " +"Repräsentiert eine Werbekampagne für Produkte mit einem Rabatt. Diese Klasse" +" wird verwendet, um Werbekampagnen zu definieren und zu verwalten, die einen" +" prozentualen Rabatt für Produkte anbieten. Die Klasse enthält Attribute zum" +" Festlegen des Rabattsatzes, zum Bereitstellen von Details über die " "Werbeaktion und zum Verknüpfen der Aktion mit den entsprechenden Produkten. " -"Sie ist mit dem Produktkatalog integriert, um die betroffenen Artikel in der " -"Kampagne zu bestimmen." +"Sie ist mit dem Produktkatalog integriert, um die betroffenen Artikel in der" +" Kampagne zu bestimmen." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Prozentualer Rabatt für die ausgewählten Produkte" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Prozentsatz der Ermäßigung" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Geben Sie einen eindeutigen Namen für diese Aktion an" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Name der Aktion" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Promotion description" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Wählen Sie aus, welche Produkte in dieser Aktion enthalten sind" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Enthaltene Produkte" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Förderung" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2238,64 +2267,64 @@ msgstr "" "Stellt die Wunschliste eines Benutzers zum Speichern und Verwalten " "gewünschter Produkte dar. Die Klasse bietet Funktionen zur Verwaltung einer " "Sammlung von Produkten und unterstützt Vorgänge wie das Hinzufügen und " -"Entfernen von Produkten sowie das Hinzufügen und Entfernen mehrerer Produkte " -"gleichzeitig." +"Entfernen von Produkten sowie das Hinzufügen und Entfernen mehrerer Produkte" +" gleichzeitig." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produkte, die der Benutzer als gewünscht markiert hat" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Benutzer, dem diese Wunschliste gehört" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Besitzer der Wishlist" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Wunschzettel" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Stellt einen dokumentarischen Datensatz dar, der an ein Produkt gebunden " "ist. Diese Klasse wird verwendet, um Informationen über Dokumentationen zu " "bestimmten Produkten zu speichern, einschließlich Datei-Uploads und deren " "Metadaten. Sie enthält Methoden und Eigenschaften zur Handhabung des " -"Dateityps und des Speicherpfads für die Dokumentationsdateien. Sie erweitert " -"die Funktionalität von bestimmten Mixins und bietet zusätzliche " +"Dateityps und des Speicherpfads für die Dokumentationsdateien. Sie erweitert" +" die Funktionalität von bestimmten Mixins und bietet zusätzliche " "benutzerdefinierte Funktionen." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Dokumentarfilm" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Dokumentarfilme" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Ungelöst" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Stellt eine Adresseinheit dar, die Standortdetails und Assoziationen mit " "einem Benutzer enthält. Bietet Funktionen für die Speicherung von " @@ -2308,59 +2337,59 @@ msgstr "" "ermöglicht es auch, eine Adresse mit einem Benutzer zu verknüpfen, was die " "personalisierte Datenverarbeitung erleichtert." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Adresszeile für den Kunden" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adresszeile" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Straße" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Bezirk" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Stadt" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postleitzahl" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Land" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Längengrad, Breitengrad)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Vollständige JSON-Antwort vom Geocoder für diese Adresse" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Gespeicherte JSON-Antwort vom Geokodierungsdienst" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adresse" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adressen" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2378,75 +2407,76 @@ msgstr "" "Validierung und Anwendung des Promo-Codes auf eine Bestellung, wobei " "sichergestellt wird, dass die Einschränkungen eingehalten werden." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "" "Einzigartiger Code, den ein Nutzer zum Einlösen eines Rabatts verwendet" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Kennung des Promo-Codes" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "" -"Fester Rabattbetrag, der angewandt wird, wenn kein Prozentsatz verwendet wird" +"Fester Rabattbetrag, der angewandt wird, wenn kein Prozentsatz verwendet " +"wird" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Fester Rabattbetrag" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Prozentualer Rabatt, wenn der Festbetrag nicht verwendet wird" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Prozentualer Rabatt" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Zeitstempel, wann der Promocode abläuft" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Ende der Gültigkeitsdauer" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Zeitstempel, ab dem dieser Promocode gültig ist" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Beginn der Gültigkeitsdauer" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Zeitstempel, wann der Promocode verwendet wurde, leer, wenn noch nicht " "verwendet" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Zeitstempel der Verwendung" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Diesem Promocode zugewiesener Benutzer, falls zutreffend" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Zugewiesener Benutzer" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Promo-Code" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Promo-Codes" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2454,21 +2484,21 @@ msgstr "" "Es sollte nur eine Art von Rabatt definiert werden (Betrag oder " "Prozentsatz), aber nicht beides oder keines von beiden." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promocode wurde bereits verwendet" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ungültiger Rabatttyp für den Promocode {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2481,144 +2511,144 @@ msgstr "" "aktualisiert werden. Ebenso unterstützt die Funktionalität die Verwaltung " "der Produkte im Lebenszyklus der Bestellung." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Die für diese Bestellung verwendete Rechnungsadresse" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Optionaler Promo-Code für diese Bestellung" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Angewandter Promo-Code" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Die für diese Bestellung verwendete Lieferadresse" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Lieferadresse" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Aktueller Status des Auftrags in seinem Lebenszyklus" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Status der Bestellung" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON-Struktur der Benachrichtigungen, die den Benutzern angezeigt werden " "sollen; in der Admin-UI wird die Tabellenansicht verwendet" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON-Darstellung der Auftragsattribute für diesen Auftrag" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Der Benutzer, der die Bestellung aufgegeben hat" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Benutzer" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Der Zeitstempel, zu dem der Auftrag abgeschlossen wurde" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Zeit kaufen" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Ein von Menschen lesbarer Identifikator für den Auftrag" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "menschenlesbare ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Bestellung" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Ein Benutzer darf immer nur einen schwebenden Auftrag haben!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Sie können keine Produkte zu einem Auftrag hinzufügen, der nicht in " "Bearbeitung ist." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Sie können keine inaktiven Produkte zur Bestellung hinzufügen" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Sie können nicht mehr Produkte hinzufügen, als auf Lager sind" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Sie können keine Produkte aus einer Bestellung entfernen, die nicht in " "Bearbeitung ist." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} existiert nicht mit Abfrage <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promocode existiert nicht" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Sie können nur physische Produkte mit angegebener Lieferadresse kaufen!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adresse ist nicht vorhanden" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "Sie können im Moment nicht kaufen, bitte versuchen Sie es in ein paar " "Minuten erneut." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Ungültiger Force-Wert" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Sie können keine leere Bestellung kaufen!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" "Sie können keine Produkte aus einer Bestellung entfernen, die nicht in " "Bearbeitung ist." -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Ein Benutzer ohne Guthaben kann nicht mit Guthaben kaufen!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Unzureichende Mittel für die Ausführung des Auftrags" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2626,14 +2656,14 @@ msgstr "" "Sie können nicht ohne Registrierung kaufen, bitte geben Sie die folgenden " "Informationen an: Kundenname, Kunden-E-Mail, Kunden-Telefonnummer" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ungültige Zahlungsmethode: {payment_method} von {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2642,39 +2672,40 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "Verwaltet Benutzerfeedback für Produkte. Diese Klasse dient der Erfassung " -"und Speicherung von Benutzerfeedback für bestimmte Produkte, die sie gekauft " -"haben. Sie enthält Attribute zum Speichern von Benutzerkommentaren, einen " +"und Speicherung von Benutzerfeedback für bestimmte Produkte, die sie gekauft" +" haben. Sie enthält Attribute zum Speichern von Benutzerkommentaren, einen " "Verweis auf das entsprechende Produkt in der Bestellung und eine vom " "Benutzer zugewiesene Bewertung. Die Klasse verwendet Datenbankfelder, um " "Feedbackdaten effektiv zu modellieren und zu verwalten." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Kommentare der Nutzer über ihre Erfahrungen mit dem Produkt" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Kommentare zum Feedback" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Verweist auf das spezifische Produkt in einer Bestellung, auf das sich diese " -"Rückmeldung bezieht" +"Verweist auf das spezifische Produkt in einer Bestellung, auf das sich diese" +" Rückmeldung bezieht" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Produkt zur Bestellung" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Vom Benutzer zugewiesene Bewertung für das Produkt" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Produktbewertung" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2686,144 +2717,144 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"Stellt die mit Bestellungen verbundenen Produkte und ihre Attribute dar. Das " -"OrderProduct-Modell verwaltet Informationen über ein Produkt, das Teil einer " -"Bestellung ist, einschließlich Details wie Kaufpreis, Menge, " +"Stellt die mit Bestellungen verbundenen Produkte und ihre Attribute dar. Das" +" OrderProduct-Modell verwaltet Informationen über ein Produkt, das Teil " +"einer Bestellung ist, einschließlich Details wie Kaufpreis, Menge, " "Produktattribute und Status. Es verwaltet Benachrichtigungen für Benutzer " "und Administratoren und führt Vorgänge wie die Rückgabe des Produktsaldos " "oder das Hinzufügen von Feedback durch. Dieses Modell bietet auch Methoden " -"und Eigenschaften, die die Geschäftslogik unterstützen, z. B. die Berechnung " -"des Gesamtpreises oder die Generierung einer Download-URL für digitale " +"und Eigenschaften, die die Geschäftslogik unterstützen, z. B. die Berechnung" +" des Gesamtpreises oder die Generierung einer Download-URL für digitale " "Produkte. Das Modell ist mit den Modellen \"Order\" und \"Product\" " "integriert und speichert einen Verweis auf diese." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" "Der Preis, den der Kunde zum Zeitpunkt des Kaufs für dieses Produkt bezahlt " "hat" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Einkaufspreis zum Zeitpunkt der Bestellung" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Interne Kommentare für Administratoren zu diesem bestellten Produkt" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Interne Kommentare" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Benutzerbenachrichtigungen" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON-Darstellung der Attribute dieses Artikels" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Bestellte Produktattribute" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Verweis auf den übergeordneten Auftrag, der dieses Produkt enthält" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Übergeordneter Auftrag" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Das spezifische Produkt, das mit dieser Auftragszeile verbunden ist" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Menge dieses spezifischen Produkts in der Bestellung" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Produktmenge" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Aktueller Status dieses Produkts im Auftrag" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status der Produktlinie" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Das Bestellprodukt muss eine zugehörige Bestellung haben!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Falsche Aktion für Feedback angegeben: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" "Sie können keine Produkte aus einer Bestellung entfernen, die nicht in " "Bearbeitung ist." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Name" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL der Integration" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Anmeldeinformationen zur Authentifizierung" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Sie können nur einen Standard-CRM-Anbieter haben" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRMs" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "CRM-Link der Bestellung" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "CRM-Links der Bestellungen" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Stellt die Download-Funktionalität für digitale Assets in Verbindung mit " "Bestellungen dar. Die Klasse DigitalAssetDownload ermöglicht die Verwaltung " "und den Zugriff auf Downloads im Zusammenhang mit Auftragsprodukten. Sie " "verwaltet Informationen über das zugehörige Auftragsprodukt, die Anzahl der " -"Downloads und ob das Asset öffentlich sichtbar ist. Sie enthält eine Methode " -"zur Generierung einer URL für das Herunterladen des Assets, wenn sich die " +"Downloads und ob das Asset öffentlich sichtbar ist. Sie enthält eine Methode" +" zur Generierung einer URL für das Herunterladen des Assets, wenn sich die " "zugehörige Bestellung in einem abgeschlossenen Status befindet." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Herunterladen" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Herunterladen" @@ -3024,8 +3055,7 @@ msgstr "Hallo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Vielen Dank für Ihre Bestellung #%(order.pk)s! Wir freuen uns, Ihnen " @@ -3140,8 +3170,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Vielen Dank für Ihre Bestellung! Wir freuen uns, Ihren Kauf zu bestätigen. " @@ -3178,7 +3207,8 @@ msgstr "Sowohl Daten als auch Timeout sind erforderlich" #: engine/core/utils/caching.py:52 msgid "invalid timeout value, it must be between 0 and 216000 seconds" -msgstr "Ungültiger Timeout-Wert, er muss zwischen 0 und 216000 Sekunden liegen" +msgstr "" +"Ungültiger Timeout-Wert, er muss zwischen 0 und 216000 Sekunden liegen" #: engine/core/utils/emailing.py:27 #, python-brace-format @@ -3276,16 +3306,10 @@ msgstr "Behandelt die Logik des Kaufs als Unternehmen ohne Registrierung." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Bearbeitet das Herunterladen eines digitalen Assets, das mit einem Auftrag " -"verbunden ist.\n" -"Diese Funktion versucht, die Datei des digitalen Assets, die sich im " -"Speicherverzeichnis des Projekts befindet, bereitzustellen. Wenn die Datei " -"nicht gefunden wird, wird ein HTTP 404-Fehler ausgelöst, um anzuzeigen, dass " -"die Ressource nicht verfügbar ist." +"Bearbeitet das Herunterladen eines digitalen Assets, das mit einem Auftrag verbunden ist.\n" +"Diese Funktion versucht, die Datei des digitalen Assets, die sich im Speicherverzeichnis des Projekts befindet, bereitzustellen. Wenn die Datei nicht gefunden wird, wird ein HTTP 404-Fehler ausgelöst, um anzuzeigen, dass die Ressource nicht verfügbar ist." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3302,7 +3326,8 @@ msgstr "Sie können das digitale Asset nur einmal herunterladen" #: engine/core/views.py:362 msgid "the order must be paid before downloading the digital asset" msgstr "" -"die Bestellung muss vor dem Herunterladen des digitalen Assets bezahlt werden" +"die Bestellung muss vor dem Herunterladen des digitalen Assets bezahlt " +"werden" #: engine/core/views.py:369 msgid "the order product does not have a product" @@ -3315,20 +3340,15 @@ msgstr "Favicon nicht gefunden" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Bearbeitet Anfragen nach dem Favicon einer Website.\n" -"Diese Funktion versucht, die Favicon-Datei, die sich im statischen " -"Verzeichnis des Projekts befindet, bereitzustellen. Wenn die Favicon-Datei " -"nicht gefunden wird, wird ein HTTP 404-Fehler ausgegeben, um anzuzeigen, " -"dass die Ressource nicht verfügbar ist." +"Diese Funktion versucht, die Favicon-Datei, die sich im statischen Verzeichnis des Projekts befindet, bereitzustellen. Wenn die Favicon-Datei nicht gefunden wird, wird ein HTTP 404-Fehler ausgegeben, um anzuzeigen, dass die Ressource nicht verfügbar ist." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Leitet die Anfrage auf die Admin-Indexseite um. Die Funktion verarbeitet " @@ -3337,8 +3357,8 @@ msgstr "" "Django für die Bearbeitung der HTTP-Umleitung." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Gibt die aktuelle Version von eVibes zurück." +msgid "Returns current version of the Schon. " +msgstr "Gibt die aktuelle Version von Schon zurück." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3351,29 +3371,30 @@ msgstr "Gibt benutzerdefinierte Variablen für das Dashboard zurück." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definiert ein Viewset für die Verwaltung von Evibes-bezogenen Operationen. " -"Die Klasse EvibesViewSet erbt von ModelViewSet und bietet Funktionalität für " -"die Handhabung von Aktionen und Operationen auf Evibes-Entitäten. Sie " -"enthält Unterstützung für dynamische Serialisiererklassen auf der Grundlage " -"der aktuellen Aktion, anpassbare Berechtigungen und Rendering-Formate." +"Definiert ein Viewset für die Verwaltung von schon-bezogenen Operationen. " +"Die Klasse SchonViewSet erbt von ModelViewSet und bietet Funktionalität für " +"die Handhabung von Aktionen und Operationen auf schon-Entitäten. Sie enthält" +" Unterstützung für dynamische Serialisiererklassen auf der Grundlage der " +"aktuellen Aktion, anpassbare Berechtigungen und Rendering-Formate." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Stellt ein Viewset für die Verwaltung von AttributeGroup-Objekten dar. " "Bearbeitet Vorgänge im Zusammenhang mit AttributeGroup, einschließlich " -"Filterung, Serialisierung und Abruf von Daten. Diese Klasse ist Teil der API-" -"Schicht der Anwendung und bietet eine standardisierte Methode zur " +"Filterung, Serialisierung und Abruf von Daten. Diese Klasse ist Teil der " +"API-Schicht der Anwendung und bietet eine standardisierte Methode zur " "Verarbeitung von Anfragen und Antworten für AttributeGroup-Daten." #: engine/core/viewsets.py:179 @@ -3398,14 +3419,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Ein Viewset für die Verwaltung von AttributeValue-Objekten. Dieses Viewset " "bietet Funktionen zum Auflisten, Abrufen, Erstellen, Aktualisieren und " "Löschen von AttributeValue-Objekten. Es integriert sich in die Viewset-" -"Mechanismen des Django REST Frameworks und verwendet geeignete Serialisierer " -"für verschiedene Aktionen. Filterfunktionen werden über das " +"Mechanismen des Django REST Frameworks und verwendet geeignete Serialisierer" +" für verschiedene Aktionen. Filterfunktionen werden über das " "DjangoFilterBackend bereitgestellt." #: engine/core/viewsets.py:217 @@ -3417,8 +3438,8 @@ msgid "" "can access specific data." msgstr "" "Verwaltet Ansichten für kategoriebezogene Operationen. Die Klasse " -"CategoryViewSet ist für die Handhabung von Vorgängen im Zusammenhang mit dem " -"Kategoriemodell im System verantwortlich. Sie unterstützt das Abrufen, " +"CategoryViewSet ist für die Handhabung von Vorgängen im Zusammenhang mit dem" +" Kategoriemodell im System verantwortlich. Sie unterstützt das Abrufen, " "Filtern und Serialisieren von Kategoriedaten. Das Viewset erzwingt auch " "Berechtigungen, um sicherzustellen, dass nur autorisierte Benutzer auf " "bestimmte Daten zugreifen können." @@ -3440,15 +3461,15 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Verwaltet Vorgänge im Zusammenhang mit dem Modell \"Produkt\" im System. " "Diese Klasse bietet ein Viewset für die Verwaltung von Produkten, " -"einschließlich ihrer Filterung, Serialisierung und Operationen für bestimmte " -"Instanzen. Sie ist eine Erweiterung von `EvibesViewSet`, um gemeinsame " +"einschließlich ihrer Filterung, Serialisierung und Operationen für bestimmte" +" Instanzen. Sie ist eine Erweiterung von `SchonViewSet`, um gemeinsame " "Funktionen zu nutzen und integriert sich in das Django REST Framework für " "RESTful API Operationen. Enthält Methoden zum Abrufen von Produktdetails, " "zur Anwendung von Berechtigungen und zum Zugriff auf zugehörige " @@ -3474,16 +3495,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Darstellung eines View-Sets, das Feedback-Objekte behandelt. Diese Klasse " "verwaltet Vorgänge im Zusammenhang mit Feedback-Objekten, einschließlich " "Auflistung, Filterung und Abruf von Details. Der Zweck dieses ViewSets ist " -"es, verschiedene Serialisierer für verschiedene Aktionen bereitzustellen und " -"eine erlaubnisbasierte Handhabung von zugänglichen Feedback-Objekten zu " -"implementieren. Es erweitert das Basis `EvibesViewSet` und nutzt das " +"es, verschiedene Serialisierer für verschiedene Aktionen bereitzustellen und" +" eine erlaubnisbasierte Handhabung von zugänglichen Feedback-Objekten zu " +"implementieren. Es erweitert das Basis `SchonViewSet` und nutzt das " "Filtersystem von Django zur Abfrage von Daten." #: engine/core/viewsets.py:652 @@ -3491,16 +3512,16 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"ViewSet zur Verwaltung von Aufträgen und zugehörigen Vorgängen. Diese Klasse " -"bietet Funktionen zum Abrufen, Ändern und Verwalten von Bestellobjekten. Sie " -"enthält verschiedene Endpunkte für die Handhabung von Bestellvorgängen wie " -"das Hinzufügen oder Entfernen von Produkten, die Durchführung von Käufen für " -"registrierte und nicht registrierte Benutzer und das Abrufen der " +"ViewSet zur Verwaltung von Aufträgen und zugehörigen Vorgängen. Diese Klasse" +" bietet Funktionen zum Abrufen, Ändern und Verwalten von Bestellobjekten. " +"Sie enthält verschiedene Endpunkte für die Handhabung von Bestellvorgängen " +"wie das Hinzufügen oder Entfernen von Produkten, die Durchführung von Käufen" +" für registrierte und nicht registrierte Benutzer und das Abrufen der " "ausstehenden Bestellungen des aktuell authentifizierten Benutzers. Das " "ViewSet verwendet mehrere Serialisierer, die auf der spezifischen Aktion " "basieren, die durchgeführt wird, und erzwingt die entsprechenden " @@ -3510,16 +3531,16 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Bietet ein Viewset für die Verwaltung von OrderProduct-Entitäten. Dieses " "Viewset ermöglicht CRUD-Vorgänge und benutzerdefinierte Aktionen speziell " "für das OrderProduct-Modell. Es umfasst Filterung, Berechtigungsprüfungen " "und Serializer-Umschaltung auf der Grundlage der angeforderten Aktion. " -"Außerdem bietet es eine detaillierte Aktion für die Bearbeitung von Feedback " -"zu OrderProduct-Instanzen" +"Außerdem bietet es eine detaillierte Aktion für die Bearbeitung von Feedback" +" zu OrderProduct-Instanzen" #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " @@ -3546,15 +3567,15 @@ msgstr "Erledigt Vorgänge im Zusammenhang mit Bestandsdaten im System." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet für die Verwaltung von Wishlist-Vorgängen. Das WishlistViewSet " -"bietet Endpunkte für die Interaktion mit der Wunschliste eines Benutzers und " -"ermöglicht das Abrufen, Ändern und Anpassen von Produkten innerhalb der " +"bietet Endpunkte für die Interaktion mit der Wunschliste eines Benutzers und" +" ermöglicht das Abrufen, Ändern und Anpassen von Produkten innerhalb der " "Wunschliste. Dieses ViewSet erleichtert Funktionen wie das Hinzufügen, " "Entfernen und Massenaktionen für Produkte auf der Wunschliste. " "Berechtigungsprüfungen sind integriert, um sicherzustellen, dass Benutzer " @@ -3570,8 +3591,8 @@ msgid "" "on the request context." msgstr "" "Diese Klasse bietet Viewset-Funktionalität für die Verwaltung von " -"\"Address\"-Objekten. Die Klasse AddressViewSet ermöglicht CRUD-Operationen, " -"Filterung und benutzerdefinierte Aktionen im Zusammenhang mit " +"\"Address\"-Objekten. Die Klasse AddressViewSet ermöglicht CRUD-Operationen," +" Filterung und benutzerdefinierte Aktionen im Zusammenhang mit " "Adressentitäten. Sie umfasst spezielle Verhaltensweisen für verschiedene " "HTTP-Methoden, Serialisierungsüberschreibungen und die Behandlung von " "Berechtigungen auf der Grundlage des Anfragekontexts." @@ -3592,6 +3613,6 @@ msgstr "" "Bearbeitet Vorgänge im Zusammenhang mit Produkt-Tags innerhalb der " "Anwendung. Diese Klasse bietet Funktionen zum Abrufen, Filtern und " "Serialisieren von Produkt-Tag-Objekten. Sie unterstützt die flexible " -"Filterung nach bestimmten Attributen unter Verwendung des angegebenen Filter-" -"Backends und verwendet dynamisch verschiedene Serialisierer auf der " +"Filterung nach bestimmten Attributen unter Verwendung des angegebenen " +"Filter-Backends und verwendet dynamisch verschiedene Serialisierer auf der " "Grundlage der durchgeführten Aktion." diff --git a/engine/core/locale/en_GB/LC_MESSAGES/django.mo b/engine/core/locale/en_GB/LC_MESSAGES/django.mo index 509b0aa8..a045f96a 100644 Binary files a/engine/core/locale/en_GB/LC_MESSAGES/django.mo and b/engine/core/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/en_GB/LC_MESSAGES/django.po b/engine/core/locale/en_GB/LC_MESSAGES/django.po index 13c41142..99e3c91b 100644 --- a/engine/core/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/core/locale/en_GB/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ -# eVibes Translations. +# Schon Translations. # Copyright (C) 2025 Egor "fureunoir" Gorbunov -# This file is distributed under the same license as the eVibes package. +# This file is distributed under the same license as the Schon package. # EGOR GORBUNOV , 2025. # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -31,9 +31,11 @@ msgstr "Is Active" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" -"If set to false, this object can't be seen by users without needed permission" +"If set to false, this object can't be seen by users without needed " +"permission" #: engine/core/abstract.py:26 engine/core/choices.py:18 msgid "created" @@ -77,7 +79,7 @@ msgstr "Timestamps" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Activate selected %(verbose_name_plural)s" #: engine/core/admin.py:166 @@ -86,7 +88,7 @@ msgstr "Selected items have been activated!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "Deactivate selected %(verbose_name_plural)s" #: engine/core/admin.py:184 @@ -94,13 +96,13 @@ msgid "selected items have been deactivated." msgstr "Selected items have been deactivated!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attribute Value" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attribute Values" @@ -120,12 +122,12 @@ msgstr "Stock" msgid "stocks" msgstr "Stocks" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Order Product" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Order Products" @@ -133,7 +135,31 @@ msgstr "Order Products" msgid "children" msgstr "Children" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Has images" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Export selected %(verbose_name_plural)s to marketplaces' feeds" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Selected %(verbose_name_plural)s have been marked for export." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Ban selected %(verbose_name_plural)s from marketplaces' feeds" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Selected %(verbose_name_plural)s have been banned from export." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Config" @@ -157,7 +183,8 @@ msgstr "Delivered" msgid "canceled" msgstr "Canceled" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Failed" @@ -272,7 +299,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Rewrite an existing attribute group saving non-editables" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rewrite some fields of an existing attribute group saving non-editables" @@ -321,7 +349,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Rewrite an existing attribute value saving non-editables" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rewrite some fields of an existing attribute value saving non-editables" @@ -375,11 +404,11 @@ msgstr "For non-staff users, only their own orders are returned." #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -411,13 +440,13 @@ msgstr "Filter by order status (case-insensitive substring match)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -603,30 +632,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 @@ -639,12 +658,10 @@ msgstr "(exact) Product UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -1175,11 +1192,11 @@ msgstr "Buy an order" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"Please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1198,9 +1215,9 @@ msgstr "Orderproduct {order_product_uuid} not found!" msgid "original address string provided by the user" msgstr "Original address string provided by the user" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1216,8 +1233,8 @@ msgstr "ElasticSearch - works like a charm" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attributes" @@ -1253,7 +1270,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "Which attributes and values can be used for filtering this category." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimum and maximum prices for products in this category, if available." @@ -1291,7 +1309,7 @@ msgid "represents feedback from a user." msgstr "Represents feedback from a user." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notifications" @@ -1299,7 +1317,7 @@ msgstr "Notifications" msgid "download url for this order product if applicable" msgstr "Download url for this order product if applicable" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1307,7 +1325,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "A list of order products in this order" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Billing address" @@ -1335,7 +1353,7 @@ msgstr "Are all of the products in the order digital" msgid "transactions for this order" msgstr "Transactions for this order" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Orders" @@ -1352,7 +1370,7 @@ msgstr "Product's images" msgid "category" msgstr "Category" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Feedbacks" @@ -1393,7 +1411,7 @@ msgstr "Products only available for personal orders" msgid "discount price" msgstr "Discount price" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Products" @@ -1405,7 +1423,7 @@ msgstr "Promocodes" msgid "products on sale" msgstr "Products on sale" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promotions" @@ -1413,7 +1431,7 @@ msgstr "Promotions" msgid "vendor" msgstr "Vendor" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1421,11 +1439,11 @@ msgstr "Vendor" msgid "product" msgstr "Product" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Wishlisted products" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Wishlists" @@ -1540,7 +1558,7 @@ msgstr "Parent attribute group" msgid "attribute group's name" msgstr "Attribute group's name" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attribute group" @@ -1726,12 +1744,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." #: engine/core/models.py:456 msgid "name of this brand" @@ -1775,15 +1795,15 @@ msgstr "Categories" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1809,8 +1829,8 @@ msgstr "Selling price" msgid "the product associated with this stock entry" msgstr "The product associated with this stock entry" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Associated product" @@ -1910,7 +1930,7 @@ msgstr "Provide a clear identifying name for the product" msgid "product name" msgstr "Product name" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Add a detailed description of the product" @@ -1930,196 +1950,204 @@ msgstr "Part number" msgid "stock keeping unit for this product" msgstr "Stock Keeping Unit for this product" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Whether to export this product to marketplaces" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Export to Marketplaces" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Group of this attribute" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "String" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Integer" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Float" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Object" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Type of the attribute's value" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Value type" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Name of this attribute" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Attribute's name" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "is filterable" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "designates whether this attribute can be used for filtering or not" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribute" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribute of this value" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "The specific product associated with this attribute's value" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "The specific value for this attribute" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Provide alternative text for the image for accessibility" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Image alt text" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Upload the image file for this product" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Product image" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Determines the order in which images are displayed" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Display priority" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "The product that this image represents" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Product images" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Percentage discount for the selected products" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Discount percentage" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Provide a unique name for this promotion" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Promotion name" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Promotion description" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Select which products are included in this promotion" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Included products" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promotion" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2131,123 +2159,123 @@ msgstr "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Products that the user has marked as wanted" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "User who owns this wishlist" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Wishlist's Owner" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Wishlist" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentary" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentaries" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Unresolved" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Address line for the customer" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Address line" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Street" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "District" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "City" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postal code" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Country" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Longitude, Latitude)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Full JSON response from geocoder for this address" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Stored JSON response from the geocoding service" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Address" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresses" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2263,71 +2291,71 @@ msgstr "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unique code used by a user to redeem a discount" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Promo code identifier" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Fixed discount amount applied if percent is not used" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Fixed discount amount" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Percentage discount applied if fixed amount is not used" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Percentage discount" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Timestamp when the promocode expires" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "End validity time" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Timestamp from which this promocode is valid" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Start validity time" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "Timestamp when the promocode was used, blank if not used yet" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Usage timestamp" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "User assigned to this promocode if applicable" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Assigned user" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Promo code" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Promo codes" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2335,161 +2363,161 @@ msgstr "" "Only one type of discount should be defined (amount or percent), but not " "both or neither." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promocode has been used already" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Invalid discount type for promocode {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "The billing address used for this order" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Optional promo code applied to this order" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Applied promo code" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "The shipping address used for this order" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Shipping address" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Current status of the order in its lifecycle" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Order status" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON structure of notifications to display to users, in admin UI the table-" "view is used" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON representation of order attributes for this order" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "The user who placed the order" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "User" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "The timestamp when the order was finalized" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Buy time" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "A human-readable identifier for the order" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "human-readable ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Order" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "A user must have only one pending order at a time!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "You cannot add products to an order that is not a pending one" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "You cannot add inactive products to order" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "You cannot add more products than available in stock" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "You cannot remove products from an order that is not a pending one" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} does not exist with query <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promocode does not exist" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "You can only buy physical products with shipping address specified!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Address does not exist" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "You can not purchase at this moment, please try again in a few minutes." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Invalid force value" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "You cannot purchase an empty order!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "You cannot buy an order without a user!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "A user without a balance cannot buy with balance!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Insufficient funds to complete the order" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2497,14 +2525,14 @@ msgstr "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Invalid payment method: {payment_method} from {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2518,32 +2546,33 @@ msgstr "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "User-provided comments about their experience with the product" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Feedback comments" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "References the specific product in an order that this feedback is about" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Related order product" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "User-assigned rating for the product" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Product rating" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2565,128 +2594,128 @@ msgstr "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "The price paid by the customer for this product at purchase time" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Purchase price at order time" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Internal comments for admins about this ordered product" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Internal comments" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "User notifications" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON representation of this item's attributes" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Ordered product attributes" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Reference to the parent order that contains this product" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Parent order" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "The specific product associated with this order line" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Quantity of this specific product in the order" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Product quantity" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Current status of this product in the order" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Product line status" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct must have an associated order!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Wrong action specified for feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "you cannot feedback an order which is not received" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Name" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL of the integration" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Authentication credentials" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "You can only have one default CRM provider" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRMs" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Order's CRM link" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Orders' CRM links" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Download" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Downloads" @@ -2886,12 +2915,11 @@ msgstr "Hello %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Thank you for your order #%(order.pk)s! We are pleased to inform you that we " -"have taken your order into work. Below are the details of your order:" +"Thank you for your order #%(order.pk)s! We are pleased to inform you that we" +" have taken your order into work. Below are the details of your order:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -3001,12 +3029,11 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" -"Thank you for your order! We are pleased to confirm your purchase. Below are " -"the details of your order:" +"Thank you for your order! We are pleased to confirm your purchase. Below are" +" the details of your order:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3134,14 +3161,10 @@ msgstr "Handles the logic of buying as a business without registration." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3170,28 +3193,24 @@ msgstr "favicon not found" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Returns current version of the eVibes." +msgid "Returns current version of the Schon. " +msgstr "Returns current version of the Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3204,29 +3223,31 @@ msgstr "Returns custom variables for Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." #: engine/core/viewsets.py:179 msgid "" @@ -3249,14 +3270,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." #: engine/core/viewsets.py:217 msgid "" @@ -3289,7 +3310,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3297,7 +3318,7 @@ msgstr "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3321,15 +3342,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." #: engine/core/viewsets.py:652 @@ -3337,31 +3358,31 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" #: engine/core/viewsets.py:974 @@ -3388,16 +3409,16 @@ msgstr "Handles operations related to Stock data in the system." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." diff --git a/engine/core/locale/en_US/LC_MESSAGES/django.mo b/engine/core/locale/en_US/LC_MESSAGES/django.mo index 920ff3f5..a517bc39 100644 Binary files a/engine/core/locale/en_US/LC_MESSAGES/django.mo and b/engine/core/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/en_US/LC_MESSAGES/django.po b/engine/core/locale/en_US/LC_MESSAGES/django.po index 449ff7dd..765824d6 100644 --- a/engine/core/locale/en_US/LC_MESSAGES/django.po +++ b/engine/core/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,9 +27,11 @@ msgstr "Is Active" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" -"If set to false, this object can't be seen by users without needed permission" +"If set to false, this object can't be seen by users without needed " +"permission" #: engine/core/abstract.py:26 engine/core/choices.py:18 msgid "created" @@ -73,7 +75,7 @@ msgstr "Timestamps" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Activate selected %(verbose_name_plural)s" #: engine/core/admin.py:166 @@ -82,7 +84,7 @@ msgstr "Selected items have been activated!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "Deactivate selected %(verbose_name_plural)s" #: engine/core/admin.py:184 @@ -90,13 +92,13 @@ msgid "selected items have been deactivated." msgstr "Selected items have been deactivated!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attribute Value" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attribute Values" @@ -116,12 +118,12 @@ msgstr "Stock" msgid "stocks" msgstr "Stocks" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Order Product" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Order Products" @@ -129,7 +131,31 @@ msgstr "Order Products" msgid "children" msgstr "Children" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Has images" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Export selected %(verbose_name_plural)s to marketplaces' feeds" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Selected %(verbose_name_plural)s have been marked for export." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Ban selected %(verbose_name_plural)s from marketplaces' feeds" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Selected %(verbose_name_plural)s have been banned from export." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Config" @@ -153,7 +179,8 @@ msgstr "Delivered" msgid "canceled" msgstr "Canceled" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Failed" @@ -268,7 +295,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Rewrite an existing attribute group saving non-editables" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rewrite some fields of an existing attribute group saving non-editables" @@ -317,7 +345,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Rewrite an existing attribute value saving non-editables" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rewrite some fields of an existing attribute value saving non-editables" @@ -371,11 +400,11 @@ msgstr "For non-staff users, only their own orders are returned." #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -407,13 +436,13 @@ msgstr "Filter by order status (case-insensitive substring match)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -599,26 +628,17 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…`\n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" @@ -634,12 +654,10 @@ msgstr "(exact) Product UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -1170,11 +1188,11 @@ msgstr "Buy an order" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"Please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1193,9 +1211,9 @@ msgstr "Orderproduct {order_product_uuid} not found!" msgid "original address string provided by the user" msgstr "Original address string provided by the user" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1211,8 +1229,8 @@ msgstr "ElasticSearch - works like a charm" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attributes" @@ -1248,7 +1266,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "Which attributes and values can be used for filtering this category." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimum and maximum prices for products in this category, if available." @@ -1286,7 +1305,7 @@ msgid "represents feedback from a user." msgstr "Represents feedback from a user." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notifications" @@ -1294,7 +1313,7 @@ msgstr "Notifications" msgid "download url for this order product if applicable" msgstr "Download url for this order product if applicable" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1302,7 +1321,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "A list of order products in this order" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Billing address" @@ -1330,7 +1349,7 @@ msgstr "Are all of the products in the order digital" msgid "transactions for this order" msgstr "Transactions for this order" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Orders" @@ -1347,7 +1366,7 @@ msgstr "Product's images" msgid "category" msgstr "Category" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Feedbacks" @@ -1388,7 +1407,7 @@ msgstr "Products only available for personal orders" msgid "discount price" msgstr "Discount price" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Products" @@ -1400,7 +1419,7 @@ msgstr "Promocodes" msgid "products on sale" msgstr "Products on sale" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promotions" @@ -1408,7 +1427,7 @@ msgstr "Promotions" msgid "vendor" msgstr "Vendor" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1416,11 +1435,11 @@ msgstr "Vendor" msgid "product" msgstr "Product" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Wishlisted products" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Wishlists" @@ -1535,7 +1554,7 @@ msgstr "Parent attribute group" msgid "attribute group's name" msgstr "Attribute group's name" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attribute group" @@ -1721,12 +1740,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." #: engine/core/models.py:456 msgid "name of this brand" @@ -1770,15 +1791,15 @@ msgstr "Categories" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1804,8 +1825,8 @@ msgstr "Selling price" msgid "the product associated with this stock entry" msgstr "The product associated with this stock entry" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Associated product" @@ -1905,7 +1926,7 @@ msgstr "Provide a clear identifying name for the product" msgid "product name" msgstr "Product name" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Add a detailed description of the product" @@ -1925,196 +1946,204 @@ msgstr "Part number" msgid "stock keeping unit for this product" msgstr "Stock Keeping Unit for this product" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Whether to export this product to marketplaces" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Export to Marketplaces" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Group of this attribute" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "String" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Integer" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Float" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Object" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Type of the attribute's value" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Value type" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Name of this attribute" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Attribute's name" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "is filterable" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "designates whether this attribute can be used for filtering or not" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribute" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribute of this value" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "The specific product associated with this attribute's value" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "The specific value for this attribute" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Provide alternative text for the image for accessibility" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Image alt text" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Upload the image file for this product" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Product image" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Determines the order in which images are displayed" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Display priority" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "The product that this image represents" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Product images" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Percentage discount for the selected products" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Discount percentage" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Provide a unique name for this promotion" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Promotion name" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Promotion description" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Select which products are included in this promotion" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Included products" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promotion" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2126,123 +2155,123 @@ msgstr "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Products that the user has marked as wanted" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "User who owns this wishlist" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Wishlist's Owner" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Wishlist" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentary" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentaries" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Unresolved" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Address line for the customer" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Address line" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Street" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "District" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "City" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postal code" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Country" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Longitude, Latitude)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Full JSON response from geocoder for this address" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Stored JSON response from the geocoding service" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Address" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresses" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2258,71 +2287,71 @@ msgstr "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unique code used by a user to redeem a discount" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Promo code identifier" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Fixed discount amount applied if percent is not used" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Fixed discount amount" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Percentage discount applied if fixed amount is not used" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Percentage discount" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Timestamp when the promocode expires" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "End validity time" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Timestamp from which this promocode is valid" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Start validity time" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "Timestamp when the promocode was used, blank if not used yet" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Usage timestamp" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "User assigned to this promocode if applicable" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Assigned user" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Promo code" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Promo codes" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2330,161 +2359,161 @@ msgstr "" "Only one type of discount should be defined (amount or percent), but not " "both or neither." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promocode has been used already" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Invalid discount type for promocode {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "The billing address used for this order" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Optional promo code applied to this order" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Applied promo code" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "The shipping address used for this order" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Shipping address" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Current status of the order in its lifecycle" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Order status" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON structure of notifications to display to users, in admin UI the table-" "view is used" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON representation of order attributes for this order" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "The user who placed the order" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "User" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "The timestamp when the order was finalized" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Buy time" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "A human-readable identifier for the order" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "human-readable ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Order" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "A user must have only one pending order at a time!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "You cannot add products to an order that is not a pending one" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "You cannot add inactive products to order" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "You cannot add more products than available in stock" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "You cannot remove products from an order that is not a pending one" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} does not exist with query <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promocode does not exist" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "You can only buy physical products with shipping address specified!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Address does not exist" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "You can not purchase at this moment, please try again in a few minutes." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Invalid force value" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "You cannot purchase an empty order!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "You cannot buy an order without a user!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "A user without a balance cannot buy with balance!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Insufficient funds to complete the order" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2492,14 +2521,14 @@ msgstr "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Invalid payment method: {payment_method} from {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2513,32 +2542,33 @@ msgstr "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "User-provided comments about their experience with the product" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Feedback comments" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "References the specific product in an order that this feedback is about" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Related order product" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "User-assigned rating for the product" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Product rating" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2560,128 +2590,128 @@ msgstr "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "The price paid by the customer for this product at purchase time" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Purchase price at order time" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Internal comments for admins about this ordered product" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Internal comments" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "User notifications" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON representation of this item's attributes" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Ordered product attributes" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Reference to the parent order that contains this product" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Parent order" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "The specific product associated with this order line" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Quantity of this specific product in the order" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Product quantity" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Current status of this product in the order" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Product line status" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct must have an associated order!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Wrong action specified for feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "you cannot feedback an order which is not received" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Name" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL of the integration" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Authentication credentials" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "You can only have one default CRM provider" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRMs" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Order's CRM link" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Orders' CRM links" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Download" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Downloads" @@ -2881,12 +2911,11 @@ msgstr "Hello %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Thank you for your order #%(order.pk)s! We are pleased to inform you that we " -"have taken your order into work. Below are the details of your order:" +"Thank you for your order #%(order.pk)s! We are pleased to inform you that we" +" have taken your order into work. Below are the details of your order:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2996,12 +3025,11 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" -"Thank you for your order! We are pleased to confirm your purchase. Below are " -"the details of your order:" +"Thank you for your order! We are pleased to confirm your purchase. Below are" +" the details of your order:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3129,14 +3157,10 @@ msgstr "Handles the logic of buying as a business without registration." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3165,28 +3189,24 @@ msgstr "favicon not found" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Returns current version of the eVibes." +msgid "Returns current version of the Schon. " +msgstr "Returns current version of the Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3199,29 +3219,31 @@ msgstr "Returns custom variables for Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." #: engine/core/viewsets.py:179 msgid "" @@ -3244,14 +3266,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." #: engine/core/viewsets.py:217 msgid "" @@ -3284,7 +3306,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3292,7 +3314,7 @@ msgstr "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3316,15 +3338,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." #: engine/core/viewsets.py:652 @@ -3332,31 +3354,31 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" #: engine/core/viewsets.py:974 @@ -3383,16 +3405,16 @@ msgstr "Handles operations related to Stock data in the system." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." diff --git a/engine/core/locale/es_ES/LC_MESSAGES/django.mo b/engine/core/locale/es_ES/LC_MESSAGES/django.mo index 535f744e..5706fff4 100644 Binary files a/engine/core/locale/es_ES/LC_MESSAGES/django.mo and b/engine/core/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/es_ES/LC_MESSAGES/django.po b/engine/core/locale/es_ES/LC_MESSAGES/django.po index c42f0f97..c065ef3e 100644 --- a/engine/core/locale/es_ES/LC_MESSAGES/django.po +++ b/engine/core/locale/es_ES/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Está activo" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Si se establece en false, este objeto no puede ser visto por los usuarios " "sin el permiso necesario" @@ -76,7 +77,7 @@ msgstr "Marcas de tiempo" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Activar %(verbose_name_plural)s seleccionado" #: engine/core/admin.py:166 @@ -85,7 +86,7 @@ msgstr "Los artículos seleccionados se han activado." #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "Desactivar %(verbose_name_plural)s seleccionado" #: engine/core/admin.py:184 @@ -93,13 +94,13 @@ msgid "selected items have been deactivated." msgstr "Los artículos seleccionados se han desactivado." #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Atributo Valor" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Valores de los atributos" @@ -119,12 +120,12 @@ msgstr "Stock" msgid "stocks" msgstr "Acciones" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Pedir un producto" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Pedir productos" @@ -132,7 +133,37 @@ msgstr "Pedir productos" msgid "children" msgstr "Niños" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Tiene imágenes" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" +"Exportar %(verbose_name_plural)s seleccionado a los feeds de los mercados" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" +"Se han marcado para exportación los elementos seleccionados " +"%(verbose_name_plural)s." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" +"Prohibir %(verbose_name_plural)s seleccionado de los feeds de los mercados" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" +"Los productos seleccionados %(verbose_name_plural)s han sido prohibidos para" +" la exportación." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Configurar" @@ -156,7 +187,8 @@ msgstr "Entregado" msgid "canceled" msgstr "Cancelado" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Fallido" @@ -208,8 +240,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Aplicar sólo una clave para leer datos permitidos de la caché.\n" -"Aplicar clave, datos y tiempo de espera con autenticación para escribir " -"datos en la caché." +"Aplicar clave, datos y tiempo de espera con autenticación para escribir datos en la caché." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -245,8 +276,8 @@ msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -"Compra un pedido como empresa, utilizando los `productos` proporcionados con " -"`product_uuid` y `attributes`." +"Compra un pedido como empresa, utilizando los `productos` proporcionados con" +" `product_uuid` y `attributes`." #: engine/core/docs/drf/views.py:180 msgid "download a digital asset from purchased digital order" @@ -273,7 +304,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Reescribir un grupo de atributos existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Reescribir algunos campos de un grupo de atributos existente guardando los " "no editables" @@ -301,7 +333,8 @@ msgstr "Reescribir un atributo existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:156 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Reescribir algunos campos de un atributo existente guardando los no editables" +"Reescribir algunos campos de un atributo existente guardando los no " +"editables" #: engine/core/docs/drf/viewsets.py:166 msgid "list all attribute values (simple view)" @@ -324,10 +357,11 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Reescribir un valor de atributo existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" -"Reescribir algunos campos de un valor de atributo existente guardando los no " -"editables" +"Reescribir algunos campos de un valor de atributo existente guardando los no" +" editables" #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -383,12 +417,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Búsqueda de subcadenas sin distinción entre mayúsculas y minúsculas en " -"human_readable_id, order_products.product.name y order_products.product." -"partnumber" +"human_readable_id, order_products.product.name y " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -409,8 +443,8 @@ msgstr "Filtrar por ID de pedido exacto legible por el ser humano" #: engine/core/docs/drf/viewsets.py:336 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -"Filtrar por correo electrónico del usuario (coincidencia exacta insensible a " -"mayúsculas y minúsculas)" +"Filtrar por correo electrónico del usuario (coincidencia exacta insensible a" +" mayúsculas y minúsculas)" #: engine/core/docs/drf/viewsets.py:341 msgid "Filter by user's UUID" @@ -424,9 +458,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordenar por: uuid, human_readable_id, user_email, user, status, created, " "modified, buy_time, random. Utilice el prefijo '-' para orden descendente " @@ -573,7 +607,8 @@ msgstr "Reescribir un atributo existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:537 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Reescribir algunos campos de un atributo existente guardando los no editables" +"Reescribir algunos campos de un atributo existente guardando los no " +"editables" #: engine/core/docs/drf/viewsets.py:544 msgid "retrieve current pending wishlist of a user" @@ -628,31 +663,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrar por uno o varios pares nombre/valor de atributo. \n" "- Sintaxis**: `nombre_attr=método-valor[;attr2=método2-valor2]...`.\n" -"- Métodos** (por defecto `icontiene` si se omite): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- Tipificación de valores**: Se intenta primero JSON (para poder pasar " -"listas/dictos), `true`/`false` para booleanos, enteros, flotantes; en caso " -"contrario se trata como cadena. \n" -"- Base64**: prefiérelo con `b64-` para codificar en base64 el valor sin " -"procesar. \n" +"- Métodos** (por defecto `icontiene` si se omite): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- Tipificación de valores**: Se intenta primero JSON (para poder pasar listas/dictos), `true`/`false` para booleanos, enteros, flotantes; en caso contrario se trata como cadena. \n" +"- Base64**: prefiérelo con `b64-` para codificar en base64 el valor sin procesar. \n" "Ejemplos: \n" -"`color=rojo exacto`, `tamaño=gt-10`, `características=en-[\"wifi\", " -"\"bluetooth\"]`,\n" +"`color=rojo exacto`, `tamaño=gt-10`, `características=en-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 @@ -665,12 +689,10 @@ msgstr "UUID (exacto) del producto" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Lista separada por comas de campos por los que ordenar. Prefiérela con `-` " -"para que sea descendente. \n" +"Lista separada por comas de campos por los que ordenar. Prefiérela con `-` para que sea descendente. \n" "**Permitido:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -876,7 +898,8 @@ msgstr "Eliminar la imagen de un producto" #: engine/core/docs/drf/viewsets.py:1146 msgid "rewrite an existing product image saving non-editables" -msgstr "Reescribir una imagen de producto existente guardando los no editables" +msgstr "" +"Reescribir una imagen de producto existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" @@ -1070,7 +1093,8 @@ msgstr "SKU" #: engine/core/filters.py:212 msgid "there must be a category_uuid to use include_subcategories flag" -msgstr "Debe haber un category_uuid para usar la bandera include_subcategories" +msgstr "" +"Debe haber un category_uuid para usar la bandera include_subcategories" #: engine/core/filters.py:398 msgid "Search (ID, product name or part number)" @@ -1171,7 +1195,8 @@ msgstr "Indique order_uuid o order_hr_id, ¡se excluyen mutuamente!" #: engine/core/graphene/mutations.py:249 engine/core/graphene/mutations.py:524 #: engine/core/graphene/mutations.py:573 engine/core/viewsets.py:753 msgid "wrong type came from order.buy() method: {type(instance)!s}" -msgstr "Tipo incorrecto proveniente del método order.buy(): {type(instance)!s}" +msgstr "" +"Tipo incorrecto proveniente del método order.buy(): {type(instance)!s}" #: engine/core/graphene/mutations.py:260 msgid "perform an action on a list of products in the order" @@ -1222,11 +1247,11 @@ msgstr "Comprar un pedido" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Por favor, envíe los atributos como una cadena formateada como attr1=valor1," -"attr2=valor2" +"Por favor, envíe los atributos como una cadena formateada como " +"attr1=valor1,attr2=valor2" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1245,9 +1270,9 @@ msgstr "No se ha encontrado el producto {order_product_uuid}." msgid "original address string provided by the user" msgstr "Cadena de dirección original proporcionada por el usuario" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1263,8 +1288,8 @@ msgstr "ElasticSearch - funciona a las mil maravillas" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Atributos" @@ -1301,7 +1326,8 @@ msgstr "" "Qué atributos y valores se pueden utilizar para filtrar esta categoría." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Precios mínimo y máximo de los productos de esta categoría, si están " "disponibles." @@ -1334,14 +1360,15 @@ msgstr "Cómo" #: engine/core/graphene/object_types.py:542 msgid "rating value from 1 to 10, inclusive, or 0 if not set." msgstr "" -"Valor de calificación de 1 a 10, ambos inclusive, o 0 si no está configurado." +"Valor de calificación de 1 a 10, ambos inclusive, o 0 si no está " +"configurado." #: engine/core/graphene/object_types.py:416 msgid "represents feedback from a user." msgstr "Representa la opinión de un usuario." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notificaciones" @@ -1349,7 +1376,7 @@ msgstr "Notificaciones" msgid "download url for this order product if applicable" msgstr "Descargar url para este producto de pedido si procede" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Comentarios" @@ -1357,7 +1384,7 @@ msgstr "Comentarios" msgid "a list of order products in this order" msgstr "Una lista de los productos del pedido" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Dirección de facturación" @@ -1385,7 +1412,7 @@ msgstr "¿Están todos los productos en el pedido digital" msgid "transactions for this order" msgstr "Transacciones para este pedido" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Pedidos" @@ -1402,7 +1429,7 @@ msgstr "Imágenes del producto" msgid "category" msgstr "Categoría" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Comentarios" @@ -1443,7 +1470,7 @@ msgstr "Productos sólo disponibles para pedidos personales" msgid "discount price" msgstr "Precio reducido" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Productos" @@ -1455,7 +1482,7 @@ msgstr "Códigos promocionales" msgid "products on sale" msgstr "Productos a la venta" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promociones" @@ -1463,7 +1490,7 @@ msgstr "Promociones" msgid "vendor" msgstr "Vendedor" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1471,11 +1498,11 @@ msgstr "Vendedor" msgid "product" msgstr "Producto" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Productos deseados" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Listas de deseos" @@ -1577,8 +1604,8 @@ msgstr "" "Representa un grupo de atributos, que puede ser jerárquico. Esta clase se " "utiliza para gestionar y organizar grupos de atributos. Un grupo de " "atributos puede tener un grupo padre, formando una estructura jerárquica. " -"Esto puede ser útil para categorizar y gestionar los atributos de manera más " -"eficaz en un sistema complejo." +"Esto puede ser útil para categorizar y gestionar los atributos de manera más" +" eficaz en un sistema complejo." #: engine/core/models.py:88 msgid "parent of this group" @@ -1592,7 +1619,7 @@ msgstr "Grupo de atributos padre" msgid "attribute group's name" msgstr "Nombre del grupo de atributos" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Grupo de atributos" @@ -1608,11 +1635,11 @@ msgid "" msgstr "" "Representa una entidad de proveedor capaz de almacenar información sobre " "proveedores externos y sus requisitos de interacción. La clase Proveedor se " -"utiliza para definir y gestionar la información relacionada con un proveedor " -"externo. Almacena el nombre del vendedor, los detalles de autenticación " +"utiliza para definir y gestionar la información relacionada con un proveedor" +" externo. Almacena el nombre del vendedor, los detalles de autenticación " "necesarios para la comunicación y el porcentaje de marcado aplicado a los " -"productos recuperados del vendedor. Este modelo también mantiene metadatos y " -"restricciones adicionales, lo que lo hace adecuado para su uso en sistemas " +"productos recuperados del vendedor. Este modelo también mantiene metadatos y" +" restricciones adicionales, lo que lo hace adecuado para su uso en sistemas " "que interactúan con proveedores externos." #: engine/core/models.py:122 @@ -1785,7 +1812,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Representa un objeto Marca en el sistema. Esta clase maneja información y " "atributos relacionados con una marca, incluyendo su nombre, logotipos, " @@ -1835,8 +1863,8 @@ msgstr "Categorías" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1845,8 +1873,8 @@ msgstr "" "Representa el stock de un producto gestionado en el sistema. Esta clase " "proporciona detalles sobre la relación entre vendedores, productos y su " "información de existencias, así como propiedades relacionadas con el " -"inventario como precio, precio de compra, cantidad, SKU y activos digitales. " -"Forma parte del sistema de gestión de inventario para permitir el " +"inventario como precio, precio de compra, cantidad, SKU y activos digitales." +" Forma parte del sistema de gestión de inventario para permitir el " "seguimiento y la evaluación de los productos disponibles de varios " "vendedores." @@ -1870,8 +1898,8 @@ msgstr "Precio de venta" msgid "the product associated with this stock entry" msgstr "El producto asociado a esta entrada en stock" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Producto asociado" @@ -1929,13 +1957,13 @@ msgstr "" "Representa un producto con atributos como categoría, marca, etiquetas, " "estado digital, nombre, descripción, número de pieza y babosa. Proporciona " "propiedades de utilidad relacionadas para recuperar valoraciones, recuentos " -"de comentarios, precio, cantidad y total de pedidos. Diseñado para su uso en " -"un sistema que gestiona el comercio electrónico o la gestión de inventarios. " -"Esta clase interactúa con modelos relacionados (como Category, Brand y " -"ProductTag) y gestiona el almacenamiento en caché de las propiedades a las " -"que se accede con frecuencia para mejorar el rendimiento. Se utiliza para " -"definir y manipular datos de productos y su información asociada dentro de " -"una aplicación." +"de comentarios, precio, cantidad y total de pedidos. Diseñado para su uso en" +" un sistema que gestiona el comercio electrónico o la gestión de " +"inventarios. Esta clase interactúa con modelos relacionados (como Category, " +"Brand y ProductTag) y gestiona el almacenamiento en caché de las propiedades" +" a las que se accede con frecuencia para mejorar el rendimiento. Se utiliza " +"para definir y manipular datos de productos y su información asociada dentro" +" de una aplicación." #: engine/core/models.py:595 msgid "category this product belongs to" @@ -1974,7 +2002,7 @@ msgstr "Proporcionar un nombre que identifique claramente el producto" msgid "product name" msgstr "Nombre del producto" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Añada una descripción detallada del producto" @@ -1994,107 +2022,115 @@ msgstr "Número de pieza" msgid "stock keeping unit for this product" msgstr "Unidad de Mantenimiento de Existencias para este producto" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Si exportar este producto a los mercados." + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Exportar a mercados" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Representa un atributo en el sistema. Esta clase se utiliza para definir y " "gestionar atributos, que son datos personalizables que pueden asociarse a " -"otras entidades. Los atributos tienen asociadas categorías, grupos, tipos de " -"valores y nombres. El modelo admite varios tipos de valores, como cadenas, " +"otras entidades. Los atributos tienen asociadas categorías, grupos, tipos de" +" valores y nombres. El modelo admite varios tipos de valores, como cadenas, " "enteros, flotantes, booleanos, matrices y objetos. Esto permite una " "estructuración dinámica y flexible de los datos." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Grupo de este atributo" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Cadena" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Entero" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Flotador" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Booleano" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Matriz" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objeto" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Tipo del valor del atributo" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Tipo de valor" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Nombre de este atributo" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Nombre del atributo" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "es filtrable" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Qué atributos y valores se pueden utilizar para filtrar esta categoría." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atributo" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Representa un valor específico para un atributo vinculado a un producto. " "Vincula el \"atributo\" a un \"valor\" único, lo que permite una mejor " "organización y representación dinámica de las características del producto." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Atributo de este valor" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "El producto específico asociado al valor de este atributo" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "El valor específico de este atributo" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2104,47 +2140,47 @@ msgstr "" "específicos y determinar su orden de visualización. También incluye una " "función de accesibilidad con texto alternativo para las imágenes." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" "Proporcione un texto alternativo para la imagen en aras de la accesibilidad" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Texto alternativo de la imagen" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Cargar el archivo de imagen para este producto" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Imagen del producto" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Determina el orden de visualización de las imágenes" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioridad de visualización" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "El producto que representa esta imagen" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Imágenes de productos" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Representa una campaña promocional para productos con descuento. Esta clase " "se utiliza para definir y gestionar campañas promocionales que ofrecen un " @@ -2153,39 +2189,39 @@ msgstr "" "promoción y vincularla a los productos aplicables. Se integra con el " "catálogo de productos para determinar los artículos afectados en la campaña." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Porcentaje de descuento para los productos seleccionados" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Porcentaje de descuento" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Proporcione un nombre único para esta promoción" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Nombre de la promoción" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Descripción de la promoción" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Seleccione los productos incluidos en esta promoción" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Productos incluidos" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promoción" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2198,30 +2234,30 @@ msgstr "" "productos, así como soportar operaciones para añadir y eliminar múltiples " "productos a la vez." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Productos que el usuario ha marcado como deseados" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Usuario propietario de esta lista de deseos" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Propietario de Wishlist" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Lista de deseos" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Representa un registro documental vinculado a un producto. Esta clase se " "utiliza para almacenar información sobre documentales relacionados con " @@ -2230,28 +2266,28 @@ msgstr "" "de almacenamiento de los archivos documentales. Amplía la funcionalidad de " "mixins específicos y proporciona características personalizadas adicionales." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documental" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentaries" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Sin resolver" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Representa una entidad de dirección que incluye detalles de ubicación y " "asociaciones con un usuario. Proporciona funcionalidad para el " @@ -2260,63 +2296,63 @@ msgstr "" "información detallada sobre direcciones, incluidos componentes como calle, " "ciudad, región, país y geolocalización (longitud y latitud). Admite la " "integración con API de geocodificación, permitiendo el almacenamiento de " -"respuestas API sin procesar para su posterior procesamiento o inspección. La " -"clase también permite asociar una dirección a un usuario, facilitando el " +"respuestas API sin procesar para su posterior procesamiento o inspección. La" +" clase también permite asociar una dirección a un usuario, facilitando el " "manejo personalizado de los datos." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Dirección del cliente" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Dirección" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Calle" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distrito" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Ciudad" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Región" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Promo code" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "País" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocalización Punto(Longitud, Latitud)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Respuesta JSON completa del geocodificador para esta dirección" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Respuesta JSON almacenada del servicio de geocodificación" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Dirección" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Direcciones" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2333,72 +2369,72 @@ msgstr "" "para validar y aplicar el código promocional a un pedido garantizando el " "cumplimiento de las restricciones." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Código único utilizado por un usuario para canjear un descuento" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Promo code identifier" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Se aplica un descuento fijo si no se utiliza el porcentaje" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Importe fijo del descuento" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Porcentaje de descuento aplicado si no se utiliza el importe fijo" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Porcentaje de descuento" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Fecha de caducidad del promocode" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Hora de fin de validez" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Fecha a partir de la cual es válido este promocode" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Hora de inicio de validez" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Fecha en la que se utilizó el promocode, en blanco si aún no se ha utilizado" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Marca de tiempo de uso" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Usuario asignado a este promocode si procede" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Usuario asignado" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Promo code" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Promo codes" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2406,21 +2442,21 @@ msgstr "" "Sólo debe definirse un tipo de descuento (importe o porcentaje), pero no " "ambos ni ninguno." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "El código promocional ya ha sido utilizado" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "¡Tipo de descuento no válido para el código promocional {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2428,142 +2464,142 @@ msgstr "" "dentro de la aplicación, incluyendo sus diversos atributos como información " "de facturación y envío, estado, usuario asociado, notificaciones y " "operaciones relacionadas. Los pedidos pueden tener productos asociados, se " -"pueden aplicar promociones, establecer direcciones y actualizar los datos de " -"envío o facturación. Del mismo modo, la funcionalidad permite gestionar los " -"productos en el ciclo de vida del pedido." +"pueden aplicar promociones, establecer direcciones y actualizar los datos de" +" envío o facturación. Del mismo modo, la funcionalidad permite gestionar los" +" productos en el ciclo de vida del pedido." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "La dirección de facturación utilizada para este pedido" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Código promocional opcional aplicado a este pedido" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Código promocional aplicado" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "La dirección de envío utilizada para este pedido" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Dirección de envío" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Estado actual del pedido en su ciclo de vida" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Estado del pedido" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Estructura JSON de las notificaciones para mostrar a los usuarios, en la " "interfaz de administración se utiliza la vista de tabla." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Representación JSON de los atributos de la orden para esta orden" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "El usuario que realizó el pedido" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Usuario" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Fecha de finalización de la orden" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Comprar tiempo" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Un identificador legible por el ser humano para la orden" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID legible por humanos" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Pida" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Un usuario sólo puede tener una orden pendiente a la vez." -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "No puede añadir productos a un pedido que no esté pendiente" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "No se pueden añadir productos inactivos al pedido" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "No puede añadir más productos de los disponibles en stock" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "No puede eliminar productos de un pedido que no esté pendiente" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} ¡no existe con la consulta <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promocode no existe" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Sólo puede comprar productos físicos con la dirección de envío especificada." -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "La dirección no existe" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "No puede comprar en este momento, por favor inténtelo de nuevo en unos " "minutos." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Valor de fuerza no válido" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "No se puede comprar un pedido vacío." -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "No se puede comprar un pedido sin un usuario." -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "¡Un usuario sin saldo no puede comprar con saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Fondos insuficientes para completar el pedido" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2571,14 +2607,14 @@ msgstr "" "no puede comprar sin registrarse, facilite la siguiente información: nombre " "del cliente, correo electrónico del cliente, número de teléfono del cliente" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Forma de pago no válida: ¡{payment_method} de {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2594,33 +2630,34 @@ msgstr "" "clase utiliza campos de base de datos para modelar y gestionar eficazmente " "los datos de los comentarios." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Comentarios de los usuarios sobre su experiencia con el producto" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Comentarios" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Hace referencia al producto específico de un pedido sobre el que trata esta " "opinión" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Producto relacionado con el pedido" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Valoración del producto asignada por el usuario" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Valoración del producto" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2638,135 +2675,136 @@ msgstr "" "atributos del producto y su estado. Gestiona las notificaciones para el " "usuario y los administradores y maneja operaciones como la devolución del " "saldo del producto o la adición de comentarios. Este modelo también " -"proporciona métodos y propiedades que soportan la lógica de negocio, como el " -"cálculo del precio total o la generación de una URL de descarga para " +"proporciona métodos y propiedades que soportan la lógica de negocio, como el" +" cálculo del precio total o la generación de una URL de descarga para " "productos digitales. El modelo se integra con los modelos Pedido y Producto " "y almacena una referencia a ellos." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" "El precio pagado por el cliente por este producto en el momento de la compra" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Precio de compra en el momento del pedido" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" "Comentarios internos para los administradores sobre este producto solicitado" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Comentarios internos" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Notificaciones a los usuarios" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Representación JSON de los atributos de este elemento" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Atributos ordenados del producto" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Referencia al pedido principal que contiene este producto" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Orden de los padres" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "El producto específico asociado a esta línea de pedido" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Cantidad de este producto específico en el pedido" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Cantidad de productos" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Estado actual de este producto en el pedido" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Estado de la línea de productos" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "El pedido-producto debe tener un pedido asociado." -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Acción incorrecta especificada para la retroalimentación: ¡{action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "no se puede comentar un pedido no recibido" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nombre" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL de la integración" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Credenciales de autenticación" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Sólo puede tener un proveedor de CRM por defecto" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRMs" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Enlace CRM del pedido" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Enlaces CRM de los pedidos" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Representa la funcionalidad de descarga de activos digitales asociados a " -"pedidos. La clase DigitalAssetDownload proporciona la capacidad de gestionar " -"y acceder a descargas relacionadas con productos de pedidos. Mantiene " +"pedidos. La clase DigitalAssetDownload proporciona la capacidad de gestionar" +" y acceder a descargas relacionadas con productos de pedidos. Mantiene " "información sobre el producto del pedido asociado, el número de descargas y " -"si el activo es visible públicamente. Incluye un método para generar una URL " -"para descargar el activo cuando el pedido asociado está en estado completado." +"si el activo es visible públicamente. Incluye un método para generar una URL" +" para descargar el activo cuando el pedido asociado está en estado " +"completado." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Descargar" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Descargas" @@ -2967,8 +3005,7 @@ msgstr "Hola %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "¡Gracias por su pedido #%(order.pk)s! Nos complace informarle de que hemos " @@ -3082,8 +3119,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Gracias por su pedido. Nos complace confirmarle su compra. A continuación " @@ -3163,8 +3199,8 @@ msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"Gestiona la solicitud del índice del mapa del sitio y devuelve una respuesta " -"XML. Se asegura de que la respuesta incluya el encabezado de tipo de " +"Gestiona la solicitud del índice del mapa del sitio y devuelve una respuesta" +" XML. Se asegura de que la respuesta incluya el encabezado de tipo de " "contenido apropiado para XML." #: engine/core/views.py:119 @@ -3181,7 +3217,8 @@ msgstr "" msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -"Devuelve una lista de los idiomas admitidos y su información correspondiente." +"Devuelve una lista de los idiomas admitidos y su información " +"correspondiente." #: engine/core/views.py:182 msgid "Returns the parameters of the website as a JSON object." @@ -3218,14 +3255,10 @@ msgstr "Maneja la lógica de la compra como empresa sin registro." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestiona la descarga de un activo digital asociado a un pedido.\n" -"Esta función intenta servir el archivo del activo digital ubicado en el " -"directorio de almacenamiento del proyecto. Si no se encuentra el archivo, se " -"genera un error HTTP 404 para indicar que el recurso no está disponible." +"Esta función intenta servir el archivo del activo digital ubicado en el directorio de almacenamiento del proyecto. Si no se encuentra el archivo, se genera un error HTTP 404 para indicar que el recurso no está disponible." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3254,29 +3287,25 @@ msgstr "favicon no encontrado" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestiona las peticiones del favicon de un sitio web.\n" -"Esta función intenta servir el archivo favicon ubicado en el directorio " -"estático del proyecto. Si no se encuentra el archivo favicon, se genera un " -"error HTTP 404 para indicar que el recurso no está disponible." +"Esta función intenta servir el archivo favicon ubicado en el directorio estático del proyecto. Si no se encuentra el archivo favicon, se genera un error HTTP 404 para indicar que el recurso no está disponible." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Redirige la petición a la página índice de administración. La función " "gestiona las peticiones HTTP entrantes y las redirige a la página de índice " -"de la interfaz de administración de Django. Utiliza la función `redirect` de " -"Django para gestionar la redirección HTTP." +"de la interfaz de administración de Django. Utiliza la función `redirect` de" +" Django para gestionar la redirección HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Devuelve la versión actual del eVibes." +msgid "Returns current version of the Schon. " +msgstr "Devuelve la versión actual del Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3289,29 +3318,30 @@ msgstr "Devuelve variables personalizadas para Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" "Define un conjunto de vistas para gestionar operaciones relacionadas con " -"Evibes. La clase EvibesViewSet hereda de ModelViewSet y proporciona " -"funcionalidad para manejar acciones y operaciones sobre entidades Evibes. " +"schon. La clase SchonViewSet hereda de ModelViewSet y proporciona " +"funcionalidad para manejar acciones y operaciones sobre entidades schon. " "Incluye soporte para clases serializadoras dinámicas basadas en la acción " "actual, permisos personalizables y formatos de representación." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Representa un conjunto de vistas para gestionar objetos AttributeGroup. " "Maneja operaciones relacionadas con AttributeGroup, incluyendo filtrado, " -"serialización y recuperación de datos. Esta clase forma parte de la capa API " -"de la aplicación y proporciona una forma estandarizada de procesar las " +"serialización y recuperación de datos. Esta clase forma parte de la capa API" +" de la aplicación y proporciona una forma estandarizada de procesar las " "solicitudes y respuestas de los datos de AttributeGroup." #: engine/core/viewsets.py:179 @@ -3323,10 +3353,10 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"Gestiona las operaciones relacionadas con los objetos Attribute dentro de la " -"aplicación. Proporciona un conjunto de puntos finales de la API para " -"interactuar con los datos de los atributos. Esta clase gestiona la consulta, " -"el filtrado y la serialización de objetos Attribute, lo que permite un " +"Gestiona las operaciones relacionadas con los objetos Attribute dentro de la" +" aplicación. Proporciona un conjunto de puntos finales de la API para " +"interactuar con los datos de los atributos. Esta clase gestiona la consulta," +" el filtrado y la serialización de objetos Attribute, lo que permite un " "control dinámico de los datos devueltos, como el filtrado por campos " "específicos o la recuperación de información detallada o simplificada en " "función de la solicitud." @@ -3336,12 +3366,12 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Conjunto de vistas para gestionar objetos AttributeValue. Este conjunto de " -"vistas proporciona funcionalidad para listar, recuperar, crear, actualizar y " -"eliminar objetos AttributeValue. Se integra con los mecanismos viewset de " +"vistas proporciona funcionalidad para listar, recuperar, crear, actualizar y" +" eliminar objetos AttributeValue. Se integra con los mecanismos viewset de " "Django REST Framework y utiliza serializadores apropiados para diferentes " "acciones. Las capacidades de filtrado se proporcionan a través de " "DjangoFilterBackend." @@ -3357,8 +3387,8 @@ msgstr "" "Gestiona vistas para operaciones relacionadas con Categorías. La clase " "CategoryViewSet se encarga de gestionar las operaciones relacionadas con el " "modelo Category del sistema. Permite recuperar, filtrar y serializar datos " -"de categorías. El conjunto de vistas también aplica permisos para garantizar " -"que sólo los usuarios autorizados puedan acceder a datos específicos." +"de categorías. El conjunto de vistas también aplica permisos para garantizar" +" que sólo los usuarios autorizados puedan acceder a datos específicos." #: engine/core/viewsets.py:346 msgid "" @@ -3368,25 +3398,25 @@ msgid "" "endpoints for Brand objects." msgstr "" "Representa un conjunto de vistas para gestionar instancias de Brand. Esta " -"clase proporciona funcionalidad para consultar, filtrar y serializar objetos " -"Brand. Utiliza el marco ViewSet de Django para simplificar la implementación " -"de puntos finales de API para objetos Brand." +"clase proporciona funcionalidad para consultar, filtrar y serializar objetos" +" Brand. Utiliza el marco ViewSet de Django para simplificar la " +"implementación de puntos finales de API para objetos Brand." #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Gestiona las operaciones relacionadas con el modelo `Producto` en el " "sistema. Esta clase proporciona un conjunto de vistas para la gestión de " -"productos, incluyendo su filtrado, serialización y operaciones en instancias " -"específicas. Se extiende desde `EvibesViewSet` para utilizar funcionalidades " -"comunes y se integra con el framework Django REST para operaciones RESTful " +"productos, incluyendo su filtrado, serialización y operaciones en instancias" +" específicas. Se extiende desde `SchonViewSet` para utilizar funcionalidades" +" comunes y se integra con el framework Django REST para operaciones RESTful " "API. Incluye métodos para recuperar detalles del producto, aplicar permisos " "y acceder a comentarios relacionados de un producto." @@ -3410,8 +3440,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representación de un conjunto de vistas que maneja objetos Feedback. Esta " @@ -3419,7 +3449,7 @@ msgstr "" "incluyendo el listado, filtrado y recuperación de detalles. El propósito de " "este conjunto de vistas es proporcionar diferentes serializadores para " "diferentes acciones e implementar el manejo basado en permisos de los " -"objetos Feedback accesibles. Extiende la base `EvibesViewSet` y hace uso del " +"objetos Feedback accesibles. Extiende la base `SchonViewSet` y hace uso del " "sistema de filtrado de Django para la consulta de datos." #: engine/core/viewsets.py:652 @@ -3427,26 +3457,26 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet para la gestión de pedidos y operaciones relacionadas. Esta clase " "proporciona funcionalidad para recuperar, modificar y gestionar objetos de " -"pedido. Incluye varios puntos finales para gestionar operaciones de pedidos, " -"como añadir o eliminar productos, realizar compras para usuarios registrados " -"y no registrados, y recuperar los pedidos pendientes del usuario autenticado " -"actual. ViewSet utiliza varios serializadores en función de la acción " -"específica que se esté realizando y aplica los permisos correspondientes al " -"interactuar con los datos del pedido." +"pedido. Incluye varios puntos finales para gestionar operaciones de pedidos," +" como añadir o eliminar productos, realizar compras para usuarios " +"registrados y no registrados, y recuperar los pedidos pendientes del usuario" +" autenticado actual. ViewSet utiliza varios serializadores en función de la " +"acción específica que se esté realizando y aplica los permisos " +"correspondientes al interactuar con los datos del pedido." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Proporciona un conjunto de vistas para gestionar entidades OrderProduct. " @@ -3483,8 +3513,8 @@ msgstr "" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3509,8 +3539,8 @@ msgstr "" "Esta clase proporciona la funcionalidad viewset para la gestión de objetos " "`Address`. La clase AddressViewSet permite operaciones CRUD, filtrado y " "acciones personalizadas relacionadas con entidades de direcciones. Incluye " -"comportamientos especializados para diferentes métodos HTTP, anulaciones del " -"serializador y gestión de permisos basada en el contexto de la solicitud." +"comportamientos especializados para diferentes métodos HTTP, anulaciones del" +" serializador y gestión de permisos basada en el contexto de la solicitud." #: engine/core/viewsets.py:1254 #, python-brace-format diff --git a/engine/core/locale/fa_IR/LC_MESSAGES/django.mo b/engine/core/locale/fa_IR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/core/locale/fa_IR/LC_MESSAGES/django.mo and b/engine/core/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/fa_IR/LC_MESSAGES/django.po b/engine/core/locale/fa_IR/LC_MESSAGES/django.po index 950b596f..454cae48 100644 --- a/engine/core/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/core/locale/fa_IR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -75,7 +75,7 @@ msgstr "" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:166 @@ -84,7 +84,7 @@ msgstr "" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:184 @@ -92,13 +92,13 @@ msgid "selected items have been deactivated." msgstr "" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "" @@ -118,12 +118,12 @@ msgstr "" msgid "stocks" msgstr "" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "" @@ -131,7 +131,31 @@ msgstr "" msgid "children" msgstr "" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "" @@ -1151,9 +1175,9 @@ msgstr "" msgid "original address string provided by the user" msgstr "" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1169,8 +1193,8 @@ msgstr "" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "" @@ -1243,7 +1267,7 @@ msgid "represents feedback from a user." msgstr "" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "" @@ -1251,7 +1275,7 @@ msgstr "" msgid "download url for this order product if applicable" msgstr "" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "" @@ -1259,7 +1283,7 @@ msgstr "" msgid "a list of order products in this order" msgstr "" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "" @@ -1285,7 +1309,7 @@ msgstr "" msgid "transactions for this order" msgstr "" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "" @@ -1302,7 +1326,7 @@ msgstr "" msgid "category" msgstr "" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "" @@ -1343,7 +1367,7 @@ msgstr "" msgid "discount price" msgstr "" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "" @@ -1355,7 +1379,7 @@ msgstr "" msgid "products on sale" msgstr "" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "" @@ -1363,7 +1387,7 @@ msgstr "" msgid "vendor" msgstr "" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1371,11 +1395,11 @@ msgstr "" msgid "product" msgstr "" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "" @@ -1486,7 +1510,7 @@ msgstr "" msgid "attribute group's name" msgstr "" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "" @@ -1720,8 +1744,8 @@ msgstr "" msgid "the product associated with this stock entry" msgstr "" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "" @@ -1813,7 +1837,7 @@ msgstr "" msgid "product name" msgstr "" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "" @@ -1833,7 +1857,15 @@ msgstr "" msgid "stock keeping unit for this product" msgstr "" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " @@ -1843,83 +1875,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" "Represents a specific value for an attribute that is linked to a product. It " "links the 'attribute' to a unique 'value', allowing better organization and " "dynamic representation of product characteristics." msgstr "" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1928,39 +1960,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1970,39 +2002,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2010,23 +2042,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -2036,19 +2068,19 @@ msgid "" "custom features." msgstr "" -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -2060,59 +2092,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2122,86 +2154,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " @@ -2211,145 +2243,145 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2358,31 +2390,31 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "" -#: engine/core/models.py:1827 +#: engine/core/models.py:1834 msgid "references the specific product in an order that this feedback is about" msgstr "" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2395,108 +2427,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2506,11 +2538,11 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "" @@ -2975,7 +3007,7 @@ msgid "" msgstr "" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " +msgid "Returns current version of the Schon. " msgstr "" #: engine/core/views.py:674 engine/core/views.py:689 @@ -2989,9 +3021,9 @@ msgstr "" #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" @@ -3045,7 +3077,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3066,7 +3098,7 @@ msgid "" "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " "serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" diff --git a/engine/core/locale/fr_FR/LC_MESSAGES/django.mo b/engine/core/locale/fr_FR/LC_MESSAGES/django.mo index 28e39c81..6eb28c71 100644 Binary files a/engine/core/locale/fr_FR/LC_MESSAGES/django.mo and b/engine/core/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/fr_FR/LC_MESSAGES/django.po b/engine/core/locale/fr_FR/LC_MESSAGES/django.po index a9ea15a9..ca67a0b4 100644 --- a/engine/core/locale/fr_FR/LC_MESSAGES/django.po +++ b/engine/core/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Est actif" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Si la valeur est fixée à false, cet objet ne peut pas être vu par les " "utilisateurs qui n'ont pas l'autorisation nécessaire." @@ -76,8 +77,8 @@ msgstr "Horodatage" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Activer la %(verbose_name_plural)s sélectionnée" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Activer %(verbose_name_plural)s sélectionné" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -85,21 +86,21 @@ msgstr "Les articles sélectionnés ont été activés !" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Désactiver la %(verbose_name_plural)s sélectionnée" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Désactiver %(verbose_name_plural)s sélectionné" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Les articles sélectionnés ont été désactivés !" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Valeur de l'attribut" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Valeurs des attributs" @@ -119,12 +120,12 @@ msgstr "Stock" msgid "stocks" msgstr "Stocks" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Commander un produit" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Commander des produits" @@ -132,7 +133,39 @@ msgstr "Commander des produits" msgid "children" msgstr "Les enfants" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Contient des images" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" +"Exporter %(verbose_name_plural)s sélectionné vers les flux des places de " +"marché" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" +"Les éléments sélectionnés %(verbose_name_plural)s ont été marqués pour " +"l'exportation." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" +"Interdire %(verbose_name_plural)s sélectionné dans les flux des places de " +"marché" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" +"Les produits sélectionnés %(verbose_name_plural)s ont été interdits à " +"l'exportation." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Config" @@ -156,7 +189,8 @@ msgstr "Livré" msgid "canceled" msgstr "Annulé" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Échec" @@ -207,10 +241,8 @@ msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." msgstr "" -"Appliquer uniquement une clé pour lire les données autorisées dans la " -"mémoire cache.\n" -"Appliquer une clé, des données et un délai d'attente avec authentification " -"pour écrire des données dans la mémoire cache." +"Appliquer uniquement une clé pour lire les données autorisées dans la mémoire cache.\n" +"Appliquer une clé, des données et un délai d'attente avec authentification pour écrire des données dans la mémoire cache." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -277,7 +309,8 @@ msgstr "" "modifiables" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Réécrire certains champs d'un groupe d'attributs existant en sauvegardant " "les non-éditables" @@ -306,8 +339,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:156 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Réécrire certains champs d'un attribut existant en sauvegardant les éléments " -"non modifiables" +"Réécrire certains champs d'un attribut existant en sauvegardant les éléments" +" non modifiables" #: engine/core/docs/drf/viewsets.py:166 msgid "list all attribute values (simple view)" @@ -332,7 +365,8 @@ msgstr "" "modifiables" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Réécrire certains champs d'une valeur d'attribut existante en sauvegardant " "les éléments non modifiables" @@ -391,11 +425,11 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Recherche insensible à la casse dans human_readable_id, order_products." -"product.name, et order_products.product.partnumber" +"Recherche insensible à la casse dans human_readable_id, " +"order_products.product.name, et order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -431,13 +465,13 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordonner par l'un des éléments suivants : uuid, human_readable_id, " -"user_email, user, status, created, modified, buy_time, random. Préfixer avec " -"'-' pour l'ordre décroissant (par exemple '-buy_time')." +"user_email, user, status, created, modified, buy_time, random. Préfixer avec" +" '-' pour l'ordre décroissant (par exemple '-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -479,8 +513,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"Finalise l'achat de la commande. Si `force_balance` est utilisé, l'achat est " -"complété en utilisant le solde de l'utilisateur ; Si `force_payment` est " +"Finalise l'achat de la commande. Si `force_balance` est utilisé, l'achat est" +" complété en utilisant le solde de l'utilisateur ; Si `force_payment` est " "utilisé, une transaction est initiée." #: engine/core/docs/drf/viewsets.py:427 @@ -548,8 +582,8 @@ msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -"Supprime une liste de produits d'une commande en utilisant le `product_uuid` " -"et les `attributs` fournis." +"Supprime une liste de produits d'une commande en utilisant le `product_uuid`" +" et les `attributs` fournis." #: engine/core/docs/drf/viewsets.py:497 msgid "list all wishlists (simple view)" @@ -585,8 +619,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:537 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Réécrire certains champs d'un attribut existant en sauvegardant les éléments " -"non modifiables" +"Réécrire certains champs d'un attribut existant en sauvegardant les éléments" +" non modifiables" #: engine/core/docs/drf/viewsets.py:544 msgid "retrieve current pending wishlist of a user" @@ -642,29 +676,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtre sur une ou plusieurs paires nom/valeur d'attribut. \n" "- **Syntaxe** : `nom_attr=méthode-valeur[;attr2=méthode2-valeur2]...`\n" -"- **Méthodes** (la valeur par défaut est `icontains` si elle est omise) : " -"`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, " -"`istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, " -"`gt`, `gte`, `in`\n" -"- **Type de valeur** : JSON est essayé en premier (pour que vous puissiez " -"passer des listes/dicts), `true`/`false` pour les booléens, les entiers, les " -"flottants ; sinon traité comme une chaîne de caractères. \n" -"- **Base64** : préfixe avec `b64-` pour encoder la valeur brute en base64 de " -"manière sûre pour l'URL. \n" +"- **Méthodes** (la valeur par défaut est `icontains` si elle est omise) : `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Type de valeur** : JSON est essayé en premier (pour que vous puissiez passer des listes/dicts), `true`/`false` pour les booléens, les entiers, les flottants ; sinon traité comme une chaîne de caractères. \n" +"- **Base64** : préfixe avec `b64-` pour encoder la valeur brute en base64 de manière sûre pour l'URL. \n" "Exemples : \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -679,12 +702,10 @@ msgstr "UUID (exact) du produit" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Liste de champs séparés par des virgules à trier. Préfixer avec `-` pour un " -"tri descendant. \n" +"Liste de champs séparés par des virgules à trier. Préfixer avec `-` pour un tri descendant. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -949,7 +970,8 @@ msgstr "Supprimer une promotion" #: engine/core/docs/drf/viewsets.py:1244 msgid "rewrite an existing promotion saving non-editables" msgstr "" -"Réécrire une promotion existante en sauvegardant les éléments non modifiables" +"Réécrire une promotion existante en sauvegardant les éléments non " +"modifiables" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" @@ -1004,8 +1026,8 @@ msgstr "Supprimer une étiquette de produit" #: engine/core/docs/drf/viewsets.py:1342 msgid "rewrite an existing product tag saving non-editables" msgstr "" -"Réécrire une étiquette de produit existante en sauvegardant les éléments non " -"modifiables" +"Réécrire une étiquette de produit existante en sauvegardant les éléments non" +" modifiables" #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" @@ -1251,8 +1273,8 @@ msgstr "Acheter une commande" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Veuillez envoyer les attributs sous la forme d'une chaîne formatée comme " "attr1=valeur1,attr2=valeur2." @@ -1276,9 +1298,9 @@ msgstr "Le produit {order_product_uuid} n'a pas été trouvé !" msgid "original address string provided by the user" msgstr "Chaîne d'adresse originale fournie par l'utilisateur" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1294,8 +1316,8 @@ msgstr "ElasticSearch - fonctionne comme un charme" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attributs" @@ -1333,7 +1355,8 @@ msgstr "" "catégorie." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Prix minimum et maximum pour les produits de cette catégorie, s'ils sont " "disponibles." @@ -1372,7 +1395,7 @@ msgid "represents feedback from a user." msgstr "Représente le retour d'information d'un utilisateur." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notifications" @@ -1380,7 +1403,7 @@ msgstr "Notifications" msgid "download url for this order product if applicable" msgstr "URL de téléchargement pour ce produit de la commande, le cas échéant" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Retour d'information" @@ -1388,7 +1411,7 @@ msgstr "Retour d'information" msgid "a list of order products in this order" msgstr "Une liste des produits commandés dans cette commande" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Adresse de facturation" @@ -1397,8 +1420,8 @@ msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" -"Adresse d'expédition pour cette commande, laisser vide si elle est identique " -"à l'adresse de facturation ou si elle n'est pas applicable" +"Adresse d'expédition pour cette commande, laisser vide si elle est identique" +" à l'adresse de facturation ou si elle n'est pas applicable" #: engine/core/graphene/object_types.py:468 msgid "total price of this order" @@ -1416,7 +1439,7 @@ msgstr "Tous les produits de la commande sont-ils numériques ?" msgid "transactions for this order" msgstr "Transactions pour cette commande" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Commandes" @@ -1433,7 +1456,7 @@ msgstr "Images du produit" msgid "category" msgstr "Catégorie" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Retour d'information" @@ -1474,7 +1497,7 @@ msgstr "Produits disponibles uniquement pour les commandes personnelles" msgid "discount price" msgstr "Prix d'escompte" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produits" @@ -1486,7 +1509,7 @@ msgstr "Promocodes" msgid "products on sale" msgstr "Produits en vente" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promotions" @@ -1494,7 +1517,7 @@ msgstr "Promotions" msgid "vendor" msgstr "Vendeur" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1502,11 +1525,11 @@ msgstr "Vendeur" msgid "product" msgstr "Produit" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produits en liste de souhaits" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Liste de souhaits" @@ -1624,7 +1647,7 @@ msgstr "Groupe d'attributs parent" msgid "attribute group's name" msgstr "Nom du groupe d'attributs" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Groupe d'attributs" @@ -1640,8 +1663,8 @@ msgid "" msgstr "" "Représente une entité fournisseur capable de stocker des informations sur " "les fournisseurs externes et leurs exigences en matière d'interaction. La " -"classe Vendeur est utilisée pour définir et gérer les informations relatives " -"à un fournisseur externe. Elle stocke le nom du fournisseur, les détails " +"classe Vendeur est utilisée pour définir et gérer les informations relatives" +" à un fournisseur externe. Elle stocke le nom du fournisseur, les détails " "d'authentification requis pour la communication et le pourcentage de " "majoration appliqué aux produits récupérés auprès du fournisseur. Ce modèle " "gère également des métadonnées et des contraintes supplémentaires, ce qui " @@ -1733,9 +1756,9 @@ msgid "" "attributes for an internal tag identifier and a user-friendly display name." msgstr "" "Représente une étiquette de catégorie utilisée pour les produits. Cette " -"classe modélise une balise de catégorie qui peut être utilisée pour associer " -"et classer des produits. Elle comprend des attributs pour un identifiant de " -"balise interne et un nom d'affichage convivial." +"classe modélise une balise de catégorie qui peut être utilisée pour associer" +" et classer des produits. Elle comprend des attributs pour un identifiant de" +" balise interne et un nom d'affichage convivial." #: engine/core/models.py:249 msgid "category tag" @@ -1762,8 +1785,8 @@ msgstr "" "avoir des relations hiérarchiques avec d'autres catégories, en prenant en " "charge les relations parent-enfant. La classe comprend des champs pour les " "métadonnées et la représentation visuelle, qui servent de base aux " -"fonctionnalités liées aux catégories. Cette classe est généralement utilisée " -"pour définir et gérer des catégories de produits ou d'autres regroupements " +"fonctionnalités liées aux catégories. Cette classe est généralement utilisée" +" pour définir et gérer des catégories de produits ou d'autres regroupements " "similaires au sein d'une application, permettant aux utilisateurs ou aux " "administrateurs de spécifier le nom, la description et la hiérarchie des " "catégories, ainsi que d'attribuer des attributs tels que des images, des " @@ -1819,13 +1842,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Représente un objet Marque dans le système. Cette classe gère les " "informations et les attributs liés à une marque, y compris son nom, ses " "logos, sa description, ses catégories associées, un nom unique et un ordre " -"de priorité. Elle permet d'organiser et de représenter les données relatives " -"à la marque dans l'application." +"de priorité. Elle permet d'organiser et de représenter les données relatives" +" à la marque dans l'application." #: engine/core/models.py:456 msgid "name of this brand" @@ -1869,8 +1893,8 @@ msgstr "Catégories" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1880,8 +1904,8 @@ msgstr "" "des détails sur la relation entre les fournisseurs, les produits et leurs " "informations de stock, ainsi que des propriétés liées à l'inventaire telles " "que le prix, le prix d'achat, la quantité, l'UGS et les actifs numériques. " -"Elle fait partie du système de gestion des stocks pour permettre le suivi et " -"l'évaluation des produits disponibles auprès de différents fournisseurs." +"Elle fait partie du système de gestion des stocks pour permettre le suivi et" +" l'évaluation des produits disponibles auprès de différents fournisseurs." #: engine/core/models.py:528 msgid "the vendor supplying this product stock" @@ -1903,8 +1927,8 @@ msgstr "Prix de vente" msgid "the product associated with this stock entry" msgstr "Le produit associé à cette entrée de stock" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Produit associé" @@ -1960,8 +1984,8 @@ msgid "" "product data and its associated information within an application." msgstr "" "Représente un produit avec des attributs tels que la catégorie, la marque, " -"les étiquettes, l'état numérique, le nom, la description, le numéro de pièce " -"et l'étiquette. Fournit des propriétés utilitaires connexes pour récupérer " +"les étiquettes, l'état numérique, le nom, la description, le numéro de pièce" +" et l'étiquette. Fournit des propriétés utilitaires connexes pour récupérer " "les évaluations, le nombre de commentaires, le prix, la quantité et le " "nombre total de commandes. Conçue pour être utilisée dans un système de " "commerce électronique ou de gestion des stocks. Cette classe interagit avec " @@ -2007,7 +2031,7 @@ msgstr "Fournir un nom d'identification clair pour le produit" msgid "product name" msgstr "Nom du produit" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Ajouter une description détaillée du produit" @@ -2027,159 +2051,168 @@ msgstr "Numéro de pièce" msgid "stock keeping unit for this product" msgstr "Unité de gestion des stocks pour ce produit" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Faut-il exporter ce produit vers les marchés ?" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Exporter vers les places de marché" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Représente un attribut dans le système. Cette classe est utilisée pour " "définir et gérer les attributs, qui sont des données personnalisables " -"pouvant être associées à d'autres entités. Les attributs sont associés à des " -"catégories, des groupes, des types de valeurs et des noms. Le modèle prend " +"pouvant être associées à d'autres entités. Les attributs sont associés à des" +" catégories, des groupes, des types de valeurs et des noms. Le modèle prend " "en charge plusieurs types de valeurs, notamment les chaînes de caractères, " "les entiers, les flottants, les booléens, les tableaux et les objets. Cela " "permet une structuration dynamique et flexible des données." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Groupe de cet attribut" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Chaîne" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Entier" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Flotteur" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Booléen" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Tableau" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objet" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Type de la valeur de l'attribut" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Type de valeur" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Nom de cet attribut" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Nom de l'attribut" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "est filtrable" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Quels attributs et valeurs peuvent être utilisés pour filtrer cette " "catégorie." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Représente une valeur spécifique pour un attribut lié à un produit. Il relie " -"l'\"attribut\" à une \"valeur\" unique, ce qui permet une meilleure " -"organisation et une représentation dynamique des caractéristiques du produit." +"Représente une valeur spécifique pour un attribut lié à un produit. Il relie" +" l'\"attribut\" à une \"valeur\" unique, ce qui permet une meilleure " +"organisation et une représentation dynamique des caractéristiques du " +"produit." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribut de cette valeur" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Le produit spécifique associé à la valeur de cet attribut" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "La valeur spécifique de cet attribut" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"Représente une image de produit associée à un produit dans le système. Cette " -"classe est conçue pour gérer les images des produits, y compris la " +"Représente une image de produit associée à un produit dans le système. Cette" +" classe est conçue pour gérer les images des produits, y compris la " "fonctionnalité de téléchargement des fichiers d'image, leur association à " -"des produits spécifiques et la détermination de leur ordre d'affichage. Elle " -"comprend également une fonction d'accessibilité avec un texte alternatif " +"des produits spécifiques et la détermination de leur ordre d'affichage. Elle" +" comprend également une fonction d'accessibilité avec un texte alternatif " "pour les images." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Fournir un texte alternatif pour l'image afin d'en faciliter l'accès" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Texte alt de l'image" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Télécharger le fichier image pour ce produit" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Image du produit" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Détermine l'ordre d'affichage des images" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Priorité à l'affichage" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Le produit que cette image représente" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Images du produit" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Représente une campagne promotionnelle pour des produits avec une remise. " "Cette classe est utilisée pour définir et gérer des campagnes " @@ -2189,39 +2222,39 @@ msgstr "" "Elle s'intègre au catalogue de produits pour déterminer les articles " "concernés par la campagne." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Pourcentage de réduction pour les produits sélectionnés" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Pourcentage de réduction" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Donnez un nom unique à cette promotion" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Nom de la promotion" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Promotion description" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Sélectionnez les produits inclus dans cette promotion" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Produits inclus" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promotion" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2232,129 +2265,130 @@ msgstr "" "gestion des produits souhaités. La classe fournit des fonctionnalités " "permettant de gérer une collection de produits, en prenant en charge des " "opérations telles que l'ajout et la suppression de produits, ainsi que des " -"opérations permettant d'ajouter et de supprimer plusieurs produits à la fois." +"opérations permettant d'ajouter et de supprimer plusieurs produits à la " +"fois." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produits que l'utilisateur a marqués comme souhaités" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Utilisateur qui possède cette liste de souhaits" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Propriétaire de la liste de souhaits" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Liste de souhaits" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"Représente un enregistrement documentaire lié à un produit. Cette classe est " -"utilisée pour stocker des informations sur les documentaires liés à des " +"Représente un enregistrement documentaire lié à un produit. Cette classe est" +" utilisée pour stocker des informations sur les documentaires liés à des " "produits spécifiques, y compris les téléchargements de fichiers et leurs " "métadonnées. Elle contient des méthodes et des propriétés permettant de " "gérer le type de fichier et le chemin de stockage des fichiers " "documentaires. Elle étend les fonctionnalités de mixins spécifiques et " "fournit des fonctionnalités personnalisées supplémentaires." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentaire" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentaires" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Non résolu" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Représente une entité d'adresse qui comprend des détails de localisation et " "des associations avec un utilisateur. Elle fournit des fonctionnalités de " "stockage de données géographiques et d'adresses, ainsi qu'une intégration " "avec des services de géocodage. Cette classe est conçue pour stocker des " -"informations détaillées sur les adresses, y compris des éléments tels que la " -"rue, la ville, la région, le pays et la géolocalisation (longitude et " +"informations détaillées sur les adresses, y compris des éléments tels que la" +" rue, la ville, la région, le pays et la géolocalisation (longitude et " "latitude). Elle prend en charge l'intégration avec les API de géocodage, ce " -"qui permet de stocker les réponses brutes de l'API en vue d'un traitement ou " -"d'une inspection ultérieurs. La classe permet également d'associer une " +"qui permet de stocker les réponses brutes de l'API en vue d'un traitement ou" +" d'une inspection ultérieurs. La classe permet également d'associer une " "adresse à un utilisateur, ce qui facilite le traitement personnalisé des " "données." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Ligne d'adresse du client" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Ligne d'adresse" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Rue" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "District" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Ville" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Région" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Code postal" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Pays" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Point de géolocalisation (longitude, latitude)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Réponse JSON complète du géocodeur pour cette adresse" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Réponse JSON stockée du service de géocodage" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adresse" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresses" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2365,80 +2399,83 @@ msgid "" msgstr "" "Représente un code promotionnel qui peut être utilisé pour des remises, en " "gérant sa validité, le type de remise et l'application. La classe PromoCode " -"stocke les détails d'un code promotionnel, notamment son identifiant unique, " -"les propriétés de la remise (montant ou pourcentage), la période de " +"stocke les détails d'un code promotionnel, notamment son identifiant unique," +" les propriétés de la remise (montant ou pourcentage), la période de " "validité, l'utilisateur associé (le cas échéant) et l'état de son " "utilisation. Elle comprend une fonctionnalité permettant de valider et " "d'appliquer le code promotionnel à une commande tout en veillant à ce que " "les contraintes soient respectées." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" -msgstr "Code unique utilisé par un utilisateur pour bénéficier d'une réduction" +msgstr "" +"Code unique utilisé par un utilisateur pour bénéficier d'une réduction" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identifiant du code promotionnel" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" -msgstr "Montant fixe de la remise appliqué si le pourcentage n'est pas utilisé" +msgstr "" +"Montant fixe de la remise appliqué si le pourcentage n'est pas utilisé" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Montant de l'escompte fixe" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" -msgstr "Pourcentage de réduction appliqué si le montant fixe n'est pas utilisé" +msgstr "" +"Pourcentage de réduction appliqué si le montant fixe n'est pas utilisé" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Pourcentage de réduction" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Date d'expiration du code promotionnel" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Heure de fin de validité" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Date à partir de laquelle ce code promotionnel est valable" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Heure de début de validité" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -"Date à laquelle le code promotionnel a été utilisé, vide s'il n'a pas encore " -"été utilisé." +"Date à laquelle le code promotionnel a été utilisé, vide s'il n'a pas encore" +" été utilisé." -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Horodatage de l'utilisation" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Utilisateur assigné à ce code promo, le cas échéant" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Utilisateur assigné" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Code promo" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Codes promotionnels" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2446,172 +2483,173 @@ msgstr "" "Un seul type de remise doit être défini (montant ou pourcentage), mais pas " "les deux ni aucun des deux." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Le code promotionnel a déjà été utilisé" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Type de réduction non valide pour le code promo {self.uuid} !" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"Représente une commande passée par un utilisateur. Cette classe modélise une " -"commande dans l'application, y compris ses différents attributs tels que les " -"informations de facturation et d'expédition, le statut, l'utilisateur " -"associé, les notifications et les opérations connexes. Les commandes peuvent " -"être associées à des produits, des promotions peuvent être appliquées, des " -"adresses peuvent être définies et les détails d'expédition ou de facturation " -"peuvent être mis à jour. De même, la fonctionnalité permet de gérer les " +"Représente une commande passée par un utilisateur. Cette classe modélise une" +" commande dans l'application, y compris ses différents attributs tels que " +"les informations de facturation et d'expédition, le statut, l'utilisateur " +"associé, les notifications et les opérations connexes. Les commandes peuvent" +" être associées à des produits, des promotions peuvent être appliquées, des " +"adresses peuvent être définies et les détails d'expédition ou de facturation" +" peuvent être mis à jour. De même, la fonctionnalité permet de gérer les " "produits dans le cycle de vie de la commande." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "L'adresse de facturation utilisée pour cette commande" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Code promo optionnel appliqué à cette commande" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Code promo appliqué" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "L'adresse de livraison utilisée pour cette commande" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Adresse de livraison" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Statut actuel de la commande dans son cycle de vie" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Statut de la commande" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Structure JSON des notifications à afficher aux utilisateurs ; dans " "l'interface d'administration, la vue en tableau est utilisée." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Représentation JSON des attributs de cette commande" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "L'utilisateur qui a passé la commande" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Utilisateur" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "L'heure à laquelle la commande a été finalisée." -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Temps d'achat" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Un identifiant lisible par l'homme pour la commande" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID lisible par l'homme" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Commande" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Un utilisateur ne peut avoir qu'un seul ordre en cours à la fois !" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" -"Vous ne pouvez pas ajouter de produits à une commande qui n'est pas en cours." +"Vous ne pouvez pas ajouter de produits à une commande qui n'est pas en " +"cours." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Vous ne pouvez pas ajouter des produits inactifs à la commande" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" "Vous ne pouvez pas ajouter plus de produits que ceux disponibles en stock" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Vous ne pouvez pas retirer des produits d'une commande qui n'est pas en " "cours." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} n'existe pas avec la requête <{query}> !" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Le code promotionnel n'existe pas" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Vous ne pouvez acheter que des produits physiques dont l'adresse de " "livraison est spécifiée !" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "L'adresse n'existe pas" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "Vous ne pouvez pas acheter en ce moment, veuillez réessayer dans quelques " "minutes." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Valeur de force non valide" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Vous ne pouvez pas acheter une commande vide !" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" "Vous ne pouvez pas retirer des produits d'une commande qui n'est pas en " "cours." -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Un utilisateur sans solde ne peut pas acheter avec un solde !" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Insuffisance de fonds pour compléter la commande" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2620,7 +2658,7 @@ msgstr "" "informations suivantes : nom du client, courriel du client, numéro de " "téléphone du client" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2628,7 +2666,7 @@ msgstr "" "Méthode de paiement non valide : {payment_method} de " "{available_payment_methods} !" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2644,33 +2682,34 @@ msgstr "" "La classe utilise des champs de base de données pour modéliser et gérer " "efficacement les données de feedback." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Commentaires des utilisateurs sur leur expérience du produit" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Commentaires" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Fait référence au produit spécifique d'une commande sur lequel porte le " "retour d'information." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Produit de commande apparenté" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Note attribuée par l'utilisateur au produit" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Evaluation du produit" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2682,128 +2721,130 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"Représente les produits associés aux commandes et leurs attributs. Le modèle " -"OrderProduct conserve les informations relatives à un produit faisant partie " -"d'une commande, y compris des détails tels que le prix d'achat, la quantité, " -"les attributs du produit et le statut. Il gère les notifications destinées à " -"l'utilisateur et aux administrateurs, ainsi que des opérations telles que le " -"renvoi du solde du produit ou l'ajout de commentaires. Ce modèle fournit " -"également des méthodes et des propriétés qui prennent en charge la logique " -"commerciale, comme le calcul du prix total ou la génération d'une URL de " -"téléchargement pour les produits numériques. Le modèle s'intègre aux modèles " -"de commande et de produit et stocke une référence à ces derniers." +"Représente les produits associés aux commandes et leurs attributs. Le modèle" +" OrderProduct conserve les informations relatives à un produit faisant " +"partie d'une commande, y compris des détails tels que le prix d'achat, la " +"quantité, les attributs du produit et le statut. Il gère les notifications " +"destinées à l'utilisateur et aux administrateurs, ainsi que des opérations " +"telles que le renvoi du solde du produit ou l'ajout de commentaires. Ce " +"modèle fournit également des méthodes et des propriétés qui prennent en " +"charge la logique commerciale, comme le calcul du prix total ou la " +"génération d'une URL de téléchargement pour les produits numériques. Le " +"modèle s'intègre aux modèles de commande et de produit et stocke une " +"référence à ces derniers." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Le prix payé par le client pour ce produit au moment de l'achat" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Prix d'achat au moment de la commande" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" -msgstr "Commentaires internes pour les administrateurs sur ce produit commandé" +msgstr "" +"Commentaires internes pour les administrateurs sur ce produit commandé" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Commentaires internes" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Notifications aux utilisateurs" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Représentation JSON des attributs de cet élément" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Attributs du produit ordonnés" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Référence à l'ordre parent qui contient ce produit" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Ordonnance parentale" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Le produit spécifique associé à cette ligne de commande" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Quantité de ce produit spécifique dans la commande" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Quantité de produits" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Statut actuel de ce produit dans la commande" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Statut de la ligne de produits" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Le produit doit être associé à une commande !" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Mauvaise action spécifiée pour le retour d'information : {action} !" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" "Vous ne pouvez pas retirer des produits d'une commande qui n'est pas en " "cours." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nom" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL de l'intégration" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Références d'authentification" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Vous ne pouvez avoir qu'un seul fournisseur de CRM par défaut" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Lien CRM de la commande" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Liens CRM des commandes" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Représente la fonctionnalité de téléchargement des ressources numériques " "associées aux commandes. La classe DigitalAssetDownload permet de gérer et " @@ -2813,11 +2854,11 @@ msgstr "" "méthode permettant de générer une URL pour le téléchargement de l'actif " "lorsque la commande associée est terminée." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Télécharger" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Téléchargements" @@ -3018,8 +3059,7 @@ msgstr "Bonjour %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Merci pour votre commande #%(order.pk)s ! Nous avons le plaisir de vous " @@ -3134,8 +3174,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Nous vous remercions pour votre commande ! Nous avons le plaisir de " @@ -3174,8 +3213,8 @@ msgstr "Les données et le délai d'attente sont tous deux nécessaires" #: engine/core/utils/caching.py:52 msgid "invalid timeout value, it must be between 0 and 216000 seconds" msgstr "" -"La valeur du délai d'attente n'est pas valide, elle doit être comprise entre " -"0 et 216000 secondes." +"La valeur du délai d'attente n'est pas valide, elle doit être comprise entre" +" 0 et 216000 secondes." #: engine/core/utils/emailing.py:27 #, python-brace-format @@ -3227,8 +3266,8 @@ msgid "" "Content-Type header for XML." msgstr "" "Gère la réponse détaillée d'un plan du site. Cette fonction traite la " -"demande, récupère la réponse détaillée appropriée du plan du site et définit " -"l'en-tête Content-Type pour XML." +"demande, récupère la réponse détaillée appropriée du plan du site et définit" +" l'en-tête Content-Type pour XML." #: engine/core/views.py:155 msgid "" @@ -3272,15 +3311,10 @@ msgstr "Gère la logique de l'achat en tant qu'entreprise sans enregistrement." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gère le téléchargement d'un bien numérique associé à une commande.\n" -"Cette fonction tente de servir le fichier de ressource numérique situé dans " -"le répertoire de stockage du projet. Si le fichier n'est pas trouvé, une " -"erreur HTTP 404 est générée pour indiquer que la ressource n'est pas " -"disponible." +"Cette fonction tente de servir le fichier de ressource numérique situé dans le répertoire de stockage du projet. Si le fichier n'est pas trouvé, une erreur HTTP 404 est générée pour indiquer que la ressource n'est pas disponible." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3309,29 +3343,25 @@ msgstr "favicon introuvable" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gère les demandes de favicon d'un site web.\n" -"Cette fonction tente de servir le fichier favicon situé dans le répertoire " -"statique du projet. Si le fichier favicon n'est pas trouvé, une erreur HTTP " -"404 est générée pour indiquer que la ressource n'est pas disponible." +"Cette fonction tente de servir le fichier favicon situé dans le répertoire statique du projet. Si le fichier favicon n'est pas trouvé, une erreur HTTP 404 est générée pour indiquer que la ressource n'est pas disponible." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Redirige la requête vers la page d'index de l'interface d'administration. " -"Cette fonction gère les requêtes HTTP entrantes et les redirige vers la page " -"d'index de l'interface d'administration de Django. Elle utilise la fonction " -"`redirect` de Django pour gérer la redirection HTTP." +"Cette fonction gère les requêtes HTTP entrantes et les redirige vers la page" +" d'index de l'interface d'administration de Django. Elle utilise la fonction" +" `redirect` de Django pour gérer la redirection HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Renvoie la version actuelle d'eVibes." +msgid "Returns current version of the Schon. " +msgstr "Renvoie la version actuelle d'Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3344,25 +3374,26 @@ msgstr "Renvoie les variables personnalisées pour le tableau de bord." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Définit un jeu de vues pour la gestion des opérations liées à Evibes. La " -"classe EvibesViewSet hérite de ModelViewSet et fournit des fonctionnalités " -"permettant de gérer les actions et les opérations sur les entités Evibes. " +"Définit un jeu de vues pour la gestion des opérations liées à schon. La " +"classe schonViewSet hérite de ModelViewSet et fournit des fonctionnalités " +"permettant de gérer les actions et les opérations sur les entités schon. " "Elle prend en charge les classes de sérialiseurs dynamiques en fonction de " "l'action en cours, les autorisations personnalisables et les formats de " "rendu." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Représente un jeu de vues pour la gestion des objets AttributeGroup. Gère " "les opérations liées à l'AttributeGroup, notamment le filtrage, la " @@ -3392,14 +3423,15 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Un viewset pour la gestion des objets AttributeValue. Ce viewset fournit des " -"fonctionnalités pour lister, récupérer, créer, mettre à jour et supprimer " +"Un viewset pour la gestion des objets AttributeValue. Ce viewset fournit des" +" fonctionnalités pour lister, récupérer, créer, mettre à jour et supprimer " "des objets AttributeValue. Il s'intègre aux mécanismes de viewset du cadre " "REST de Django et utilise les sérialiseurs appropriés pour les différentes " -"actions. Les capacités de filtrage sont fournies par le backend DjangoFilter." +"actions. Les capacités de filtrage sont fournies par le backend " +"DjangoFilter." #: engine/core/viewsets.py:217 msgid "" @@ -3410,8 +3442,8 @@ msgid "" "can access specific data." msgstr "" "Gère les vues pour les opérations liées à la catégorie. La classe " -"CategoryViewSet est responsable de la gestion des opérations liées au modèle " -"Category dans le système. Elle permet d'extraire, de filtrer et de " +"CategoryViewSet est responsable de la gestion des opérations liées au modèle" +" Category dans le système. Elle permet d'extraire, de filtrer et de " "sérialiser les données relatives aux catégories. Le jeu de vues applique " "également des permissions pour s'assurer que seuls les utilisateurs " "autorisés peuvent accéder à des données spécifiques." @@ -3425,16 +3457,16 @@ msgid "" msgstr "" "Représente un jeu de vues pour la gestion des instances de marque. Cette " "classe fournit des fonctionnalités d'interrogation, de filtrage et de " -"sérialisation des objets Brand. Elle utilise le cadre ViewSet de Django pour " -"simplifier la mise en œuvre des points d'extrémité de l'API pour les objets " -"Brand." +"sérialisation des objets Brand. Elle utilise le cadre ViewSet de Django pour" +" simplifier la mise en œuvre des points d'extrémité de l'API pour les objets" +" Brand." #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3442,10 +3474,10 @@ msgstr "" "Gère les opérations liées au modèle `Product` dans le système. Cette classe " "fournit un viewset pour gérer les produits, y compris leur filtrage, leur " "sérialisation et les opérations sur des instances spécifiques. Elle s'étend " -"à partir de `EvibesViewSet` pour utiliser des fonctionnalités communes et " +"à partir de `schonViewSet` pour utiliser des fonctionnalités communes et " "s'intègre au framework REST de Django pour les opérations API RESTful. Il " -"comprend des méthodes pour récupérer les détails d'un produit, appliquer des " -"permissions et accéder aux commentaires connexes d'un produit." +"comprend des méthodes pour récupérer les détails d'un produit, appliquer des" +" permissions et accéder aux commentaires connexes d'un produit." #: engine/core/viewsets.py:605 msgid "" @@ -3455,8 +3487,8 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Représente un jeu de vues pour la gestion des objets Vendeur. Ce jeu de vues " -"permet d'extraire, de filtrer et de sérialiser les données relatives aux " +"Représente un jeu de vues pour la gestion des objets Vendeur. Ce jeu de vues" +" permet d'extraire, de filtrer et de sérialiser les données relatives aux " "vendeurs. Il définit l'ensemble de requêtes, les configurations de filtrage " "et les classes de sérialisation utilisées pour gérer les différentes " "actions. L'objectif de cette classe est de fournir un accès simplifié aux " @@ -3468,8 +3500,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Représentation d'un ensemble de vues gérant des objets de retour " @@ -3478,17 +3510,17 @@ msgstr "" "l'extraction de détails. L'objectif de ce jeu de vues est de fournir " "différents sérialiseurs pour différentes actions et d'implémenter une " "gestion basée sur les permissions des objets Feedback accessibles. Il étend " -"la classe de base `EvibesViewSet` et utilise le système de filtrage de " -"Django pour l'interrogation des données." +"la classe de base `schonViewSet` et utilise le système de filtrage de Django" +" pour l'interrogation des données." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet pour la gestion des commandes et des opérations connexes. Cette " @@ -3505,15 +3537,15 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Fournit un jeu de vues pour la gestion des entités OrderProduct. Ce jeu de " "vues permet d'effectuer des opérations CRUD et des actions personnalisées " "spécifiques au modèle OrderProduct. Il inclut le filtrage, les contrôles de " -"permission et le changement de sérialiseur en fonction de l'action demandée. " -"En outre, il fournit une action détaillée pour gérer le retour " +"permission et le changement de sérialiseur en fonction de l'action demandée." +" En outre, il fournit une action détaillée pour gérer le retour " "d'informations sur les instances OrderProduct." #: engine/core/viewsets.py:974 @@ -3540,8 +3572,8 @@ msgstr "Gère les opérations liées aux données de stock dans le système." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3549,9 +3581,9 @@ msgstr "" "Jeu de vues pour la gestion des opérations de la liste de souhaits. Le jeu " "de vues WishlistViewSet fournit des points d'extrémité pour interagir avec " "la liste de souhaits d'un utilisateur, permettant la récupération, la " -"modification et la personnalisation des produits de la liste de souhaits. Ce " -"jeu de vues facilite les fonctionnalités telles que l'ajout, la suppression " -"et les actions en bloc pour les produits de la liste de souhaits. Des " +"modification et la personnalisation des produits de la liste de souhaits. Ce" +" jeu de vues facilite les fonctionnalités telles que l'ajout, la suppression" +" et les actions en bloc pour les produits de la liste de souhaits. Des " "contrôles de permissions sont intégrés pour s'assurer que les utilisateurs " "ne peuvent gérer que leur propre liste de souhaits, sauf si des permissions " "explicites sont accordées." @@ -3565,11 +3597,11 @@ msgid "" "on the request context." msgstr "" "Cette classe fournit une fonctionnalité de viewset pour la gestion des " -"objets `Address`. La classe AddressViewSet permet d'effectuer des opérations " -"CRUD, des filtrages et des actions personnalisées liées aux entités adresse. " -"Elle inclut des comportements spécialisés pour différentes méthodes HTTP, " -"des dérogations au sérialiseur et une gestion des autorisations basée sur le " -"contexte de la demande." +"objets `Address`. La classe AddressViewSet permet d'effectuer des opérations" +" CRUD, des filtrages et des actions personnalisées liées aux entités " +"adresse. Elle inclut des comportements spécialisés pour différentes méthodes" +" HTTP, des dérogations au sérialiseur et une gestion des autorisations basée" +" sur le contexte de la demande." #: engine/core/viewsets.py:1254 #, python-brace-format diff --git a/engine/core/locale/he_IL/LC_MESSAGES/django.mo b/engine/core/locale/he_IL/LC_MESSAGES/django.mo index a3973c3f..587340f6 100644 Binary files a/engine/core/locale/he_IL/LC_MESSAGES/django.mo and b/engine/core/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/he_IL/LC_MESSAGES/django.po b/engine/core/locale/he_IL/LC_MESSAGES/django.po index 52c98b3a..21c3c820 100644 --- a/engine/core/locale/he_IL/LC_MESSAGES/django.po +++ b/engine/core/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "פעיל" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "אם מוגדר כ-false, אובייקט זה לא יהיה גלוי למשתמשים ללא ההרשאה הנדרשת." #: engine/core/abstract.py:26 engine/core/choices.py:18 @@ -72,7 +73,7 @@ msgstr "חותמות זמן" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "הפעל את %(verbose_name_plural)s שנבחר" #: engine/core/admin.py:166 @@ -81,21 +82,21 @@ msgstr "הפריטים שנבחרו הופעלו!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "השבת את %(verbose_name_plural)s שנבחר" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "השבת את %(verbose_name_plural)s הנבחר" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "פריטים נבחרים הושבתו!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "ערך התכונה" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "ערכי תכונות" @@ -115,12 +116,12 @@ msgstr "מלאי" msgid "stocks" msgstr "מניות" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "הזמן מוצר" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "הזמנת מוצרים" @@ -128,7 +129,31 @@ msgstr "הזמנת מוצרים" msgid "children" msgstr "ילדים" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "יש תמונות" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "ייצא את %(verbose_name_plural)s הנבחר לפידים של שווקים" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "ה-%(verbose_name_plural)s שנבחרו סומנו לייצוא." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "חסום את %(verbose_name_plural)s מהפידים של השווקים" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "%(verbose_name_plural)s שנבחרו נאסרו לייצוא." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "תצורה" @@ -152,7 +177,8 @@ msgstr "נמסר" msgid "canceled" msgstr "בוטל" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "נכשל" @@ -265,7 +291,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "שכתוב קבוצת תכונות קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "שכתוב שדות מסוימים בקבוצת תכונות קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" @@ -314,7 +341,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "שכתוב ערך תכונה קיים תוך שמירת תכונות שאינן ניתנות לעריכה" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "שכתוב שדות מסוימים של ערך תכונה קיים תוך שמירת שדות שאינם ניתנים לעריכה" @@ -368,8 +396,8 @@ msgstr "למשתמשים שאינם אנשי צוות, מוצגות רק ההז #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "חיפוש תת-מחרוזת ללא הבחנה בין אותיות גדולות וקטנות ב-human_readable_id, " "order_products.product.name ו-order_products.product.partnumber" @@ -407,9 +435,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "מיין לפי אחד מהפרמטרים הבאים: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. הוסף קידומת '-' עבור מיון יורד " @@ -453,8 +481,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"מסיים את רכישת ההזמנה. אם נעשה שימוש ב-`force_balance`, הרכישה תושלם באמצעות " -"היתרה של המשתמש; אם נעשה שימוש ב-`force_payment`, תתבצע עסקה." +"מסיים את רכישת ההזמנה. אם נעשה שימוש ב-`force_balance`, הרכישה תושלם באמצעות" +" היתרה של המשתמש; אם נעשה שימוש ב-`force_payment`, תתבצע עסקה." #: engine/core/docs/drf/viewsets.py:427 msgid "retrieve current pending order of a user" @@ -511,7 +539,8 @@ msgstr "הסר מוצר מההזמנה, הכמויות לא ייספרו" msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "מסיר רשימת מוצרים מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." +msgstr "" +"מסיר רשימת מוצרים מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." #: engine/core/docs/drf/viewsets.py:497 msgid "list all wishlists (simple view)" @@ -590,28 +619,15 @@ msgstr "מסיר מוצרים רבים מרשימת המשאלות באמצעו msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -"סינון לפי זוגות שם/ערך של תכונה אחת או יותר. • **תחביר**: `attr_name=method-" -"value[;attr2=method2-value2]…` • **שיטות** (ברירת המחדל היא `icontains` אם " -"לא צוין): `iexact`, `exact`, `icontains`, `contains`, `isnull`, " -"`startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, " -"`lt`, `lte`, `gt`, `gte`, `in` • **הקלדת ערכים**: תחילה מתבצע ניסיון JSON " -"(כך שניתן להעביר רשימות/מילונים), `true`/`false` עבור ערכי בוליאניים, מספרים " -"שלמים, מספרים צפים; אחרת מטופל כמחרוזת. • **Base64**: קידומת עם `b64-` כדי " -"לקודד את הערך הגולמי ב-base64 בטוח ל-URL. \n" -"דוגמאות: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" +"סינון לפי זוגות שם/ערך של תכונה אחת או יותר. • **תחביר**: `attr_name=method-value[;attr2=method2-value2]…` • **שיטות** (ברירת המחדל היא `icontains` אם לא צוין): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` • **הקלדת ערכים**: תחילה מתבצע ניסיון JSON (כך שניתן להעביר רשימות/מילונים), `true`/`false` עבור ערכי בוליאניים, מספרים שלמים, מספרים צפים; אחרת מטופל כמחרוזת. • **Base64**: קידומת עם `b64-` כדי לקודד את הערך הגולמי ב-base64 בטוח ל-URL. \n" +"דוגמאות: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 msgid "list all products (simple view)" @@ -623,12 +639,11 @@ msgstr "(מדויק) UUID של המוצר" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"רשימה של שדות למיון, מופרדים בפסיקים. קידומת `-` למיון יורד. **מותר:** uuid, " -"rating, name, slug, created, modified, price, random" +"רשימה של שדות למיון, מופרדים בפסיקים. קידומת `-` למיון יורד. **מותר:** uuid," +" rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -927,7 +942,8 @@ msgstr "שכתוב תגית מוצר קיימת תוך שמירת תוכן שא #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "שכתוב שדות מסוימים בתגית מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" +msgstr "" +"שכתוב שדות מסוימים בתגית מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" #: engine/core/elasticsearch/__init__.py:128 #: engine/core/elasticsearch/__init__.py:629 @@ -1161,8 +1177,8 @@ msgstr "קנה הזמנה" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "אנא שלחו את התכונות כמחרוזת מעוצבת כך: attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:580 @@ -1182,9 +1198,9 @@ msgstr "המוצר {order_product_uuid} לא נמצא!" msgid "original address string provided by the user" msgstr "מחרוזת הכתובת המקורית שסופקה על ידי המשתמש" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1200,8 +1216,8 @@ msgstr "ElasticSearch - עובד כמו קסם" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "תכונות" @@ -1237,7 +1253,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "אילו תכונות וערכים ניתן להשתמש בהם לסינון קטגוריה זו." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "מחירים מינימליים ומקסימליים עבור מוצרים בקטגוריה זו, אם זמינים." #: engine/core/graphene/object_types.py:234 @@ -1274,7 +1291,7 @@ msgid "represents feedback from a user." msgstr "מייצג משוב ממשתמש." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "הודעות" @@ -1282,7 +1299,7 @@ msgstr "הודעות" msgid "download url for this order product if applicable" msgstr "כתובת URL להורדת המוצר שהוזמן, אם רלוונטי" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "משוב" @@ -1290,7 +1307,7 @@ msgstr "משוב" msgid "a list of order products in this order" msgstr "רשימת המוצרים בהזמנה זו" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "כתובת לחיוב" @@ -1317,7 +1334,7 @@ msgstr "האם כל המוצרים בהזמנה הם דיגיטליים?" msgid "transactions for this order" msgstr "עסקאות עבור הזמנה זו" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "הזמנות" @@ -1334,7 +1351,7 @@ msgstr "תמונות המוצר" msgid "category" msgstr "קטגוריה" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "משובים" @@ -1375,7 +1392,7 @@ msgstr "מוצרים זמינים רק להזמנות אישיות" msgid "discount price" msgstr "מחיר מוזל" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "מוצרים" @@ -1387,7 +1404,7 @@ msgstr "קודי קידום מכירות" msgid "products on sale" msgstr "מוצרים במבצע" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "מבצעים" @@ -1395,7 +1412,7 @@ msgstr "מבצעים" msgid "vendor" msgstr "ספק" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1403,11 +1420,11 @@ msgstr "ספק" msgid "product" msgstr "מוצר" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "מוצרים ברשימת המשאלות" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "רשימות משאלות" @@ -1521,7 +1538,7 @@ msgstr "קבוצת תכונות הורה" msgid "attribute group's name" msgstr "שם קבוצת התכונות" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "קבוצת תכונות" @@ -1591,8 +1608,8 @@ msgid "" msgstr "" "מייצג תגית מוצר המשמשת לסיווג או זיהוי מוצרים. מחלקת ProductTag נועדה לזהות " "ולסווג מוצרים באופן ייחודי באמצעות שילוב של מזהה תגית פנימי ושם תצוגה " -"ידידותי למשתמש. היא תומכת בפעולות המיוצאות באמצעות mixins ומספקת התאמה אישית " -"של מטא-נתונים למטרות ניהוליות." +"ידידותי למשתמש. היא תומכת בפעולות המיוצאות באמצעות mixins ומספקת התאמה אישית" +" של מטא-נתונים למטרות ניהוליות." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1621,8 +1638,8 @@ msgid "" "attributes for an internal tag identifier and a user-friendly display name." msgstr "" "מייצג תווית קטגוריה המשמשת למוצרים. מחלקה זו מדגמת תווית קטגוריה שניתן " -"להשתמש בה כדי לקשר ולסווג מוצרים. היא כוללת תכונות עבור מזהה תווית פנימי ושם " -"תצוגה ידידותי למשתמש." +"להשתמש בה כדי לקשר ולסווג מוצרים. היא כוללת תכונות עבור מזהה תווית פנימי ושם" +" תצוגה ידידותי למשתמש." #: engine/core/models.py:249 msgid "category tag" @@ -1700,10 +1717,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"מייצג אובייקט מותג במערכת. מחלקה זו מטפלת במידע ובתכונות הקשורים למותג, כולל " -"שמו, לוגואים, תיאור, קטגוריות קשורות, סלוגן ייחודי וסדר עדיפות. היא מאפשרת " +"מייצג אובייקט מותג במערכת. מחלקה זו מטפלת במידע ובתכונות הקשורים למותג, כולל" +" שמו, לוגואים, תיאור, קטגוריות קשורות, סלוגן ייחודי וסדר עדיפות. היא מאפשרת " "ארגון וייצוג של נתונים הקשורים למותג בתוך היישום." #: engine/core/models.py:456 @@ -1748,8 +1766,8 @@ msgstr "קטגוריות" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1780,8 +1798,8 @@ msgstr "מחיר המכירה" msgid "the product associated with this stock entry" msgstr "המוצר הקשור לרישום המלאי הזה" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "מוצר נלווה" @@ -1837,11 +1855,11 @@ msgid "" "product data and its associated information within an application." msgstr "" "מייצג מוצר עם תכונות כגון קטגוריה, מותג, תגיות, סטטוס דיגיטלי, שם, תיאור, " -"מספר חלק ו-slug. מספק תכונות שירות נלוות לאחזור דירוגים, ספירת משובים, מחיר, " -"כמות והזמנות סה\"כ. מיועד לשימוש במערכת המטפלת במסחר אלקטרוני או בניהול " +"מספר חלק ו-slug. מספק תכונות שירות נלוות לאחזור דירוגים, ספירת משובים, מחיר," +" כמות והזמנות סה\"כ. מיועד לשימוש במערכת המטפלת במסחר אלקטרוני או בניהול " "מלאי. מחלקה זו מתקשרת עם מודלים נלווים (כגון קטגוריה, מותג ותגית מוצר) " -"ומנהלת את המטמון עבור תכונות הנגישות בתדירות גבוהה כדי לשפר את הביצועים. הוא " -"משמש להגדרה ולעיבוד נתוני מוצר והמידע הקשור אליו בתוך יישום." +"ומנהלת את המטמון עבור תכונות הנגישות בתדירות גבוהה כדי לשפר את הביצועים. הוא" +" משמש להגדרה ולעיבוד נתוני מוצר והמידע הקשור אליו בתוך יישום." #: engine/core/models.py:595 msgid "category this product belongs to" @@ -1879,7 +1897,7 @@ msgstr "ספק שם מזהה ברור למוצר" msgid "product name" msgstr "שם המוצר" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "הוסף תיאור מפורט של המוצר" @@ -1899,103 +1917,112 @@ msgstr "מספר חלק" msgid "stock keeping unit for this product" msgstr "יחידת אחסון מלאי עבור מוצר זה" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "האם לייצא מוצר זה לשווקים" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "ייצוא לשווקים" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "מייצג תכונה במערכת. מחלקה זו משמשת להגדרת תכונות ולניהולן. תכונות הן נתונים " -"הניתנים להתאמה אישית, שניתן לקשר לישויות אחרות. לתכונות יש קטגוריות, קבוצות, " -"סוגי ערכים ושמות משויכים. המודל תומך בסוגים רבים של ערכים, כולל מחרוזת, מספר " -"שלם, מספר צף, בוליאני, מערך ואובייקט. הדבר מאפשר בניית נתונים דינמית וגמישה." +"הניתנים להתאמה אישית, שניתן לקשר לישויות אחרות. לתכונות יש קטגוריות, קבוצות," +" סוגי ערכים ושמות משויכים. המודל תומך בסוגים רבים של ערכים, כולל מחרוזת, " +"מספר שלם, מספר צף, בוליאני, מערך ואובייקט. הדבר מאפשר בניית נתונים דינמית " +"וגמישה." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "קבוצה של תכונה זו" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "מחרוזת" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "יושרה" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "צף" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "בוליאני" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "מערך" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "אובייקט" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "סוג ערך התכונה" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "סוג ערך" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "שם התכונה הזו" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "שם התכונה" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "ניתן לסינון" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "מציין אם ניתן להשתמש בתכונה זו לצורך סינון או לא" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "תכונה" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "מייצג ערך ספציפי עבור תכונה המקושרת למוצר. הוא מקשר את ה\"תכונה\" ל\"ערך\" " "ייחודי, ומאפשר ארגון טוב יותר וייצוג דינמי של מאפייני המוצר." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "תכונה של ערך זה" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "המוצר הספציפי הקשור לערך של תכונה זו" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "הערך הספציפי עבור תכונה זו" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2003,85 +2030,85 @@ msgstr "" "כולל פונקציונליות להעלאת קבצי תמונה, שיוכם למוצרים ספציפיים וקביעת סדר " "התצוגה שלהם. היא כוללת גם תכונת נגישות עם טקסט חלופי לתמונות." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "ספק טקסט חלופי לתמונה לצורך נגישות" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "טקסט חלופי לתמונה" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "העלה את קובץ התמונה עבור מוצר זה" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "תמונת מוצר" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "קובע את סדר הצגת התמונות" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "עדיפות תצוגה" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "המוצר שהדימוי הזה מייצג" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "תמונות מוצרים" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "מייצג קמפיין קידום מכירות למוצרים בהנחה. מחלקה זו משמשת להגדרת וניהול " "קמפיינים לקידום מכירות המציעים הנחה באחוזים על מוצרים. המחלקה כוללת תכונות " "להגדרת שיעור ההנחה, מתן פרטים על המבצע וקישורו למוצרים הרלוונטיים. היא " "משתלבת בקטלוג המוצרים כדי לקבוע את הפריטים המושפעים בקמפיין." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "אחוז ההנחה עבור המוצרים שנבחרו" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "אחוז ההנחה" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "ציין שם ייחודי לקידום מכירות זה" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "שם המבצע" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "תיאור המבצע" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "בחר אילו מוצרים כלולים במבצע זה" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "מוצרים כלולים" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "קידום" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2092,119 +2119,120 @@ msgstr "" "פונקציונליות לניהול אוסף מוצרים, תומכת בפעולות כגון הוספה והסרה של מוצרים, " "וכן תומכת בפעולות להוספה והסרה של מספר מוצרים בבת אחת." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "מוצרים שהמשתמש סימן כנחשקים" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "המשתמש שבבעלותו רשימת המשאלות הזו" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "בעל רשימת המשאלות" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "רשימת משאלות" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "מייצג תיעוד הקשור למוצר. מחלקה זו משמשת לאחסון מידע על תיעוד הקשור למוצרים " "ספציפיים, כולל העלאת קבצים ומטא-נתונים שלהם. היא מכילה שיטות ותכונות לטיפול " "בסוג הקובץ ובנתיב האחסון של קבצי התיעוד. היא מרחיבה את הפונקציונליות של " "מיקסים ספציפיים ומספקת תכונות מותאמות אישית נוספות." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "סרט תיעודי" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "סרטים תיעודיים" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "לא פתור" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "מייצג ישות כתובת הכוללת פרטים על מיקום וקשרים עם משתמש. מספק פונקציונליות " "לאחסון נתונים גיאוגרפיים וכתובות, וכן אינטגרציה עם שירותי קידוד גיאוגרפי. " -"מחלקה זו נועדה לאחסן מידע מפורט על כתובות, כולל רכיבים כגון רחוב, עיר, אזור, " -"מדינה ומיקום גיאוגרפי (קו אורך וקו רוחב). היא תומכת באינטגרציה עם ממשקי API " -"לקידוד גיאוגרפי, ומאפשרת אחסון של תגובות API גולמיות לעיבוד או בדיקה נוספים. " -"הסוג גם מאפשר לקשר כתובת למשתמש, מה שמקל על טיפול בנתונים מותאמים אישית." +"מחלקה זו נועדה לאחסן מידע מפורט על כתובות, כולל רכיבים כגון רחוב, עיר, אזור," +" מדינה ומיקום גיאוגרפי (קו אורך וקו רוחב). היא תומכת באינטגרציה עם ממשקי API" +" לקידוד גיאוגרפי, ומאפשרת אחסון של תגובות API גולמיות לעיבוד או בדיקה " +"נוספים. הסוג גם מאפשר לקשר כתובת למשתמש, מה שמקל על טיפול בנתונים מותאמים " +"אישית." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "שורת כתובת עבור הלקוח" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "שורת כתובת" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "רחוב" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "מחוז" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "עיר" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "אזור" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "מיקוד" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "מדינה" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "נקודת מיקום גיאוגרפי (אורך, רוחב)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "תגובה JSON מלאה מ-geocoder עבור כתובת זו" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "תגובת JSON שמורה משירות הגיאו-קידוד" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "כתובת" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "כתובות" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2216,233 +2244,233 @@ msgstr "" "מייצג קוד קידום מכירות שניתן להשתמש בו לקבלת הנחות, לניהול תוקפו, סוג ההנחה " "והשימוש בו. מחלקת PromoCode מאחסנת פרטים אודות קוד קידום מכירות, כולל המזהה " "הייחודי שלו, מאפייני ההנחה (סכום או אחוז), תקופת התוקף, המשתמש המשויך (אם " -"יש) ומצב השימוש בו. היא כוללת פונקציונליות לאימות והחלת קוד הקידום על הזמנה, " -"תוך הקפדה על עמידה באילוצים." +"יש) ומצב השימוש בו. היא כוללת פונקציונליות לאימות והחלת קוד הקידום על הזמנה," +" תוך הקפדה על עמידה באילוצים." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "קוד ייחודי המשמש את המשתמש למימוש הנחה" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "מזהה קוד קידום מכירות" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "סכום הנחה קבוע המוחל אם לא נעשה שימוש באחוזים" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "סכום הנחה קבוע" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "אחוז ההנחה שיחול אם לא ייעשה שימוש בסכום הקבוע" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "אחוז ההנחה" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "חותמת זמן לתוקף הקוד המקדם מכירות" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "תוקף הסוף" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "תאריך התחילה של תוקף קוד המבצע" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "תחילת תוקף" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "חותמת זמן שבה נעשה שימוש בקוד המבצע, ריק אם טרם נעשה בו שימוש" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "חותמת זמן שימוש" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "משתמש שהוקצה לקוד קידום מכירות זה, אם רלוונטי" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "משתמש שהוקצה" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "קוד קידום מכירות" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "קודי קידום מכירות" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" "יש להגדיר סוג הנחה אחד בלבד (סכום או אחוז), אך לא את שניהם או אף אחד מהם." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "קוד המבצע כבר נוצל" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "סוג הנחה לא חוקי עבור קוד קידום מכירות {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "מייצג הזמנה שבוצעה על ידי משתמש. מחלקה זו מדמה הזמנה בתוך היישום, כולל " "תכונותיה השונות כגון פרטי חיוב ומשלוח, סטטוס, משתמש קשור, התראות ופעולות " "נלוות. להזמנות יכולות להיות מוצרים נלווים, ניתן להחיל עליהן מבצעים, להגדיר " -"כתובות ולעדכן פרטי משלוח או חיוב. כמו כן, הפונקציונליות תומכת בניהול המוצרים " -"במחזור החיים של ההזמנה." +"כתובות ולעדכן פרטי משלוח או חיוב. כמו כן, הפונקציונליות תומכת בניהול המוצרים" +" במחזור החיים של ההזמנה." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "כתובת החיוב המשמשת להזמנה זו" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "קוד קידום מכירות אופציונלי שהוחל על הזמנה זו" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "קוד קידום מכירות שהוחל" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "כתובת המשלוח המשמשת להזמנה זו" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "כתובת למשלוח" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "הסטטוס הנוכחי של ההזמנה במחזור החיים שלה" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "סטטוס ההזמנה" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "מבנה JSON של הודעות שיוצגו למשתמשים, בממשק המשתמש המנהלי נעשה שימוש בתצוגת " "טבלה." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "ייצוג JSON של תכונות ההזמנה עבור הזמנה זו" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "המשתמש שהזמין את ההזמנה" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "משתמש" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "החותמת הזמן שבה הושלמה ההזמנה" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "לקנות זמן" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "מזהה קריא לאדם עבור ההזמנה" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "מזהה קריא על ידי בני אדם" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "הזמנה" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "למשתמש יכול להיות רק הזמנה אחת בהמתנה בכל פעם!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "לא ניתן להוסיף מוצרים להזמנה שאינה בהמתנה." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "לא ניתן להוסיף מוצרים לא פעילים להזמנה" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "לא ניתן להוסיף מוצרים מעבר למלאי הזמין" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "לא ניתן להסיר מוצרים מהזמנה שאינה בהמתנה." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} אינו קיים בשאילתה <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "קוד קידום מכירות אינו קיים" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "ניתן לרכוש מוצרים פיזיים רק עם ציון כתובת משלוח!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "הכתובת אינה קיימת" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "לא ניתן לבצע רכישה כרגע, אנא נסה שוב בעוד מספר דקות." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "ערך כוח לא חוקי" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "אי אפשר לרכוש הזמנה ריקה!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "אי אפשר לקנות הזמנה בלי משתמש!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "משתמש ללא יתרה לא יכול לקנות עם יתרה!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "אין מספיק כסף כדי להשלים את ההזמנה" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2450,13 +2478,13 @@ msgstr "" "אינך יכול לרכוש ללא רישום, אנא ספק את הפרטים הבאים: שם הלקוח, דוא\"ל הלקוח, " "מספר הטלפון של הלקוח" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "אמצעי תשלום לא חוקי: {payment_method} מ-{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2466,34 +2494,35 @@ msgid "" msgstr "" "מנהל משוב משתמשים על מוצרים. מחלקה זו נועדה לאסוף ולאחסן משוב משתמשים על " "מוצרים ספציפיים שרכשו. היא מכילה תכונות לאחסון הערות משתמשים, הפניה למוצר " -"הקשור בהזמנה ודירוג שהוקצה על ידי המשתמש. המחלקה משתמשת בשדות מסד נתונים כדי " -"למדל ולנהל ביעילות נתוני משוב." +"הקשור בהזמנה ודירוג שהוקצה על ידי המשתמש. המחלקה משתמשת בשדות מסד נתונים כדי" +" למדל ולנהל ביעילות נתוני משוב." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "הערות שסיפקו המשתמשים על חווייתם עם המוצר" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "הערות משוב" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "מתייחס למוצר הספציפי בהזמנה שעליה מתייחס משוב זה." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "מוצר בהזמנה קשורה" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "דירוג שהוקצה על ידי המשתמש למוצר" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "דירוג מוצר" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2505,134 +2534,134 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"מייצג מוצרים הקשורים להזמנות ותכונותיהם. מודל OrderProduct שומר מידע על מוצר " -"שהוא חלק מהזמנה, כולל פרטים כגון מחיר הרכישה, כמות, תכונות המוצר ומצב. הוא " +"מייצג מוצרים הקשורים להזמנות ותכונותיהם. מודל OrderProduct שומר מידע על מוצר" +" שהוא חלק מהזמנה, כולל פרטים כגון מחיר הרכישה, כמות, תכונות המוצר ומצב. הוא " "מנהל התראות למשתמש ולמנהלים ומטפל בפעולות כגון החזרת יתרת המוצר או הוספת " "משוב. מודל זה מספק גם שיטות ותכונות התומכות בלוגיקה עסקית, כגון חישוב המחיר " "הכולל או יצירת כתובת URL להורדה עבור מוצרים דיגיטליים. המודל משתלב עם מודלי " "Order ו-Product ומאחסן הפניה אליהם." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "המחיר ששילם הלקוח עבור מוצר זה בעת הרכישה" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "מחיר הרכישה בעת ההזמנה" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "הערות פנימיות למנהלים אודות מוצר זה שהוזמן" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "הערות פנימיות" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "הודעות למשתמשים" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "ייצוג JSON של תכונות פריט זה" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "תכונות המוצר שהוזמן" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "הפניה להזמנה הראשית המכילה מוצר זה" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "הזמנת הורים" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "המוצר הספציפי הקשור לשורת הזמנה זו" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "כמות המוצר הספציפי הזה בהזמנה" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "כמות המוצר" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "הסטטוס הנוכחי של מוצר זה בהזמנה" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "סטטוס קו המוצרים" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "המוצר בהזמנה חייב להיות קשור להזמנה!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "פעולה שגויה שצוינה עבור משוב: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "אינך יכול להחזיר הזמנה שלא התקבלה" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "שם" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "כתובת ה-URL של האינטגרציה" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "אישורי אימות" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "ניתן להגדיר ספק CRM ברירת מחדל אחד בלבד" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "קישור CRM של ההזמנה" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "קישורי CRM של הזמנות" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "מייצג את פונקציונליות ההורדה של נכסים דיגיטליים הקשורים להזמנות. מחלקת " "DigitalAssetDownload מספקת את היכולת לנהל ולהיכנס להורדות הקשורות למוצרים " -"שהוזמנו. היא שומרת מידע על המוצר שהוזמן, מספר ההורדות והאם הנכס גלוי לציבור. " -"היא כוללת שיטה ליצירת כתובת URL להורדת הנכס כאשר ההזמנה הקשורה נמצאת במצב " +"שהוזמנו. היא שומרת מידע על המוצר שהוזמן, מספר ההורדות והאם הנכס גלוי לציבור." +" היא כוללת שיטה ליצירת כתובת URL להורדת הנכס כאשר ההזמנה הקשורה נמצאת במצב " "'הושלמה'." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "הורדה" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "הורדות" @@ -2831,12 +2860,11 @@ msgstr "שלום %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"תודה על הזמנתך #%(order.pk)s! אנו שמחים להודיע לך שהזמנתך נכנסה לעיבוד. להלן " -"פרטי הזמנתך:" +"תודה על הזמנתך #%(order.pk)s! אנו שמחים להודיע לך שהזמנתך נכנסה לעיבוד. להלן" +" פרטי הזמנתך:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2937,8 +2965,7 @@ msgstr "תודה על שהייתכם איתנו! הענקנו לכם קוד קי #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "תודה על הזמנתך! אנו שמחים לאשר את רכישתך. להלן פרטי הזמנתך:" @@ -3011,8 +3038,8 @@ msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"מטפל בבקשה לאינדקס מפת האתר ומחזיר תגובה בפורמט XML. הוא מבטיח שהתגובה תכלול " -"את כותרת סוג התוכן המתאימה ל-XML." +"מטפל בבקשה לאינדקס מפת האתר ומחזיר תגובה בפורמט XML. הוא מבטיח שהתגובה תכלול" +" את כותרת סוג התוכן המתאימה ל-XML." #: engine/core/views.py:119 msgid "" @@ -3060,9 +3087,7 @@ msgstr "מטפל בהיגיון הרכישה כעסק ללא רישום." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "מטפל בהורדת נכס דיגיטלי הקשור להזמנה. פונקציה זו מנסה להציג את קובץ הנכס " "הדיגיטלי הנמצא בספריית האחסון של הפרויקט. אם הקובץ לא נמצא, מתקבלת שגיאת " @@ -3095,9 +3120,7 @@ msgstr "לא נמצא סמל מועדף" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "מטפל בבקשות לסמל המועדף של אתר אינטרנט. פונקציה זו מנסה להציג את קובץ הסמל " "המועדף הנמצא בספרייה הסטטית של הפרויקט. אם קובץ הסמל המועדף לא נמצא, מתקבלת " @@ -3105,17 +3128,17 @@ msgstr "" #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"מנתב את הבקשה לדף האינדקס של המנהל. הפונקציה מטפלת בבקשות HTTP נכנסות ומנתבת " -"אותן לדף האינדקס של ממשק המנהל של Django. היא משתמשת בפונקציית `redirect` של " -"Django לטיפול בהפניה HTTP." +"מנתב את הבקשה לדף האינדקס של המנהל. הפונקציה מטפלת בבקשות HTTP נכנסות ומנתבת" +" אותן לדף האינדקס של ממשק המנהל של Django. היא משתמשת בפונקציית `redirect` " +"של Django לטיפול בהפניה HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "מחזיר את הגרסה הנוכחית של eVibes." +msgid "Returns current version of the Schon. " +msgstr "מחזיר את הגרסה הנוכחית של Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3128,23 +3151,24 @@ msgstr "מחזיר משתנים מותאמים אישית עבור לוח המח #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"מגדיר קבוצת תצוגות לניהול פעולות הקשורות ל-Evibes. מחלקת EvibesViewSet יורשת " -"מ-ModelViewSet ומספקת פונקציונליות לטיפול בפעולות ובפעולות על ישויות Evibes. " +"מגדיר קבוצת תצוגות לניהול פעולות הקשורות ל-schon. מחלקת schonViewSet יורשת " +"מ-ModelViewSet ומספקת פונקציונליות לטיפול בפעולות ובפעולות על ישויות schon. " "היא כוללת תמיכה במחלוקות סריאליזציה דינמיות המבוססות על הפעולה הנוכחית, " "הרשאות הניתנות להתאמה אישית ופורמטים של עיבוד." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "מייצג קבוצת תצוגות לניהול אובייקטי AttributeGroup. מטפל בפעולות הקשורות " "ל-AttributeGroup, כולל סינון, סידור סדרתי ואחזור נתונים. מחלקה זו היא חלק " @@ -3170,8 +3194,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "סט תצוגה לניהול אובייקטי AttributeValue. סט תצוגה זה מספק פונקציונליות " "לרישום, אחזור, יצירה, עדכון ומחיקה של אובייקטי AttributeValue. הוא משתלב " @@ -3207,14 +3231,14 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"מנהל פעולות הקשורות למודל `Product` במערכת. מחלקה זו מספקת מערך תצוגה לניהול " -"מוצרים, כולל סינון, סידור סדרתי ופעולות על מופעים ספציפיים. היא מרחיבה את " -"`EvibesViewSet` כדי להשתמש בפונקציונליות משותפת ומשתלבת עם מסגרת Django REST " +"מנהל פעולות הקשורות למודל `Product` במערכת. מחלקה זו מספקת מערך תצוגה לניהול" +" מוצרים, כולל סינון, סידור סדרתי ופעולות על מופעים ספציפיים. היא מרחיבה את " +"`schonViewSet` כדי להשתמש בפונקציונליות משותפת ומשתלבת עם מסגרת Django REST " "עבור פעולות RESTful API. כוללת שיטות לאחזור פרטי מוצר, החלת הרשאות וגישה " "למשוב הקשור למוצר." @@ -3227,8 +3251,8 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" "מייצג קבוצת תצוגות לניהול אובייקטי ספק. קבוצת תצוגות זו מאפשרת לאחזר, לסנן " -"ולסדר נתוני ספק. היא מגדירה את קבוצת השאילתות, תצורות המסננים ומחלקות הסידור " -"המשמשות לטיפול בפעולות שונות. מטרת מחלקה זו היא לספק גישה יעילה למשאבים " +"ולסדר נתוני ספק. היא מגדירה את קבוצת השאילתות, תצורות המסננים ומחלקות הסידור" +" המשמשות לטיפול בפעולות שונות. מטרת מחלקה זו היא לספק גישה יעילה למשאבים " "הקשורים לספק באמצעות מסגרת Django REST." #: engine/core/viewsets.py:625 @@ -3236,29 +3260,29 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "ייצוג של קבוצת תצוגה המטפלת באובייקטי משוב. מחלקה זו מנהלת פעולות הקשורות " -"לאובייקטי משוב, כולל רישום, סינון ואחזור פרטים. מטרת קבוצת תצוגה זו היא לספק " -"סדרנים שונים לפעולות שונות וליישם טיפול מבוסס הרשאות באובייקטי משוב נגישים. " -"היא מרחיבה את `EvibesViewSet` הבסיסי ומשתמשת במערכת הסינון של Django לשאילתת " -"נתונים." +"לאובייקטי משוב, כולל רישום, סינון ואחזור פרטים. מטרת קבוצת תצוגה זו היא לספק" +" סדרנים שונים לפעולות שונות וליישם טיפול מבוסס הרשאות באובייקטי משוב נגישים." +" היא מרחיבה את `schonViewSet` הבסיסי ומשתמשת במערכת הסינון של Django לשאילתת" +" נתונים." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet לניהול הזמנות ופעולות נלוות. מחלקה זו מספקת פונקציונליות לאחזור, " -"שינוי וניהול אובייקטי הזמנה. היא כוללת נקודות קצה שונות לטיפול בפעולות הזמנה " -"כגון הוספה או הסרה של מוצרים, ביצוע רכישות עבור משתמשים רשומים ולא רשומים, " +"שינוי וניהול אובייקטי הזמנה. היא כוללת נקודות קצה שונות לטיפול בפעולות הזמנה" +" כגון הוספה או הסרה של מוצרים, ביצוע רכישות עבור משתמשים רשומים ולא רשומים, " "ואחזור הזמנות ממתנות של המשתמש המאושר הנוכחי. ViewSet משתמש במספר סדרנים " "בהתאם לפעולה הספציפית המתבצעת ומאכוף הרשאות בהתאם בעת אינטראקציה עם נתוני " "הזמנה." @@ -3267,8 +3291,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "מספק סט תצוגה לניהול ישויות OrderProduct. סט תצוגה זה מאפשר פעולות CRUD " @@ -3298,8 +3322,8 @@ msgstr "מטפל בפעולות הקשורות לנתוני המלאי במער msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." diff --git a/engine/core/locale/hi_IN/LC_MESSAGES/django.mo b/engine/core/locale/hi_IN/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/core/locale/hi_IN/LC_MESSAGES/django.mo and b/engine/core/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/hi_IN/LC_MESSAGES/django.po b/engine/core/locale/hi_IN/LC_MESSAGES/django.po index 062aad45..8acf0ebf 100644 --- a/engine/core/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/core/locale/hi_IN/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:26+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -75,7 +71,7 @@ msgstr "" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:166 @@ -84,7 +80,7 @@ msgstr "" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:184 @@ -92,13 +88,13 @@ msgid "selected items have been deactivated." msgstr "" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "" @@ -118,12 +114,12 @@ msgstr "" msgid "stocks" msgstr "" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "" @@ -131,7 +127,31 @@ msgstr "" msgid "children" msgstr "" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "" @@ -1151,9 +1171,9 @@ msgstr "" msgid "original address string provided by the user" msgstr "" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1169,8 +1189,8 @@ msgstr "" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "" @@ -1243,7 +1263,7 @@ msgid "represents feedback from a user." msgstr "" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "" @@ -1251,7 +1271,7 @@ msgstr "" msgid "download url for this order product if applicable" msgstr "" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "" @@ -1259,7 +1279,7 @@ msgstr "" msgid "a list of order products in this order" msgstr "" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "" @@ -1285,7 +1305,7 @@ msgstr "" msgid "transactions for this order" msgstr "" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "" @@ -1302,7 +1322,7 @@ msgstr "" msgid "category" msgstr "" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "" @@ -1343,7 +1363,7 @@ msgstr "" msgid "discount price" msgstr "" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "" @@ -1355,7 +1375,7 @@ msgstr "" msgid "products on sale" msgstr "" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "" @@ -1363,7 +1383,7 @@ msgstr "" msgid "vendor" msgstr "" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1371,11 +1391,11 @@ msgstr "" msgid "product" msgstr "" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "" @@ -1486,7 +1506,7 @@ msgstr "" msgid "attribute group's name" msgstr "" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "" @@ -1720,8 +1740,8 @@ msgstr "" msgid "the product associated with this stock entry" msgstr "" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "" @@ -1813,7 +1833,7 @@ msgstr "" msgid "product name" msgstr "" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "" @@ -1833,7 +1853,15 @@ msgstr "" msgid "stock keeping unit for this product" msgstr "" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " @@ -1843,83 +1871,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" "Represents a specific value for an attribute that is linked to a product. It " "links the 'attribute' to a unique 'value', allowing better organization and " "dynamic representation of product characteristics." msgstr "" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1928,39 +1956,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1970,39 +1998,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2010,23 +2038,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -2036,19 +2064,19 @@ msgid "" "custom features." msgstr "" -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -2060,59 +2088,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2122,86 +2150,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " @@ -2211,145 +2239,145 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2358,31 +2386,31 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "" -#: engine/core/models.py:1827 +#: engine/core/models.py:1834 msgid "references the specific product in an order that this feedback is about" msgstr "" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2395,108 +2423,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2506,11 +2534,11 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "" @@ -2975,7 +3003,7 @@ msgid "" msgstr "" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " +msgid "Returns current version of the Schon. " msgstr "" #: engine/core/views.py:674 engine/core/views.py:689 @@ -2989,9 +3017,9 @@ msgstr "" #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" @@ -3045,7 +3073,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3066,7 +3094,7 @@ msgid "" "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " "serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" diff --git a/engine/core/locale/hr_HR/LC_MESSAGES/django.mo b/engine/core/locale/hr_HR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/core/locale/hr_HR/LC_MESSAGES/django.mo and b/engine/core/locale/hr_HR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/hr_HR/LC_MESSAGES/django.po b/engine/core/locale/hr_HR/LC_MESSAGES/django.po index 950b596f..454cae48 100644 --- a/engine/core/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/core/locale/hr_HR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -75,7 +75,7 @@ msgstr "" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:166 @@ -84,7 +84,7 @@ msgstr "" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:184 @@ -92,13 +92,13 @@ msgid "selected items have been deactivated." msgstr "" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "" @@ -118,12 +118,12 @@ msgstr "" msgid "stocks" msgstr "" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "" @@ -131,7 +131,31 @@ msgstr "" msgid "children" msgstr "" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "" @@ -1151,9 +1175,9 @@ msgstr "" msgid "original address string provided by the user" msgstr "" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1169,8 +1193,8 @@ msgstr "" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "" @@ -1243,7 +1267,7 @@ msgid "represents feedback from a user." msgstr "" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "" @@ -1251,7 +1275,7 @@ msgstr "" msgid "download url for this order product if applicable" msgstr "" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "" @@ -1259,7 +1283,7 @@ msgstr "" msgid "a list of order products in this order" msgstr "" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "" @@ -1285,7 +1309,7 @@ msgstr "" msgid "transactions for this order" msgstr "" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "" @@ -1302,7 +1326,7 @@ msgstr "" msgid "category" msgstr "" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "" @@ -1343,7 +1367,7 @@ msgstr "" msgid "discount price" msgstr "" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "" @@ -1355,7 +1379,7 @@ msgstr "" msgid "products on sale" msgstr "" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "" @@ -1363,7 +1387,7 @@ msgstr "" msgid "vendor" msgstr "" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1371,11 +1395,11 @@ msgstr "" msgid "product" msgstr "" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "" @@ -1486,7 +1510,7 @@ msgstr "" msgid "attribute group's name" msgstr "" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "" @@ -1720,8 +1744,8 @@ msgstr "" msgid "the product associated with this stock entry" msgstr "" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "" @@ -1813,7 +1837,7 @@ msgstr "" msgid "product name" msgstr "" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "" @@ -1833,7 +1857,15 @@ msgstr "" msgid "stock keeping unit for this product" msgstr "" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " @@ -1843,83 +1875,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" "Represents a specific value for an attribute that is linked to a product. It " "links the 'attribute' to a unique 'value', allowing better organization and " "dynamic representation of product characteristics." msgstr "" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1928,39 +1960,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1970,39 +2002,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2010,23 +2042,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -2036,19 +2068,19 @@ msgid "" "custom features." msgstr "" -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -2060,59 +2092,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2122,86 +2154,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " @@ -2211,145 +2243,145 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2358,31 +2390,31 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "" -#: engine/core/models.py:1827 +#: engine/core/models.py:1834 msgid "references the specific product in an order that this feedback is about" msgstr "" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2395,108 +2427,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2506,11 +2538,11 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "" @@ -2975,7 +3007,7 @@ msgid "" msgstr "" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " +msgid "Returns current version of the Schon. " msgstr "" #: engine/core/views.py:674 engine/core/views.py:689 @@ -2989,9 +3021,9 @@ msgstr "" #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" @@ -3045,7 +3077,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3066,7 +3098,7 @@ msgid "" "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " "serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" diff --git a/engine/core/locale/id_ID/LC_MESSAGES/django.mo b/engine/core/locale/id_ID/LC_MESSAGES/django.mo index ab6e827e..947ef658 100644 Binary files a/engine/core/locale/id_ID/LC_MESSAGES/django.mo and b/engine/core/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/id_ID/LC_MESSAGES/django.po b/engine/core/locale/id_ID/LC_MESSAGES/django.po index ed79f7ad..a987750f 100644 --- a/engine/core/locale/id_ID/LC_MESSAGES/django.po +++ b/engine/core/locale/id_ID/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -19,7 +19,8 @@ msgstr "ID unik" #: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" -msgstr "ID unik digunakan untuk mengidentifikasi objek basis data secara pasti" +msgstr "" +"ID unik digunakan untuk mengidentifikasi objek basis data secara pasti" #: engine/core/abstract.py:20 msgid "is active" @@ -27,7 +28,8 @@ msgstr "Aktif" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Jika diset ke false, objek ini tidak dapat dilihat oleh pengguna tanpa izin " "yang diperlukan" @@ -74,8 +76,8 @@ msgstr "Stempel waktu" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Aktifkan %(verbose_name_plural)s yang dipilih" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Aktifkan yang terpilih %(verbose_name_plural)s" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -83,21 +85,21 @@ msgstr "Item yang dipilih telah diaktifkan!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Menonaktifkan %(verbose_name_plural)s yang dipilih" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Nonaktifkan yang dipilih %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Item yang dipilih telah dinonaktifkan!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Nilai Atribut" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Nilai Atribut" @@ -117,12 +119,12 @@ msgstr "Stok" msgid "stocks" msgstr "Saham" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Pesan Produk" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Pesan Produk" @@ -130,7 +132,32 @@ msgstr "Pesan Produk" msgid "children" msgstr "Anak-anak" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Memiliki gambar" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Ekspor %(verbose_name_plural)s yang dipilih ke feed pasar online." + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Item terpilih %(verbose_name_plural)s telah ditandai untuk diekspor." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Blokir %(verbose_name_plural)s yang dipilih dari umpan pasar." + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" +"Produk terpilih %(verbose_name_plural)s telah dilarang untuk diekspor." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfigurasi" @@ -154,7 +181,8 @@ msgstr "Disampaikan." msgid "canceled" msgstr "Dibatalkan" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Gagal" @@ -192,8 +220,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"Skema OpenApi3 untuk API ini. Format dapat dipilih melalui negosiasi konten. " -"Bahasa dapat dipilih dengan parameter Accept-Language dan parameter kueri." +"Skema OpenApi3 untuk API ini. Format dapat dipilih melalui negosiasi konten." +" Bahasa dapat dipilih dengan parameter Accept-Language dan parameter kueri." #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 msgid "cache I/O" @@ -205,8 +233,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Terapkan hanya kunci untuk membaca data yang diizinkan dari cache.\n" -"Menerapkan kunci, data, dan batas waktu dengan autentikasi untuk menulis " -"data ke cache." +"Menerapkan kunci, data, dan batas waktu dengan autentikasi untuk menulis data ke cache." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -272,7 +299,8 @@ msgstr "" "dapat diedit" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari grup atribut yang sudah ada sehingga " "tidak dapat diedit" @@ -328,7 +356,8 @@ msgstr "" "dapat diedit" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari nilai atribut yang sudah ada sehingga " "tidak dapat diedit" @@ -388,8 +417,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Pencarian substring yang tidak peka huruf besar/kecil di human_readable_id, " "order_produk.product.name, dan order_produk.product.partnumber" @@ -413,7 +442,8 @@ msgstr "Filter berdasarkan ID pesanan yang dapat dibaca manusia" #: engine/core/docs/drf/viewsets.py:336 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -"Filter berdasarkan email pengguna (pencocokan persis tanpa huruf besar-kecil)" +"Filter berdasarkan email pengguna (pencocokan persis tanpa huruf besar-" +"kecil)" #: engine/core/docs/drf/viewsets.py:341 msgid "Filter by user's UUID" @@ -427,9 +457,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Urutkan berdasarkan salah satu dari: uuid, human_readable_id, user_email, " "user, status, created, modified, buy_time, random. Awalan dengan '-' untuk " @@ -638,31 +668,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Memfilter berdasarkan satu atau beberapa pasangan nama/nilai atribut. \n" "- **Sintaks**: `attr_name = metode-nilai[;attr2 = metode2-nilai2]...`\n" -"- **Metode** (default ke `icontains` jika dihilangkan): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- Pengetikan nilai**: JSON dicoba terlebih dahulu (sehingga Anda dapat " -"mengoper daftar/diktat), `true`/`false` untuk boolean, bilangan bulat, " -"float; jika tidak, maka akan diperlakukan sebagai string. \n" -"- **Base64**: awalan dengan `b64-` untuk menyandikan base64 yang aman bagi " -"URL untuk menyandikan nilai mentah. \n" +"- **Metode** (default ke `icontains` jika dihilangkan): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- Pengetikan nilai**: JSON dicoba terlebih dahulu (sehingga Anda dapat mengoper daftar/diktat), `true`/`false` untuk boolean, bilangan bulat, float; jika tidak, maka akan diperlakukan sebagai string. \n" +"- **Base64**: awalan dengan `b64-` untuk menyandikan base64 yang aman bagi URL untuk menyandikan nilai mentah. \n" "Contoh: \n" -"`warna=merah-pasti`, `ukuran=gt-10`, `fitur=dalam-[\"wifi\", " -"\"bluetooth\"]`,\n" +"`warna=merah-pasti`, `ukuran=gt-10`, `fitur=dalam-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description = berisi-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 @@ -675,14 +694,11 @@ msgstr "UUID Produk (persis)" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Daftar bidang yang dipisahkan koma untuk mengurutkan. Awalan dengan `-` " -"untuk mengurutkan. \n" -"**Diizinkan:** uuid, peringkat, nama, siput, dibuat, dimodifikasi, harga, " -"acak" +"Daftar bidang yang dipisahkan koma untuk mengurutkan. Awalan dengan `-` untuk mengurutkan. \n" +"**Diizinkan:** uuid, peringkat, nama, siput, dibuat, dimodifikasi, harga, acak" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -754,7 +770,8 @@ msgstr "Masukan alamat pelengkapan otomatis" #: engine/core/docs/drf/viewsets.py:848 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -"String kueri data mentah, harap tambahkan dengan data dari titik akhir geo-IP" +"String kueri data mentah, harap tambahkan dengan data dari titik akhir geo-" +"IP" #: engine/core/docs/drf/viewsets.py:855 msgid "limit the results amount, 1 < limit < 10, default: 5" @@ -1247,8 +1264,8 @@ msgstr "Beli pesanan" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Kirimkan atribut dalam bentuk string seperti attr1 = nilai1, attr2 = nilai2" @@ -1269,9 +1286,9 @@ msgstr "Orderproduct {order_product_uuid} tidak ditemukan!" msgid "original address string provided by the user" msgstr "String alamat asli yang diberikan oleh pengguna" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1287,8 +1304,8 @@ msgstr "ElasticSearch - bekerja dengan sangat baik" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Atribut" @@ -1325,7 +1342,8 @@ msgstr "" "Atribut dan nilai mana yang dapat digunakan untuk memfilter kategori ini." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Harga minimum dan maksimum untuk produk dalam kategori ini, jika tersedia." @@ -1364,7 +1382,7 @@ msgid "represents feedback from a user." msgstr "Merupakan umpan balik dari pengguna." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Pemberitahuan" @@ -1372,7 +1390,7 @@ msgstr "Pemberitahuan" msgid "download url for this order product if applicable" msgstr "Unduh url untuk produk pesanan ini jika ada" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Umpan balik" @@ -1380,7 +1398,7 @@ msgstr "Umpan balik" msgid "a list of order products in this order" msgstr "Daftar produk pesanan dalam urutan ini" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Alamat penagihan" @@ -1408,7 +1426,7 @@ msgstr "Apakah semua produk dalam pesanan digital" msgid "transactions for this order" msgstr "Transaksi untuk pesanan ini" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Pesanan" @@ -1425,7 +1443,7 @@ msgstr "Gambar produk" msgid "category" msgstr "Kategori" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Umpan balik" @@ -1466,7 +1484,7 @@ msgstr "Produk hanya tersedia untuk pesanan pribadi" msgid "discount price" msgstr "Harga diskon" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produk" @@ -1478,7 +1496,7 @@ msgstr "Kode promosi" msgid "products on sale" msgstr "Produk yang dijual" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promosi" @@ -1486,7 +1504,7 @@ msgstr "Promosi" msgid "vendor" msgstr "Vendor" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1494,11 +1512,11 @@ msgstr "Vendor" msgid "product" msgstr "Produk" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produk yang diinginkan" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Daftar keinginan" @@ -1538,7 +1556,8 @@ msgstr "Nomor Telepon Perusahaan" #: engine/core/graphene/object_types.py:761 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -"'email from', terkadang harus digunakan sebagai pengganti nilai pengguna host" +"'email from', terkadang harus digunakan sebagai pengganti nilai pengguna " +"host" #: engine/core/graphene/object_types.py:764 msgid "email host user" @@ -1599,9 +1618,9 @@ msgid "" msgstr "" "Mewakili sekelompok atribut, yang dapat berupa hirarki. Kelas ini digunakan " "untuk mengelola dan mengatur grup atribut. Sebuah grup atribut dapat " -"memiliki grup induk, membentuk struktur hirarki. Hal ini dapat berguna untuk " -"mengkategorikan dan mengelola atribut secara lebih efektif dalam sistem yang " -"kompleks." +"memiliki grup induk, membentuk struktur hirarki. Hal ini dapat berguna untuk" +" mengkategorikan dan mengelola atribut secara lebih efektif dalam sistem " +"yang kompleks." #: engine/core/models.py:88 msgid "parent of this group" @@ -1615,7 +1634,7 @@ msgstr "Grup atribut induk" msgid "attribute group's name" msgstr "Nama grup atribut" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Kelompok atribut" @@ -1631,8 +1650,8 @@ msgid "" msgstr "" "Mewakili entitas vendor yang mampu menyimpan informasi tentang vendor " "eksternal dan persyaratan interaksinya. Kelas Vendor digunakan untuk " -"mendefinisikan dan mengelola informasi yang terkait dengan vendor eksternal. " -"Kelas ini menyimpan nama vendor, detail otentikasi yang diperlukan untuk " +"mendefinisikan dan mengelola informasi yang terkait dengan vendor eksternal." +" Kelas ini menyimpan nama vendor, detail otentikasi yang diperlukan untuk " "komunikasi, dan persentase markup yang diterapkan pada produk yang diambil " "dari vendor. Model ini juga menyimpan metadata dan batasan tambahan, " "sehingga cocok untuk digunakan dalam sistem yang berinteraksi dengan vendor " @@ -1691,8 +1710,8 @@ msgstr "" "Merupakan tag produk yang digunakan untuk mengklasifikasikan atau " "mengidentifikasi produk. Kelas ProductTag dirancang untuk mengidentifikasi " "dan mengklasifikasikan produk secara unik melalui kombinasi pengenal tag " -"internal dan nama tampilan yang mudah digunakan. Kelas ini mendukung operasi " -"yang diekspor melalui mixin dan menyediakan penyesuaian metadata untuk " +"internal dan nama tampilan yang mudah digunakan. Kelas ini mendukung operasi" +" yang diekspor melalui mixin dan menyediakan penyesuaian metadata untuk " "tujuan administratif." #: engine/core/models.py:204 engine/core/models.py:235 @@ -1721,8 +1740,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"Merupakan tag kategori yang digunakan untuk produk. Kelas ini memodelkan tag " -"kategori yang dapat digunakan untuk mengaitkan dan mengklasifikasikan " +"Merupakan tag kategori yang digunakan untuk produk. Kelas ini memodelkan tag" +" kategori yang dapat digunakan untuk mengaitkan dan mengklasifikasikan " "produk. Kelas ini mencakup atribut untuk pengenal tag internal dan nama " "tampilan yang mudah digunakan." @@ -1748,9 +1767,9 @@ msgid "" msgstr "" "Merupakan entitas kategori untuk mengatur dan mengelompokkan item terkait " "dalam struktur hierarki. Kategori dapat memiliki hubungan hierarkis dengan " -"kategori lain, yang mendukung hubungan induk-anak. Kelas ini mencakup bidang " -"untuk metadata dan representasi visual, yang berfungsi sebagai fondasi untuk " -"fitur-fitur terkait kategori. Kelas ini biasanya digunakan untuk " +"kategori lain, yang mendukung hubungan induk-anak. Kelas ini mencakup bidang" +" untuk metadata dan representasi visual, yang berfungsi sebagai fondasi " +"untuk fitur-fitur terkait kategori. Kelas ini biasanya digunakan untuk " "mendefinisikan dan mengelola kategori produk atau pengelompokan serupa " "lainnya dalam aplikasi, yang memungkinkan pengguna atau administrator " "menentukan nama, deskripsi, dan hierarki kategori, serta menetapkan atribut " @@ -1805,12 +1824,13 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Mewakili objek Merek dalam sistem. Kelas ini menangani informasi dan atribut " -"yang terkait dengan merek, termasuk nama, logo, deskripsi, kategori terkait, " -"siput unik, dan urutan prioritas. Kelas ini memungkinkan pengaturan dan " -"representasi data yang terkait dengan merek di dalam aplikasi." +"Mewakili objek Merek dalam sistem. Kelas ini menangani informasi dan atribut" +" yang terkait dengan merek, termasuk nama, logo, deskripsi, kategori " +"terkait, siput unik, dan urutan prioritas. Kelas ini memungkinkan pengaturan" +" dan representasi data yang terkait dengan merek di dalam aplikasi." #: engine/core/models.py:456 msgid "name of this brand" @@ -1854,8 +1874,8 @@ msgstr "Kategori" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1863,10 +1883,10 @@ msgid "" msgstr "" "Mewakili stok produk yang dikelola dalam sistem. Kelas ini memberikan " "rincian tentang hubungan antara vendor, produk, dan informasi stok mereka, " -"serta properti terkait inventaris seperti harga, harga pembelian, kuantitas, " -"SKU, dan aset digital. Ini adalah bagian dari sistem manajemen inventaris " -"untuk memungkinkan pelacakan dan evaluasi produk yang tersedia dari berbagai " -"vendor." +"serta properti terkait inventaris seperti harga, harga pembelian, kuantitas," +" SKU, dan aset digital. Ini adalah bagian dari sistem manajemen inventaris " +"untuk memungkinkan pelacakan dan evaluasi produk yang tersedia dari berbagai" +" vendor." #: engine/core/models.py:528 msgid "the vendor supplying this product stock" @@ -1888,8 +1908,8 @@ msgstr "Harga jual" msgid "the product associated with this stock entry" msgstr "Produk yang terkait dengan entri saham ini" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Produk terkait" @@ -1944,13 +1964,13 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"Merepresentasikan produk dengan atribut seperti kategori, merek, tag, status " -"digital, nama, deskripsi, nomor komponen, dan siput. Menyediakan properti " +"Merepresentasikan produk dengan atribut seperti kategori, merek, tag, status" +" digital, nama, deskripsi, nomor komponen, dan siput. Menyediakan properti " "utilitas terkait untuk mengambil peringkat, jumlah umpan balik, harga, " "kuantitas, dan total pesanan. Dirancang untuk digunakan dalam sistem yang " "menangani e-commerce atau manajemen inventaris. Kelas ini berinteraksi " -"dengan model terkait (seperti Kategori, Merek, dan ProductTag) dan mengelola " -"cache untuk properti yang sering diakses untuk meningkatkan kinerja. Kelas " +"dengan model terkait (seperti Kategori, Merek, dan ProductTag) dan mengelola" +" cache untuk properti yang sering diakses untuk meningkatkan kinerja. Kelas " "ini digunakan untuk mendefinisikan dan memanipulasi data produk dan " "informasi terkait di dalam aplikasi." @@ -1990,7 +2010,7 @@ msgstr "Berikan nama pengenal yang jelas untuk produk" msgid "product name" msgstr "Nama produk" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Menambahkan deskripsi rinci tentang produk" @@ -2010,156 +2030,164 @@ msgstr "Nomor bagian" msgid "stock keeping unit for this product" msgstr "Unit Penyimpanan Stok untuk produk ini" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Apakah akan mengekspor produk ini ke pasar daring?" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Ekspor ke Pasar Online" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"Merupakan atribut dalam sistem. Kelas ini digunakan untuk mendefinisikan dan " -"mengelola atribut, yang merupakan bagian data yang dapat disesuaikan yang " +"Merupakan atribut dalam sistem. Kelas ini digunakan untuk mendefinisikan dan" +" mengelola atribut, yang merupakan bagian data yang dapat disesuaikan yang " "dapat dikaitkan dengan entitas lain. Atribut memiliki kategori, grup, tipe " "nilai, dan nama yang terkait. Model ini mendukung berbagai jenis nilai, " "termasuk string, integer, float, boolean, array, dan objek. Hal ini " "memungkinkan penataan data yang dinamis dan fleksibel." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Kelompok atribut ini" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "String" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Bilangan bulat" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Mengapung" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objek" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Jenis nilai atribut" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Jenis nilai" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Nama atribut ini" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Nama atribut" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "dapat disaring" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Atribut dan nilai mana yang dapat digunakan untuk memfilter kategori ini." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Mewakili nilai spesifik untuk atribut yang terkait dengan produk. Ini " "menghubungkan 'atribut' dengan 'nilai' yang unik, memungkinkan pengaturan " "yang lebih baik dan representasi karakteristik produk yang dinamis." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Atribut dari nilai ini" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Produk spesifik yang terkait dengan nilai atribut ini" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Nilai spesifik untuk atribut ini" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Mewakili gambar produk yang terkait dengan produk dalam sistem. Kelas ini " -"dirancang untuk mengelola gambar untuk produk, termasuk fungsionalitas untuk " -"mengunggah file gambar, mengasosiasikannya dengan produk tertentu, dan " +"dirancang untuk mengelola gambar untuk produk, termasuk fungsionalitas untuk" +" mengunggah file gambar, mengasosiasikannya dengan produk tertentu, dan " "menentukan urutan tampilannya. Kelas ini juga mencakup fitur aksesibilitas " "dengan teks alternatif untuk gambar." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Menyediakan teks alternatif untuk gambar agar mudah diakses" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Teks alt gambar" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Unggah file gambar untuk produk ini" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Gambar produk" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Menentukan urutan gambar yang ditampilkan" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioritas tampilan" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Produk yang diwakili oleh gambar ini" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Gambar produk" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Merupakan kampanye promosi untuk produk dengan diskon. Kelas ini digunakan " "untuk mendefinisikan dan mengelola kampanye promosi yang menawarkan diskon " @@ -2168,39 +2196,39 @@ msgstr "" "produk yang berlaku. Kelas ini terintegrasi dengan katalog produk untuk " "menentukan item yang terpengaruh dalam kampanye." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Persentase diskon untuk produk yang dipilih" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Persentase diskon" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Berikan nama unik untuk promosi ini" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Nama promosi" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Deskripsi promosi" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Pilih produk mana yang termasuk dalam promosi ini" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Produk yang disertakan" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promosi" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2213,30 +2241,30 @@ msgstr "" "serta mendukung operasi untuk menambah dan menghapus beberapa produk " "sekaligus." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produk yang telah ditandai pengguna sebagai yang diinginkan" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Pengguna yang memiliki daftar keinginan ini" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Pemilik Wishlist" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Daftar keinginan" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Merupakan catatan dokumenter yang terkait dengan suatu produk. Kelas ini " "digunakan untuk menyimpan informasi tentang film dokumenter yang terkait " @@ -2245,28 +2273,28 @@ msgstr "" "untuk file dokumenter. Kelas ini memperluas fungsionalitas dari mixin " "tertentu dan menyediakan fitur khusus tambahan." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Dokumenter" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Dokumenter" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Belum terselesaikan" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Mewakili entitas alamat yang mencakup detail lokasi dan asosiasi dengan " "pengguna. Menyediakan fungsionalitas untuk penyimpanan data geografis dan " @@ -2278,59 +2306,59 @@ msgstr "" "memungkinkan untuk mengasosiasikan alamat dengan pengguna, sehingga " "memudahkan penanganan data yang dipersonalisasi." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Baris alamat untuk pelanggan" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Baris alamat" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Jalan" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distrik" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Kota" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Wilayah" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Kode pos" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Negara" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Titik Geolokasi (Bujur, Lintang)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Tanggapan JSON lengkap dari geocoder untuk alamat ini" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Respons JSON yang tersimpan dari layanan geocoding" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Alamat" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Alamat" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2340,78 +2368,78 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" "Mewakili kode promosi yang dapat digunakan untuk diskon, mengelola " -"validitas, jenis diskon, dan penerapannya. Kelas PromoCode menyimpan rincian " -"tentang kode promosi, termasuk pengenal unik, properti diskon (jumlah atau " +"validitas, jenis diskon, dan penerapannya. Kelas PromoCode menyimpan rincian" +" tentang kode promosi, termasuk pengenal unik, properti diskon (jumlah atau " "persentase), masa berlaku, pengguna terkait (jika ada), dan status " "penggunaannya. Ini termasuk fungsionalitas untuk memvalidasi dan menerapkan " "kode promo ke pesanan sambil memastikan batasan terpenuhi." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Kode unik yang digunakan oleh pengguna untuk menukarkan diskon" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Pengenal kode promo" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Jumlah diskon tetap berlaku jika persen tidak digunakan" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Jumlah diskon tetap" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Persentase diskon diterapkan jika jumlah tetap tidak digunakan" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Persentase diskon" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Cap waktu saat kode promo berakhir" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Akhiri waktu validitas" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Stempel waktu dari mana kode promo ini valid" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Mulai waktu validitas" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Stempel waktu ketika promocode digunakan, kosongkan jika belum digunakan" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Cap waktu penggunaan" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Pengguna yang ditugaskan ke kode promo ini jika berlaku" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Pengguna yang ditugaskan" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Kode promo" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Kode promo" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2419,21 +2447,21 @@ msgstr "" "Hanya satu jenis diskon yang harus ditentukan (jumlah atau persen), tetapi " "tidak boleh keduanya atau tidak sama sekali." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promocode telah digunakan" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Jenis diskon tidak valid untuk kode promo {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2445,145 +2473,145 @@ msgstr "" "Fungsionalitas yang sama juga mendukung pengelolaan produk dalam siklus " "hidup pesanan." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Alamat penagihan yang digunakan untuk pesanan ini" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Kode promo opsional berlaku untuk pesanan ini" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Kode promo yang diterapkan" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Alamat pengiriman yang digunakan untuk pesanan ini" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Alamat pengiriman" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Status pesanan saat ini dalam siklus hidupnya" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Status pesanan" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -"Struktur JSON dari notifikasi untuk ditampilkan kepada pengguna, di UI admin " -"digunakan table-view" +"Struktur JSON dari notifikasi untuk ditampilkan kepada pengguna, di UI admin" +" digunakan table-view" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Representasi JSON dari atribut pesanan untuk pesanan ini" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Pengguna yang melakukan pemesanan" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Pengguna" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Stempel waktu saat pesanan diselesaikan" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Beli waktu" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Pengenal yang dapat dibaca manusia untuk pesanan" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID yang dapat dibaca manusia" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Pesan" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" "Seorang pengguna hanya boleh memiliki satu pending order dalam satu waktu!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Anda tidak dapat menambahkan produk ke pesanan yang bukan merupakan pesanan " "yang tertunda" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Anda tidak dapat menambahkan produk yang tidak aktif ke dalam pesanan" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" "Anda tidak dapat menambahkan lebih banyak produk daripada yang tersedia " "dalam stok" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Anda tidak dapat menghapus produk dari pesanan yang bukan merupakan pesanan " "yang tertunda" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} tidak ada dengan kueri <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Kode promosi tidak ada" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Anda hanya dapat membeli produk fisik dengan alamat pengiriman yang " "ditentukan!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Alamat tidak ada" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "Anda tidak dapat membeli saat ini, silakan coba lagi dalam beberapa menit." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Nilai gaya tidak valid" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Anda tidak dapat membeli pesanan kosong!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Anda tidak dapat membeli pesanan tanpa pengguna!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Pengguna tanpa saldo tidak dapat membeli dengan saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Dana tidak mencukupi untuk menyelesaikan pesanan" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2591,7 +2619,7 @@ msgstr "" "Anda tidak dapat membeli tanpa registrasi, berikan informasi berikut: nama " "pelanggan, email pelanggan, nomor telepon pelanggan" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2599,7 +2627,7 @@ msgstr "" "Metode pembayaran tidak valid: {payment_method} dari " "{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2614,32 +2642,33 @@ msgstr "" "ditetapkan pengguna. Kelas ini menggunakan bidang basis data untuk " "memodelkan dan mengelola data umpan balik secara efektif." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" "Komentar yang diberikan pengguna tentang pengalaman mereka dengan produk" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Komentar umpan balik" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "Merujuk ke produk tertentu sesuai dengan urutan umpan balik ini" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Produk pesanan terkait" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Peringkat yang ditetapkan pengguna untuk produk" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Peringkat produk" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2656,122 +2685,122 @@ msgstr "" "pesanan, termasuk rincian seperti harga pembelian, kuantitas, atribut " "produk, dan status. Model ini mengelola notifikasi untuk pengguna dan " "administrator dan menangani operasi seperti mengembalikan saldo produk atau " -"menambahkan umpan balik. Model ini juga menyediakan metode dan properti yang " -"mendukung logika bisnis, seperti menghitung harga total atau menghasilkan " +"menambahkan umpan balik. Model ini juga menyediakan metode dan properti yang" +" mendukung logika bisnis, seperti menghitung harga total atau menghasilkan " "URL unduhan untuk produk digital. Model ini terintegrasi dengan model " "Pesanan dan Produk dan menyimpan referensi ke keduanya." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" "Harga yang dibayarkan oleh pelanggan untuk produk ini pada saat pembelian" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Harga pembelian pada saat pemesanan" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Komentar internal untuk admin tentang produk yang dipesan ini" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Komentar internal" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Pemberitahuan pengguna" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Representasi JSON dari atribut item ini" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Atribut produk yang dipesan" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Referensi ke pesanan induk yang berisi produk ini" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Urutan induk" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Produk spesifik yang terkait dengan baris pesanan ini" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Jumlah produk spesifik ini dalam pesanan" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Kuantitas produk" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Status saat ini dari produk ini dalam pesanan" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status lini produk" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Pesananproduk harus memiliki pesanan terkait!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Tindakan yang salah ditentukan untuk umpan balik: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" "Anda tidak dapat memberikan umpan balik atas pesanan yang tidak diterima" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nama" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL integrasi" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Kredensial otentikasi" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Anda hanya dapat memiliki satu penyedia CRM default" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Tautan CRM pesanan" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Tautan CRM Pesanan" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Mewakili fungsionalitas pengunduhan untuk aset digital yang terkait dengan " "pesanan. Kelas DigitalAssetDownload menyediakan kemampuan untuk mengelola " @@ -2781,11 +2810,11 @@ msgstr "" "untuk menghasilkan URL untuk mengunduh aset ketika pesanan terkait dalam " "status selesai." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Unduh" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Unduhan" @@ -2986,8 +3015,7 @@ msgstr "Halo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Terima kasih atas pesanan Anda #%(order.pk)s! Dengan senang hati kami " @@ -3096,15 +3124,13 @@ msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -"Terima kasih telah tinggal bersama kami! Kami telah memberikan Anda kode " -"promo\n" +"Terima kasih telah tinggal bersama kami! Kami telah memberikan Anda kode promo\n" " untuk" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Terima kasih atas pesanan Anda! Dengan senang hati kami mengkonfirmasi " @@ -3209,8 +3235,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Menangani operasi cache seperti membaca dan mengatur data cache dengan kunci " -"dan batas waktu tertentu." +"Menangani operasi cache seperti membaca dan mengatur data cache dengan kunci" +" dan batas waktu tertentu." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3235,14 +3261,10 @@ msgstr "Menangani logika pembelian sebagai bisnis tanpa registrasi." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Menangani pengunduhan aset digital yang terkait dengan pesanan.\n" -"Fungsi ini mencoba untuk menyajikan file aset digital yang terletak di " -"direktori penyimpanan proyek. Jika file tidak ditemukan, kesalahan HTTP 404 " -"akan muncul untuk mengindikasikan bahwa sumber daya tidak tersedia." +"Fungsi ini mencoba untuk menyajikan file aset digital yang terletak di direktori penyimpanan proyek. Jika file tidak ditemukan, kesalahan HTTP 404 akan muncul untuk mengindikasikan bahwa sumber daya tidak tersedia." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3271,19 +3293,15 @@ msgstr "favicon tidak ditemukan" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Menangani permintaan favicon dari sebuah situs web.\n" -"Fungsi ini mencoba menyajikan file favicon yang terletak di direktori statis " -"proyek. Jika file favicon tidak ditemukan, kesalahan HTTP 404 akan " -"dimunculkan untuk mengindikasikan bahwa sumber daya tidak tersedia." +"Fungsi ini mencoba menyajikan file favicon yang terletak di direktori statis proyek. Jika file favicon tidak ditemukan, kesalahan HTTP 404 akan dimunculkan untuk mengindikasikan bahwa sumber daya tidak tersedia." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Mengalihkan permintaan ke halaman indeks admin. Fungsi ini menangani " @@ -3292,8 +3310,8 @@ msgstr "" "menangani pengalihan HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Mengembalikan versi eVibes saat ini." +msgid "Returns current version of the Schon. " +msgstr "Mengembalikan versi Schon saat ini." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3306,24 +3324,25 @@ msgstr "Mengembalikan variabel khusus untuk Dasbor." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Mendefinisikan sebuah viewset untuk mengelola operasi terkait Evibes. Kelas " -"EvibesViewSet diwarisi dari ModelViewSet dan menyediakan fungsionalitas " -"untuk menangani tindakan dan operasi pada entitas Evibes. Ini termasuk " -"dukungan untuk kelas serializer dinamis berdasarkan tindakan saat ini, izin " -"yang dapat disesuaikan, dan format rendering." +"Mendefinisikan sebuah viewset untuk mengelola operasi terkait schon. Kelas " +"SchonViewSet diwarisi dari ModelViewSet dan menyediakan fungsionalitas untuk" +" menangani tindakan dan operasi pada entitas schon. Ini termasuk dukungan " +"untuk kelas serializer dinamis berdasarkan tindakan saat ini, izin yang " +"dapat disesuaikan, dan format rendering." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Mewakili sebuah viewset untuk mengelola objek AttributeGroup. Menangani " "operasi yang terkait dengan AttributeGroup, termasuk pemfilteran, " @@ -3352,11 +3371,11 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Sebuah viewset untuk mengelola objek AttributeValue. Viewset ini menyediakan " -"fungsionalitas untuk mendaftarkan, mengambil, membuat, memperbarui, dan " +"Sebuah viewset untuk mengelola objek AttributeValue. Viewset ini menyediakan" +" fungsionalitas untuk mendaftarkan, mengambil, membuat, memperbarui, dan " "menghapus objek AttributeValue. Ini terintegrasi dengan mekanisme viewset " "Django REST Framework dan menggunakan serializer yang sesuai untuk tindakan " "yang berbeda. Kemampuan pemfilteran disediakan melalui DjangoFilterBackend." @@ -3370,10 +3389,10 @@ msgid "" "can access specific data." msgstr "" "Mengelola tampilan untuk operasi terkait Kategori. Kelas CategoryViewSet " -"bertanggung jawab untuk menangani operasi yang terkait dengan model Kategori " -"dalam sistem. Kelas ini mendukung pengambilan, pemfilteran, dan serialisasi " -"data kategori. ViewSet juga memberlakukan izin untuk memastikan bahwa hanya " -"pengguna yang memiliki izin yang dapat mengakses data tertentu." +"bertanggung jawab untuk menangani operasi yang terkait dengan model Kategori" +" dalam sistem. Kelas ini mendukung pengambilan, pemfilteran, dan serialisasi" +" data kategori. ViewSet juga memberlakukan izin untuk memastikan bahwa hanya" +" pengguna yang memiliki izin yang dapat mengakses data tertentu." #: engine/core/viewsets.py:346 msgid "" @@ -3384,26 +3403,26 @@ msgid "" msgstr "" "Mewakili sebuah viewset untuk mengelola instance Brand. Kelas ini " "menyediakan fungsionalitas untuk melakukan kueri, penyaringan, dan " -"serialisasi objek Brand. Kelas ini menggunakan kerangka kerja ViewSet Django " -"untuk menyederhanakan implementasi titik akhir API untuk objek Brand." +"serialisasi objek Brand. Kelas ini menggunakan kerangka kerja ViewSet Django" +" untuk menyederhanakan implementasi titik akhir API untuk objek Brand." #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Mengelola operasi yang terkait dengan model `Product` dalam sistem. Kelas " -"ini menyediakan sebuah viewset untuk mengelola produk, termasuk pemfilteran, " -"serialisasi, dan operasi pada instance tertentu. Kelas ini diperluas dari " -"`EvibesViewSet` untuk menggunakan fungsionalitas umum dan terintegrasi " -"dengan kerangka kerja Django REST untuk operasi RESTful API. Termasuk metode " -"untuk mengambil detail produk, menerapkan izin, dan mengakses umpan balik " -"terkait produk." +"ini menyediakan sebuah viewset untuk mengelola produk, termasuk pemfilteran," +" serialisasi, dan operasi pada instance tertentu. Kelas ini diperluas dari " +"`SchonViewSet` untuk menggunakan fungsionalitas umum dan terintegrasi dengan" +" kerangka kerja Django REST untuk operasi RESTful API. Termasuk metode untuk" +" mengambil detail produk, menerapkan izin, dan mengakses umpan balik terkait" +" produk." #: engine/core/viewsets.py:605 msgid "" @@ -3425,16 +3444,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representasi set tampilan yang menangani objek Umpan Balik. Kelas ini " "mengelola operasi yang terkait dengan objek Umpan Balik, termasuk " "mendaftarkan, memfilter, dan mengambil detail. Tujuan dari set tampilan ini " -"adalah untuk menyediakan serializer yang berbeda untuk tindakan yang berbeda " -"dan mengimplementasikan penanganan berbasis izin untuk objek Umpan Balik " -"yang dapat diakses. Kelas ini memperluas `EvibesViewSet` dasar dan " +"adalah untuk menyediakan serializer yang berbeda untuk tindakan yang berbeda" +" dan mengimplementasikan penanganan berbasis izin untuk objek Umpan Balik " +"yang dapat diakses. Kelas ini memperluas `SchonViewSet` dasar dan " "menggunakan sistem penyaringan Django untuk meminta data." #: engine/core/viewsets.py:652 @@ -3442,9 +3461,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet untuk mengelola pesanan dan operasi terkait. Kelas ini menyediakan " @@ -3460,8 +3479,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Menyediakan viewset untuk mengelola entitas OrderProduct. Viewset ini " @@ -3494,17 +3513,17 @@ msgstr "Menangani operasi yang terkait dengan data Stok di dalam sistem." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet untuk mengelola operasi Wishlist. WishlistViewSet menyediakan titik " -"akhir untuk berinteraksi dengan daftar keinginan pengguna, yang memungkinkan " -"pengambilan, modifikasi, dan penyesuaian produk dalam daftar keinginan. " -"ViewSet ini memfasilitasi fungsionalitas seperti menambahkan, menghapus, dan " -"tindakan massal untuk produk daftar keinginan. Pemeriksaan izin " +"akhir untuk berinteraksi dengan daftar keinginan pengguna, yang memungkinkan" +" pengambilan, modifikasi, dan penyesuaian produk dalam daftar keinginan. " +"ViewSet ini memfasilitasi fungsionalitas seperti menambahkan, menghapus, dan" +" tindakan massal untuk produk daftar keinginan. Pemeriksaan izin " "diintegrasikan untuk memastikan bahwa pengguna hanya dapat mengelola daftar " "keinginan mereka sendiri kecuali jika izin eksplisit diberikan." @@ -3516,8 +3535,8 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Kelas ini menyediakan fungsionalitas viewset untuk mengelola objek `Alamat`. " -"Kelas AddressViewSet memungkinkan operasi CRUD, pemfilteran, dan tindakan " +"Kelas ini menyediakan fungsionalitas viewset untuk mengelola objek `Alamat`." +" Kelas AddressViewSet memungkinkan operasi CRUD, pemfilteran, dan tindakan " "khusus yang terkait dengan entitas alamat. Kelas ini mencakup perilaku " "khusus untuk metode HTTP yang berbeda, penggantian serializer, dan " "penanganan izin berdasarkan konteks permintaan." diff --git a/engine/core/locale/it_IT/LC_MESSAGES/django.mo b/engine/core/locale/it_IT/LC_MESSAGES/django.mo index 40e02df7..219f1cad 100644 Binary files a/engine/core/locale/it_IT/LC_MESSAGES/django.mo and b/engine/core/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/it_IT/LC_MESSAGES/django.po b/engine/core/locale/it_IT/LC_MESSAGES/django.po index c99f4290..fcc58be4 100644 --- a/engine/core/locale/it_IT/LC_MESSAGES/django.po +++ b/engine/core/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,10 +29,11 @@ msgstr "È attivo" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" -"Se impostato a false, questo oggetto non può essere visto dagli utenti senza " -"i necessari permessi." +"Se impostato a false, questo oggetto non può essere visto dagli utenti senza" +" i necessari permessi." #: engine/core/abstract.py:26 engine/core/choices.py:18 msgid "created" @@ -76,8 +77,8 @@ msgstr "Timestamp" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Attivare il %(verbose_name_plural)s selezionato" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Attiva %(verbose_name_plural)s selezionato" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -85,21 +86,21 @@ msgstr "Gli articoli selezionati sono stati attivati!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Disattivare il %(verbose_name_plural)s selezionato" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Disattiva %(verbose_name_plural)s selezionato" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Gli articoli selezionati sono stati disattivati!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Valore dell'attributo" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Valori degli attributi" @@ -119,12 +120,12 @@ msgstr "Stock" msgid "stocks" msgstr "Le scorte" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Ordina il prodotto" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Ordinare i prodotti" @@ -132,7 +133,35 @@ msgstr "Ordinare i prodotti" msgid "children" msgstr "I bambini" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Ha immagini" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Esporta %(verbose_name_plural)s selezionato nei feed dei marketplace" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" +"I file selezionati %(verbose_name_plural)s sono stati contrassegnati per " +"l'esportazione." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Escludi %(verbose_name_plural)s dai feed dei marketplace" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" +"I prodotti selezionati %(verbose_name_plural)s sono stati vietati " +"all'esportazione." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Configurazione" @@ -156,7 +185,8 @@ msgstr "Consegnato" msgid "canceled" msgstr "Annullato" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Fallito" @@ -194,9 +224,9 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"Schema OpenApi3 per questa API. Il formato può essere selezionato tramite la " -"negoziazione dei contenuti. La lingua può essere selezionata sia con Accept-" -"Language che con il parametro query." +"Schema OpenApi3 per questa API. Il formato può essere selezionato tramite la" +" negoziazione dei contenuti. La lingua può essere selezionata sia con " +"Accept-Language che con il parametro query." #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 msgid "cache I/O" @@ -208,8 +238,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Applicare solo una chiave per leggere i dati consentiti dalla cache.\n" -"Applicare chiave, dati e timeout con autenticazione per scrivere dati nella " -"cache." +"Applicare chiave, dati e timeout con autenticazione per scrivere dati nella cache." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -274,7 +303,8 @@ msgstr "" "Riscrivere un gruppo di attributi esistente salvando i non modificabili" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Riscrivere alcuni campi di un gruppo di attributi esistente salvando quelli " "non modificabili" @@ -329,7 +359,8 @@ msgstr "" "modificabili" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Riscrivere alcuni campi di un valore di attributo esistente salvando i " "valori non modificabili" @@ -362,8 +393,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:270 engine/core/docs/drf/viewsets.py:272 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:280 engine/core/docs/drf/viewsets.py:757 #: engine/core/docs/drf/viewsets.py:1046 @@ -389,12 +420,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Ricerca di sottostringhe senza distinzione di maiuscole e minuscole tra " -"human_readable_id, order_products.product.name e order_products.product." -"partnumber" +"human_readable_id, order_products.product.name e " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -430,9 +461,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordinare per uno dei seguenti criteri: uuid, human_readable_id, user_email, " "user, status, created, modified, buy_time, random. Prefisso con '-' per la " @@ -466,8 +497,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:403 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:410 msgid "purchase an order" @@ -480,8 +511,8 @@ msgid "" "transaction is initiated." msgstr "" "Finalizza l'acquisto dell'ordine. Se si utilizza `forza_bilancio`, " -"l'acquisto viene completato utilizzando il saldo dell'utente; se si utilizza " -"`forza_pagamento`, viene avviata una transazione." +"l'acquisto viene completato utilizzando il saldo dell'utente; se si utilizza" +" `forza_pagamento`, viene avviata una transazione." #: engine/core/docs/drf/viewsets.py:427 msgid "retrieve current pending order of a user" @@ -557,8 +588,8 @@ msgstr "Elenco di tutti gli attributi (vista semplice)" #: engine/core/docs/drf/viewsets.py:498 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -"Per gli utenti che non fanno parte del personale, vengono restituite solo le " -"loro liste dei desideri." +"Per gli utenti che non fanno parte del personale, vengono restituite solo le" +" loro liste dei desideri." #: engine/core/docs/drf/viewsets.py:508 msgid "retrieve a single wishlist (detailed view)" @@ -639,28 +670,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrare in base a una o più coppie nome/valore dell'attributo. \n" "- **Sintassi**: `nome_attraverso=metodo-valore[;attr2=metodo2-valore2]...`\n" -"- **Metodi** (predefiniti a `icontains` se omessi): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- **Tipo di valore**: JSON viene tentato per primo (in modo da poter passare " -"liste/dict), `true`/`false` per booleani, interi, float; altrimenti viene " -"trattato come stringa. \n" -"- **Base64**: prefisso con `b64-` per codificare in base64 il valore " -"grezzo. \n" +"- **Metodi** (predefiniti a `icontains` se omessi): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- **Tipo di valore**: JSON viene tentato per primo (in modo da poter passare liste/dict), `true`/`false` per booleani, interi, float; altrimenti viene trattato come stringa. \n" +"- **Base64**: prefisso con `b64-` per codificare in base64 il valore grezzo. \n" "Esempi: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -675,12 +696,10 @@ msgstr "(esatto) UUID del prodotto" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Elenco separato da virgole dei campi da ordinare. Prefisso con `-` per " -"l'ordinamento discendente. \n" +"Elenco separato da virgole dei campi da ordinare. Prefisso con `-` per l'ordinamento discendente. \n" "**Consentito:** uuid, rating, nome, slug, creato, modificato, prezzo, casuale" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -699,7 +718,8 @@ msgstr "Creare un prodotto" #: engine/core/docs/drf/viewsets.py:677 engine/core/docs/drf/viewsets.py:678 msgid "rewrite an existing product, preserving non-editable fields" -msgstr "Riscrivere un prodotto esistente, preservando i campi non modificabili" +msgstr "" +"Riscrivere un prodotto esistente, preservando i campi non modificabili" #: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:700 msgid "" @@ -781,8 +801,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:909 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:919 msgid "list all order–product relations (simple view)" @@ -840,8 +860,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1039 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1064 msgid "list all vendors (simple view)" @@ -867,8 +887,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1102 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1112 msgid "list all product images (simple view)" @@ -894,8 +914,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1165 msgid "list all promo codes (simple view)" @@ -921,8 +941,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1203 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1213 msgid "list all promotions (simple view)" @@ -948,8 +968,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1261 msgid "list all stocks (simple view)" @@ -975,8 +995,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1297 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1308 msgid "list all product tags (simple view)" @@ -1002,8 +1022,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/elasticsearch/__init__.py:128 #: engine/core/elasticsearch/__init__.py:629 @@ -1188,7 +1208,8 @@ msgstr "" #: engine/core/graphene/mutations.py:249 engine/core/graphene/mutations.py:524 #: engine/core/graphene/mutations.py:573 engine/core/viewsets.py:753 msgid "wrong type came from order.buy() method: {type(instance)!s}" -msgstr "Il metodo order.buy() ha fornito un tipo sbagliato: {type(instance)!s}" +msgstr "" +"Il metodo order.buy() ha fornito un tipo sbagliato: {type(instance)!s}" #: engine/core/graphene/mutations.py:260 msgid "perform an action on a list of products in the order" @@ -1239,11 +1260,11 @@ msgstr "Acquistare un ordine" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Inviare gli attributi come stringa formattata come attr1=valore1," -"attr2=valore2" +"Inviare gli attributi come stringa formattata come " +"attr1=valore1,attr2=valore2" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1262,9 +1283,9 @@ msgstr "Prodotto dell'ordine {order_product_uuid} non trovato!" msgid "original address string provided by the user" msgstr "Stringa di indirizzo originale fornita dall'utente" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1280,8 +1301,8 @@ msgstr "ElasticSearch: funziona a meraviglia" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attributi" @@ -1319,7 +1340,8 @@ msgstr "" "categoria." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Prezzi minimi e massimi per i prodotti di questa categoria, se disponibili." @@ -1357,7 +1379,7 @@ msgid "represents feedback from a user." msgstr "Rappresenta il feedback di un utente." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notifiche" @@ -1365,7 +1387,7 @@ msgstr "Notifiche" msgid "download url for this order product if applicable" msgstr "URL di download per il prodotto dell'ordine, se applicabile" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1373,7 +1395,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "Un elenco di prodotti ordinati in questo ordine" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Indirizzo di fatturazione" @@ -1401,7 +1423,7 @@ msgstr "Tutti i prodotti sono presenti nell'ordine digitale" msgid "transactions for this order" msgstr "Transazioni per questo ordine" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Ordini" @@ -1418,7 +1440,7 @@ msgstr "Immagini del prodotto" msgid "category" msgstr "Categoria" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Feedback" @@ -1459,7 +1481,7 @@ msgstr "Prodotti disponibili solo per ordini personali" msgid "discount price" msgstr "Prezzo scontato" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Prodotti" @@ -1471,7 +1493,7 @@ msgstr "Codici promozionali" msgid "products on sale" msgstr "Prodotti in vendita" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promozioni" @@ -1479,7 +1501,7 @@ msgstr "Promozioni" msgid "vendor" msgstr "Venditore" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1487,11 +1509,11 @@ msgstr "Venditore" msgid "product" msgstr "Prodotto" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Prodotti desiderati" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Liste dei desideri" @@ -1590,9 +1612,9 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"Rappresenta un gruppo di attributi, che può essere gerarchico. Questa classe " -"viene utilizzata per gestire e organizzare i gruppi di attributi. Un gruppo " -"di attributi può avere un gruppo padre, formando una struttura gerarchica. " +"Rappresenta un gruppo di attributi, che può essere gerarchico. Questa classe" +" viene utilizzata per gestire e organizzare i gruppi di attributi. Un gruppo" +" di attributi può avere un gruppo padre, formando una struttura gerarchica. " "Questo può essere utile per categorizzare e gestire meglio gli attributi in " "un sistema complesso." @@ -1608,7 +1630,7 @@ msgstr "Gruppo di attributi padre" msgid "attribute group's name" msgstr "Nome del gruppo di attributi" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Gruppo di attributi" @@ -1716,8 +1738,8 @@ msgid "" msgstr "" "Rappresenta un tag di categoria utilizzato per i prodotti. Questa classe " "modella un tag di categoria che può essere usato per associare e " -"classificare i prodotti. Include gli attributi per un identificatore interno " -"del tag e un nome di visualizzazione facile da usare." +"classificare i prodotti. Include gli attributi per un identificatore interno" +" del tag e un nome di visualizzazione facile da usare." #: engine/core/models.py:249 msgid "category tag" @@ -1741,12 +1763,12 @@ msgid "" msgstr "" "Rappresenta un'entità di categoria per organizzare e raggruppare gli " "elementi correlati in una struttura gerarchica. Le categorie possono avere " -"relazioni gerarchiche con altre categorie, supportando le relazioni genitore-" -"figlio. La classe include campi per i metadati e per la rappresentazione " -"visiva, che servono come base per le funzionalità legate alle categorie. " -"Questa classe viene tipicamente utilizzata per definire e gestire le " -"categorie di prodotti o altri raggruppamenti simili all'interno di " -"un'applicazione, consentendo agli utenti o agli amministratori di " +"relazioni gerarchiche con altre categorie, supportando le relazioni " +"genitore-figlio. La classe include campi per i metadati e per la " +"rappresentazione visiva, che servono come base per le funzionalità legate " +"alle categorie. Questa classe viene tipicamente utilizzata per definire e " +"gestire le categorie di prodotti o altri raggruppamenti simili all'interno " +"di un'applicazione, consentendo agli utenti o agli amministratori di " "specificare il nome, la descrizione e la gerarchia delle categorie, nonché " "di assegnare attributi come immagini, tag o priorità." @@ -1800,13 +1822,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Rappresenta un oggetto Marchio nel sistema. Questa classe gestisce le " "informazioni e gli attributi relativi a un marchio, tra cui il nome, il " "logo, la descrizione, le categorie associate, uno slug unico e l'ordine di " -"priorità. Permette di organizzare e rappresentare i dati relativi al marchio " -"all'interno dell'applicazione." +"priorità. Permette di organizzare e rappresentare i dati relativi al marchio" +" all'interno dell'applicazione." #: engine/core/models.py:456 msgid "name of this brand" @@ -1850,8 +1873,8 @@ msgstr "Categorie" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1859,10 +1882,10 @@ msgid "" msgstr "" "Rappresenta lo stock di un prodotto gestito nel sistema. Questa classe " "fornisce dettagli sulla relazione tra fornitori, prodotti e informazioni " -"sulle scorte, oltre a proprietà legate all'inventario come prezzo, prezzo di " -"acquisto, quantità, SKU e asset digitali. Fa parte del sistema di gestione " -"dell'inventario per consentire il monitoraggio e la valutazione dei prodotti " -"disponibili presso i vari fornitori." +"sulle scorte, oltre a proprietà legate all'inventario come prezzo, prezzo di" +" acquisto, quantità, SKU e asset digitali. Fa parte del sistema di gestione " +"dell'inventario per consentire il monitoraggio e la valutazione dei prodotti" +" disponibili presso i vari fornitori." #: engine/core/models.py:528 msgid "the vendor supplying this product stock" @@ -1884,8 +1907,8 @@ msgstr "Prezzo di vendita" msgid "the product associated with this stock entry" msgstr "Il prodotto associato a questa voce di magazzino" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Prodotto associato" @@ -1947,8 +1970,8 @@ msgstr "" "sistema che gestisce il commercio elettronico o l'inventario. Questa classe " "interagisce con i modelli correlati (come Category, Brand e ProductTag) e " "gestisce la cache per le proprietà a cui si accede di frequente, per " -"migliorare le prestazioni. Viene utilizzata per definire e manipolare i dati " -"dei prodotti e le informazioni ad essi associate all'interno di " +"migliorare le prestazioni. Viene utilizzata per definire e manipolare i dati" +" dei prodotti e le informazioni ad essi associate all'interno di " "un'applicazione." #: engine/core/models.py:595 @@ -1988,7 +2011,7 @@ msgstr "Fornire un nome identificativo chiaro per il prodotto" msgid "product name" msgstr "Nome del prodotto" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Aggiungere una descrizione dettagliata del prodotto" @@ -2008,200 +2031,208 @@ msgstr "Numero di parte" msgid "stock keeping unit for this product" msgstr "Unità di mantenimento delle scorte per questo prodotto" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Se esportare questo prodotto nei mercati" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Esportazione verso i mercati" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Rappresenta un attributo nel sistema. Questa classe viene utilizzata per " -"definire e gestire gli attributi, che sono dati personalizzabili che possono " -"essere associati ad altre entità. Gli attributi hanno categorie, gruppi, " -"tipi di valori e nomi associati. Il modello supporta diversi tipi di valori, " -"tra cui stringa, intero, float, booleano, array e oggetto. Ciò consente una " -"strutturazione dinamica e flessibile dei dati." +"definire e gestire gli attributi, che sono dati personalizzabili che possono" +" essere associati ad altre entità. Gli attributi hanno categorie, gruppi, " +"tipi di valori e nomi associati. Il modello supporta diversi tipi di valori," +" tra cui stringa, intero, float, booleano, array e oggetto. Ciò consente una" +" strutturazione dinamica e flessibile dei dati." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Gruppo di questo attributo" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Stringa" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Intero" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Galleggiante" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Booleano" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Oggetto" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Tipo di valore dell'attributo" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Tipo di valore" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Nome dell'attributo" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Nome dell'attributo" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "è filtrabile" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Quali attributi e valori possono essere utilizzati per filtrare questa " "categoria." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attributo" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Rappresenta un valore specifico per un attributo collegato a un prodotto. " "Collega l'\"attributo\" a un \"valore\" unico, consentendo una migliore " "organizzazione e rappresentazione dinamica delle caratteristiche del " "prodotto." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attributo di questo valore" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Il prodotto specifico associato al valore di questo attributo" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Il valore specifico per questo attributo" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Rappresenta l'immagine di un prodotto associata a un prodotto del sistema. " -"Questa classe è progettata per gestire le immagini dei prodotti, comprese le " -"funzionalità di caricamento dei file immagine, di associazione a prodotti " +"Questa classe è progettata per gestire le immagini dei prodotti, comprese le" +" funzionalità di caricamento dei file immagine, di associazione a prodotti " "specifici e di determinazione dell'ordine di visualizzazione. Include anche " "una funzione di accessibilità con testo alternativo per le immagini." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" "Fornire un testo alternativo per l'immagine ai fini dell'accessibilità." -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Testo alt dell'immagine" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Caricare il file immagine per questo prodotto" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Immagine del prodotto" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Determina l'ordine di visualizzazione delle immagini" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Priorità del display" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Il prodotto che questa immagine rappresenta" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Immagini del prodotto" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Rappresenta una campagna promozionale per prodotti con sconto. Questa classe " -"viene utilizzata per definire e gestire campagne promozionali che offrono " +"Rappresenta una campagna promozionale per prodotti con sconto. Questa classe" +" viene utilizzata per definire e gestire campagne promozionali che offrono " "uno sconto in percentuale sui prodotti. La classe include attributi per " "impostare la percentuale di sconto, fornire dettagli sulla promozione e " "collegarla ai prodotti applicabili. Si integra con il catalogo dei prodotti " "per determinare gli articoli interessati dalla campagna." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Percentuale di sconto per i prodotti selezionati" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Percentuale di sconto" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Fornite un nome unico per questa promozione" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Nome della promozione" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Descrizione della promozione" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Selezionare i prodotti inclusi in questa promozione" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Prodotti inclusi" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promozione" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2214,60 +2245,60 @@ msgstr "" "rimozione di prodotti, nonché operazioni per l'aggiunta e la rimozione di " "più prodotti contemporaneamente." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Prodotti che l'utente ha contrassegnato come desiderati" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Utente che possiede questa wishlist" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Proprietario della lista dei desideri" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Lista dei desideri" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"Rappresenta un record documentario legato a un prodotto. Questa classe viene " -"utilizzata per memorizzare informazioni sui documentari relativi a prodotti " -"specifici, compresi i file caricati e i relativi metadati. Contiene metodi e " -"proprietà per gestire il tipo di file e il percorso di archiviazione dei " +"Rappresenta un record documentario legato a un prodotto. Questa classe viene" +" utilizzata per memorizzare informazioni sui documentari relativi a prodotti" +" specifici, compresi i file caricati e i relativi metadati. Contiene metodi " +"e proprietà per gestire il tipo di file e il percorso di archiviazione dei " "file documentari. Estende le funzionalità di mixin specifici e fornisce " "ulteriori caratteristiche personalizzate." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentario" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentari" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Non risolto" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Rappresenta un'entità indirizzo che include dettagli sulla posizione e " "associazioni con un utente. Fornisce funzionalità per la memorizzazione di " @@ -2280,59 +2311,59 @@ msgstr "" "classe consente inoltre di associare un indirizzo a un utente, facilitando " "la gestione personalizzata dei dati." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Indirizzo del cliente" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Linea di indirizzo" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Via" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distretto" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Città" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Regione" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Codice postale" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Paese" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Punto di geolocalizzazione(Longitudine, Latitudine)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Risposta JSON completa di geocoder per questo indirizzo" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Risposta JSON memorizzata dal servizio di geocodifica" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Indirizzo" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Indirizzi" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2341,248 +2372,250 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"Rappresenta un codice promozionale che può essere utilizzato per gli sconti, " -"gestendone la validità, il tipo di sconto e l'applicazione. La classe " +"Rappresenta un codice promozionale che può essere utilizzato per gli sconti," +" gestendone la validità, il tipo di sconto e l'applicazione. La classe " "PromoCode memorizza i dettagli di un codice promozionale, tra cui il suo " "identificatore univoco, le proprietà dello sconto (importo o percentuale), " "il periodo di validità, l'utente associato (se presente) e lo stato di " "utilizzo. Include funzionalità per convalidare e applicare il codice " "promozionale a un ordine, assicurando il rispetto dei vincoli." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Codice univoco utilizzato da un utente per riscattare uno sconto" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identificatore del codice promozionale" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" -msgstr "Importo fisso dello sconto applicato se non si utilizza la percentuale" +msgstr "" +"Importo fisso dello sconto applicato se non si utilizza la percentuale" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Importo fisso dello sconto" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Sconto percentuale applicato se l'importo fisso non viene utilizzato" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Sconto percentuale" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Data di scadenza del codice promozionale" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Tempo di validità finale" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Data a partire dalla quale il codice promozionale è valido" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Ora di inizio validità" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Timestamp in cui è stato utilizzato il codice promozionale, vuoto se non " "ancora utilizzato" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Timestamp d'uso" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Utente assegnato a questo codice promozionale, se applicabile" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Utente assegnato" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Codice promozionale" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Codici promozionali" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"È necessario definire un solo tipo di sconto (importo o percentuale), ma non " -"entrambi o nessuno." +"È necessario definire un solo tipo di sconto (importo o percentuale), ma non" +" entrambi o nessuno." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Il codice promozionale è già stato utilizzato" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Tipo di sconto non valido per il codice promozionale {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Rappresenta un ordine effettuato da un utente. Questa classe modella un " -"ordine all'interno dell'applicazione, includendo i suoi vari attributi, come " -"le informazioni di fatturazione e spedizione, lo stato, l'utente associato, " -"le notifiche e le operazioni correlate. Gli ordini possono avere prodotti " +"ordine all'interno dell'applicazione, includendo i suoi vari attributi, come" +" le informazioni di fatturazione e spedizione, lo stato, l'utente associato," +" le notifiche e le operazioni correlate. Gli ordini possono avere prodotti " "associati, possono essere applicate promozioni, impostati indirizzi e " "aggiornati i dettagli di spedizione o fatturazione. Allo stesso modo, la " -"funzionalità supporta la gestione dei prodotti nel ciclo di vita dell'ordine." +"funzionalità supporta la gestione dei prodotti nel ciclo di vita " +"dell'ordine." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "L'indirizzo di fatturazione utilizzato per questo ordine" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Codice promozionale opzionale applicato a questo ordine" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Codice promozionale applicato" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "L'indirizzo di spedizione utilizzato per questo ordine" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Indirizzo di spedizione" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Stato attuale dell'ordine nel suo ciclo di vita" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Stato dell'ordine" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Struttura JSON delle notifiche da mostrare agli utenti; nell'interfaccia " "utente dell'amministratore viene utilizzata la visualizzazione a tabella." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Rappresentazione JSON degli attributi dell'ordine per questo ordine" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "L'utente che ha effettuato l'ordine" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Utente" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Il timestamp del momento in cui l'ordine è stato finalizzato" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Acquista tempo" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Un identificatore leggibile dall'uomo per l'ordine" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID leggibile dall'uomo" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Ordine" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Un utente può avere un solo ordine pendente alla volta!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Non è possibile aggiungere prodotti a un ordine che non sia in sospeso." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Non è possibile aggiungere all'ordine prodotti inattivi" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" "Non è possibile aggiungere più prodotti di quelli disponibili in magazzino" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "Non è possibile rimuovere i prodotti da un ordine che non è in corso." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} non esiste con la query <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Il codice promozionale non esiste" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "È possibile acquistare solo prodotti fisici con indirizzo di spedizione " "specificato!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "L'indirizzo non esiste" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "In questo momento non è possibile acquistare, riprovare tra qualche minuto." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Valore di forza non valido" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Non è possibile acquistare un ordine vuoto!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Non è possibile acquistare un ordine senza un utente!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Un utente senza saldo non può acquistare con il saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Fondi insufficienti per completare l'ordine" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2591,7 +2624,7 @@ msgstr "" "seguenti informazioni: nome del cliente, e-mail del cliente, numero di " "telefono del cliente" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2599,7 +2632,7 @@ msgstr "" "Metodo di pagamento non valido: {payment_method} da " "{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2611,35 +2644,36 @@ msgstr "" "per catturare e memorizzare i commenti degli utenti su prodotti specifici " "che hanno acquistato. Contiene attributi per memorizzare i commenti degli " "utenti, un riferimento al prodotto correlato nell'ordine e una valutazione " -"assegnata dall'utente. La classe utilizza campi del database per modellare e " -"gestire efficacemente i dati di feedback." +"assegnata dall'utente. La classe utilizza campi del database per modellare e" +" gestire efficacemente i dati di feedback." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Commenti degli utenti sulla loro esperienza con il prodotto" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Commenti di feedback" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Riferisce il prodotto specifico in un ordine di cui si tratta il feedback." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Prodotto correlato all'ordine" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Valutazione del prodotto assegnata dall'utente" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Valutazione del prodotto" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2662,116 +2696,116 @@ msgstr "" "modello si integra con i modelli Ordine e Prodotto e memorizza un " "riferimento ad essi." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" "Il prezzo pagato dal cliente per questo prodotto al momento dell'acquisto." -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Prezzo di acquisto al momento dell'ordine" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Commenti interni per gli amministratori su questo prodotto ordinato" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Commenti interni" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Notifiche degli utenti" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Rappresentazione JSON degli attributi di questo elemento" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Attributi del prodotto ordinati" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Riferimento all'ordine padre che contiene questo prodotto" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Ordine dei genitori" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Il prodotto specifico associato a questa riga d'ordine" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Quantità di questo prodotto specifico nell'ordine" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Quantità di prodotto" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Stato attuale di questo prodotto nell'ordine" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Stato della linea di prodotti" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "L'ordine-prodotto deve avere un ordine associato!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Azione errata specificata per il feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "non è possibile dare un riscontro a un ordine non ricevuto" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nome" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL dell'integrazione" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Credenziali di autenticazione" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "È possibile avere un solo provider CRM predefinito" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Link al CRM dell'ordine" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Link al CRM degli ordini" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Rappresenta la funzionalità di download degli asset digitali associati agli " "ordini. La classe DigitalAssetDownload offre la possibilità di gestire e " @@ -2781,11 +2815,11 @@ msgstr "" "il download della risorsa quando l'ordine associato è in uno stato " "completato." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Scaricare" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Scaricamento" @@ -2793,8 +2827,8 @@ msgstr "Scaricamento" msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -"per aggiungere un feedback è necessario fornire un commento, una valutazione " -"e l'uuid del prodotto dell'ordine." +"per aggiungere un feedback è necessario fornire un commento, una valutazione" +" e l'uuid del prodotto dell'ordine." #: engine/core/sitemaps.py:25 msgid "Home" @@ -2986,8 +3020,7 @@ msgstr "Hello %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Grazie per il vostro ordine #%(order.pk)s! Siamo lieti di informarla che " @@ -3016,8 +3049,8 @@ msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero " -"%(config.EMAIL_HOST_USER)s." +"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero" +" %(config.EMAIL_HOST_USER)s." #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -3069,8 +3102,8 @@ msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero " -"%(contact_email)s." +"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero" +" %(contact_email)s." #: engine/core/templates/digital_order_delivered_email.html:165 #: engine/core/templates/promocode_granted_email.html:108 @@ -3102,8 +3135,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Grazie per il vostro ordine! Siamo lieti di confermare il suo acquisto. Di " @@ -3175,8 +3207,8 @@ msgstr "Il parametro NOMINATIM_URL deve essere configurato!" #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -"Le dimensioni dell'immagine non devono superare w{max_width} x h{max_height} " -"pixel" +"Le dimensioni dell'immagine non devono superare w{max_width} x h{max_height}" +" pixel" #: engine/core/views.py:104 msgid "" @@ -3238,15 +3270,10 @@ msgstr "Gestisce la logica dell'acquisto come azienda senza registrazione." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestisce il download di una risorsa digitale associata a un ordine.\n" -"Questa funzione tenta di servire il file della risorsa digitale che si trova " -"nella directory di archiviazione del progetto. Se il file non viene trovato, " -"viene generato un errore HTTP 404 per indicare che la risorsa non è " -"disponibile." +"Questa funzione tenta di servire il file della risorsa digitale che si trova nella directory di archiviazione del progetto. Se il file non viene trovato, viene generato un errore HTTP 404 per indicare che la risorsa non è disponibile." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3275,19 +3302,15 @@ msgstr "favicon non trovata" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestisce le richieste per la favicon di un sito web.\n" -"Questa funzione tenta di servire il file favicon situato nella cartella " -"statica del progetto. Se il file favicon non viene trovato, viene generato " -"un errore HTTP 404 per indicare che la risorsa non è disponibile." +"Questa funzione tenta di servire il file favicon situato nella cartella statica del progetto. Se il file favicon non viene trovato, viene generato un errore HTTP 404 per indicare che la risorsa non è disponibile." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Reindirizza la richiesta alla pagina indice dell'amministrazione. La " @@ -3296,8 +3319,8 @@ msgstr "" "`redirect` di Django per gestire il reindirizzamento HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Restituisce la versione corrente di eVibes." +msgid "Returns current version of the Schon. " +msgstr "Restituisce la versione corrente di Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3310,28 +3333,29 @@ msgstr "Restituisce le variabili personalizzate per Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" "Definisce un insieme di viste per la gestione delle operazioni relative a " -"Evibes. La classe EvibesViewSet eredita da ModelViewSet e fornisce " -"funzionalità per la gestione di azioni e operazioni sulle entità Evibes. " -"Include il supporto per classi di serializzatori dinamici in base all'azione " -"corrente, permessi personalizzabili e formati di rendering." +"schon. La classe schonViewSet eredita da ModelViewSet e fornisce " +"funzionalità per la gestione di azioni e operazioni sulle entità schon. " +"Include il supporto per classi di serializzatori dinamici in base all'azione" +" corrente, permessi personalizzabili e formati di rendering." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Rappresenta un insieme di viste per la gestione degli oggetti " -"AttributeGroup. Gestisce le operazioni relative agli AttributeGroup, tra cui " -"il filtraggio, la serializzazione e il recupero dei dati. Questa classe fa " +"AttributeGroup. Gestisce le operazioni relative agli AttributeGroup, tra cui" +" il filtraggio, la serializzazione e il recupero dei dati. Questa classe fa " "parte del livello API dell'applicazione e fornisce un modo standardizzato " "per elaborare le richieste e le risposte per i dati di AttributeGroup." @@ -3348,16 +3372,16 @@ msgstr "" "dell'applicazione. Fornisce un insieme di endpoint API per interagire con i " "dati Attribute. Questa classe gestisce l'interrogazione, il filtraggio e la " "serializzazione degli oggetti Attribute, consentendo un controllo dinamico " -"sui dati restituiti, come il filtraggio per campi specifici o il recupero di " -"informazioni dettagliate o semplificate, a seconda della richiesta." +"sui dati restituiti, come il filtraggio per campi specifici o il recupero di" +" informazioni dettagliate o semplificate, a seconda della richiesta." #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Un insieme di viste per la gestione degli oggetti AttributeValue. Questo " "insieme di viste fornisce funzionalità per elencare, recuperare, creare, " @@ -3389,16 +3413,16 @@ msgid "" "endpoints for Brand objects." msgstr "" "Rappresenta un insieme di viste per la gestione delle istanze del marchio. " -"Questa classe fornisce funzionalità per interrogare, filtrare e serializzare " -"gli oggetti Brand. Utilizza il framework ViewSet di Django per semplificare " -"l'implementazione di endpoint API per gli oggetti Brand." +"Questa classe fornisce funzionalità per interrogare, filtrare e serializzare" +" gli oggetti Brand. Utilizza il framework ViewSet di Django per semplificare" +" l'implementazione di endpoint API per gli oggetti Brand." #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3406,7 +3430,7 @@ msgstr "" "Gestisce le operazioni relative al modello `Product` nel sistema. Questa " "classe fornisce un insieme di viste per la gestione dei prodotti, compreso " "il loro filtraggio, la serializzazione e le operazioni su istanze " -"specifiche. Si estende da `EvibesViewSet` per utilizzare funzionalità comuni " +"specifiche. Si estende da `schonViewSet` per utilizzare funzionalità comuni " "e si integra con il framework Django REST per le operazioni API RESTful. " "Include metodi per recuperare i dettagli del prodotto, applicare i permessi " "e accedere ai feedback correlati di un prodotto." @@ -3419,9 +3443,9 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Rappresenta un insieme di viste per la gestione degli oggetti Vendor. Questo " -"insieme di viste consente di recuperare, filtrare e serializzare i dati del " -"fornitore. Definisce il queryset, le configurazioni dei filtri e le classi " +"Rappresenta un insieme di viste per la gestione degli oggetti Vendor. Questo" +" insieme di viste consente di recuperare, filtrare e serializzare i dati del" +" fornitore. Definisce il queryset, le configurazioni dei filtri e le classi " "di serializzazione utilizzate per gestire le diverse azioni. Lo scopo di " "questa classe è fornire un accesso semplificato alle risorse relative a " "Vendor attraverso il framework REST di Django." @@ -3431,16 +3455,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Rappresentazione di un insieme di viste che gestisce gli oggetti Feedback. " -"Questa classe gestisce le operazioni relative agli oggetti Feedback, tra cui " -"l'elencazione, il filtraggio e il recupero dei dettagli. Lo scopo di questo " -"insieme di viste è fornire serializzatori diversi per azioni diverse e " +"Questa classe gestisce le operazioni relative agli oggetti Feedback, tra cui" +" l'elencazione, il filtraggio e il recupero dei dettagli. Lo scopo di questo" +" insieme di viste è fornire serializzatori diversi per azioni diverse e " "implementare una gestione basata sui permessi degli oggetti Feedback " -"accessibili. Estende l'insieme di base `EvibesViewSet` e fa uso del sistema " +"accessibili. Estende l'insieme di base `schonViewSet` e fa uso del sistema " "di filtraggio di Django per interrogare i dati." #: engine/core/viewsets.py:652 @@ -3448,9 +3472,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet per la gestione degli ordini e delle operazioni correlate. Questa " @@ -3466,8 +3490,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Fornisce un insieme di viste per la gestione delle entità OrderProduct. " @@ -3480,7 +3504,8 @@ msgstr "" #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " msgstr "" -"Gestisce le operazioni relative alle immagini dei prodotti nell'applicazione." +"Gestisce le operazioni relative alle immagini dei prodotti " +"nell'applicazione." #: engine/core/viewsets.py:988 msgid "" @@ -3502,8 +3527,8 @@ msgstr "Gestisce le operazioni relative ai dati delle scorte nel sistema." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3515,8 +3540,8 @@ msgstr "" "ViewSet facilita funzionalità quali l'aggiunta, la rimozione e le azioni di " "massa per i prodotti della lista dei desideri. I controlli delle " "autorizzazioni sono integrati per garantire che gli utenti possano gestire " -"solo la propria lista dei desideri, a meno che non vengano concessi permessi " -"espliciti." +"solo la propria lista dei desideri, a meno che non vengano concessi permessi" +" espliciti." #: engine/core/viewsets.py:1183 msgid "" @@ -3526,8 +3551,8 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Questa classe fornisce la funzionalità viewset per la gestione degli oggetti " -"`Address`. La classe AddressViewSet consente operazioni CRUD, filtri e " +"Questa classe fornisce la funzionalità viewset per la gestione degli oggetti" +" `Address`. La classe AddressViewSet consente operazioni CRUD, filtri e " "azioni personalizzate relative alle entità indirizzo. Include comportamenti " "specializzati per diversi metodi HTTP, override del serializzatore e " "gestione dei permessi in base al contesto della richiesta." diff --git a/engine/core/locale/ja_JP/LC_MESSAGES/django.mo b/engine/core/locale/ja_JP/LC_MESSAGES/django.mo index bdb5af7a..dbe56243 100644 Binary files a/engine/core/locale/ja_JP/LC_MESSAGES/django.mo and b/engine/core/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/ja_JP/LC_MESSAGES/django.po b/engine/core/locale/ja_JP/LC_MESSAGES/django.po index fbec46f1..f69cbb22 100644 --- a/engine/core/locale/ja_JP/LC_MESSAGES/django.po +++ b/engine/core/locale/ja_JP/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -19,8 +19,7 @@ msgstr "ユニークID" #: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" -msgstr "" -"ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" +msgstr "ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" #: engine/core/abstract.py:20 msgid "is active" @@ -28,10 +27,9 @@ msgstr "アクティブ" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" -msgstr "" -"falseに設定された場合、このオブジェクトは必要なパーミッションのないユーザーに" -"は見えない。" +"if set to false, this object can't be seen by users without needed " +"permission" +msgstr "falseに設定された場合、このオブジェクトは必要なパーミッションのないユーザーには見えない。" #: engine/core/abstract.py:26 engine/core/choices.py:18 msgid "created" @@ -75,8 +73,8 @@ msgstr "タイムスタンプ" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "選択した%(verbose_name_plural)sをアクティブにする" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "選択した%(verbose_name_plural)sを有効化" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -84,21 +82,21 @@ msgstr "選択した項目がアクティブになりました!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "選択された%(verbose_name_plural)sを非アクティブにする" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "選択した %(verbose_name_plural)s を無効化" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "選択されたアイテムは無効化されました!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "属性値" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "属性値" @@ -118,12 +116,12 @@ msgstr "在庫" msgid "stocks" msgstr "株式" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "商品のご注文" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "商品のご注文" @@ -131,7 +129,31 @@ msgstr "商品のご注文" msgid "children" msgstr "子供たち" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "画像があります" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "選択した %(verbose_name_plural)s をマーケットプレイスのフィードにエクスポートする" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "選択された %(verbose_name_plural)s がエクスポート用にマークされました。" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "%(verbose_name_plural)sをマーケットプレイスのフィードから除外" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "選択された %(verbose_name_plural)s は輸出禁止となりました。" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "コンフィグ" @@ -155,7 +177,8 @@ msgstr "配信" msgid "canceled" msgstr "キャンセル" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "失敗" @@ -193,8 +216,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"この API の OpenApi3 スキーマ。フォーマットはコンテントネゴシエーションで選択" -"できる。言語は Accept-Language とクエリパラメータで選択できる。" +"この API の OpenApi3 スキーマ。フォーマットはコンテントネゴシエーションで選択できる。言語は Accept-Language " +"とクエリパラメータで選択できる。" #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 msgid "cache I/O" @@ -206,8 +229,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "許可されたデータをキャッシュから読み出すには、キーのみを適用する。\n" -"キャッシュにデータを書き込むには、認証付きのキー、データ、タイムアウトを適用" -"する。" +"キャッシュにデータを書き込むには、認証付きのキー、データ、タイムアウトを適用する。" #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -241,9 +263,7 @@ msgstr "ビジネスとして注文を購入する" msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -msgstr "" -"提供された `product` と `product_uuid` と `attributes` を使用して、ビジネスと" -"して注文を購入する。" +msgstr "提供された `product` と `product_uuid` と `attributes` を使用して、ビジネスとして注文を購入する。" #: engine/core/docs/drf/views.py:180 msgid "download a digital asset from purchased digital order" @@ -270,10 +290,9 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "既存の属性グループを書き換えて、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" -msgstr "" -"既存の属性グループのいくつかのフィールドを書き換え、編集不可能なものを保存す" -"る。" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" +msgstr "既存の属性グループのいくつかのフィールドを書き換え、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:118 msgid "list all attributes (simple view)" @@ -297,8 +316,7 @@ msgstr "既存の属性を書き換える。" #: engine/core/docs/drf/viewsets.py:156 msgid "rewrite some fields of an existing attribute saving non-editables" -msgstr "" -"既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" +msgstr "既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:166 msgid "list all attribute values (simple view)" @@ -321,9 +339,9 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "既存の属性値を書き換える。" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" -msgstr "" -"既存の属性値のいくつかのフィールドを書き換え、編集不可能な値を保存する。" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" +msgstr "既存の属性値のいくつかのフィールドを書き換え、編集不可能な値を保存する。" #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -375,11 +393,10 @@ msgstr "スタッフ以外のユーザーについては、自分の注文のみ #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"human_readable_id、order_products.product.name、order_products.product." -"partnumberの大文字小文字を区別しない部分文字列検索" +"human_readable_id、order_products.product.name、order_products.product.partnumberの大文字小文字を区別しない部分文字列検索" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -399,8 +416,7 @@ msgstr "人間が読み取れる正確な注文IDによるフィルタリング" #: engine/core/docs/drf/viewsets.py:336 msgid "Filter by user's email (case-insensitive exact match)" -msgstr "" -"ユーザーのEメールによるフィルタリング(大文字・小文字を区別しない完全一致)" +msgstr "ユーザーのEメールによるフィルタリング(大文字・小文字を区別しない完全一致)" #: engine/core/docs/drf/viewsets.py:341 msgid "Filter by user's UUID" @@ -408,19 +424,15 @@ msgstr "ユーザーのUUIDによるフィルタリング" #: engine/core/docs/drf/viewsets.py:347 msgid "Filter by order status (case-insensitive substring match)" -msgstr "" -"注文ステータスによるフィルタリング(大文字と小文字を区別しない部分文字列マッ" -"チ)" +msgstr "注文ステータスによるフィルタリング(大文字と小文字を区別しない部分文字列マッチ)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"uuid、human_readable_id、user_email、user、status、created、modified、" -"buy_time、randomのいずれかによる順序。降順の場合は'-'をプレフィックスとしてつ" -"ける(例:'-buy_time')。" +"uuid、human_readable_id、user_email、user、status、created、modified、buy_time、randomのいずれかによる順序。降順の場合は'-'をプレフィックスとしてつける(例:'-buy_time')。" #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -460,9 +472,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"注文の購入を確定する。force_balance` が使用された場合、ユーザーの残高を使用し" -"て購入が完了します。 `force_payment` が使用された場合、トランザクションが開始" -"されます。" +"注文の購入を確定する。force_balance` が使用された場合、ユーザーの残高を使用して購入が完了します。 `force_payment` " +"が使用された場合、トランザクションが開始されます。" #: engine/core/docs/drf/viewsets.py:427 msgid "retrieve current pending order of a user" @@ -488,8 +499,7 @@ msgstr "注文に商品を追加する" msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"指定した `product_uuid` と `attributes` を使用して、商品を注文に追加する。" +msgstr "指定した `product_uuid` と `attributes` を使用して、商品を注文に追加する。" #: engine/core/docs/drf/viewsets.py:461 msgid "add a list of products to order, quantities will not count" @@ -499,9 +509,7 @@ msgstr "数量はカウントされません。" msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"指定された `product_uuid` と `attributes` を使用して、注文に商品のリストを追" -"加する。" +msgstr "指定された `product_uuid` と `attributes` を使用して、注文に商品のリストを追加する。" #: engine/core/docs/drf/viewsets.py:472 msgid "remove product from order" @@ -511,9 +519,7 @@ msgstr "注文から商品を削除する" msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"指定された `product_uuid` と `attributes` を使用して、注文から商品を削除す" -"る。" +msgstr "指定された `product_uuid` と `attributes` を使用して、注文から商品を削除する。" #: engine/core/docs/drf/viewsets.py:483 msgid "remove product from order, quantities will not count" @@ -523,9 +529,7 @@ msgstr "注文から商品を削除すると、数量はカウントされませ msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "" -"指定された `product_uuid` と `attributes` を用いて、注文から商品のリストを削" -"除する。" +msgstr "指定された `product_uuid` と `attributes` を用いて、注文から商品のリストを削除する。" #: engine/core/docs/drf/viewsets.py:497 msgid "list all wishlists (simple view)" @@ -557,8 +561,7 @@ msgstr "既存の属性を書き換える。" #: engine/core/docs/drf/viewsets.py:537 msgid "rewrite some fields of an existing wishlist saving non-editables" -msgstr "" -"既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" +msgstr "既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:544 msgid "retrieve current pending wishlist of a user" @@ -582,8 +585,7 @@ msgstr "ウィッシュリストから商品を削除する" #: engine/core/docs/drf/viewsets.py:568 msgid "removes a product from an wishlist using the provided `product_uuid`" -msgstr "" -"指定された `product_uuid` を使ってウィッシュリストから商品を削除します。" +msgstr "指定された `product_uuid` を使ってウィッシュリストから商品を削除します。" #: engine/core/docs/drf/viewsets.py:577 msgid "add many products to wishlist" @@ -591,8 +593,7 @@ msgstr "ウィッシュリストに多くの商品を追加する" #: engine/core/docs/drf/viewsets.py:579 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "" -"指定された `product_uuids` を使ってウィッシュリストに多くの商品を追加する。" +msgstr "指定された `product_uuids` を使ってウィッシュリストに多くの商品を追加する。" #: engine/core/docs/drf/viewsets.py:588 msgid "remove many products from wishlist" @@ -601,34 +602,24 @@ msgstr "注文から商品を削除する" #: engine/core/docs/drf/viewsets.py:590 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "" -"指定された `product_uuids` を使ってウィッシュリストから多くの商品を削除する。" +msgstr "指定された `product_uuids` を使ってウィッシュリストから多くの商品を削除する。" #: engine/core/docs/drf/viewsets.py:598 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "1つまたは複数の属性名/値のペアでフィルタリングします。 \n" "- シンタックス**:attr_name=method-value[;attr2=method2-value2]...`。\n" -"- メソッド** (省略された場合のデフォルトは `icontains`):`iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- 値の型付け**:boolean, integer, float の場合は `true`/`false`; それ以外の場" -"合は文字列として扱う。 \n" -"- それ以外は文字列として扱われる。 **Base64**: `b64-` をプレフィックスとして" -"つけると、生の値を URL-safe base64-encode することができる。 \n" +"- メソッド** (省略された場合のデフォルトは `icontains`):`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- 値の型付け**:boolean, integer, float の場合は `true`/`false`; それ以外の場合は文字列として扱う。 \n" +"- それ以外は文字列として扱われる。 **Base64**: `b64-` をプレフィックスとしてつけると、生の値を URL-safe base64-encode することができる。 \n" "例 \n" "color=exact-red`、`size=gt-10`、`features=in-[\"wifi\", \"bluetooth\"]`、\n" "b64-description=icontains-aGVhdC1jb2xk`。" @@ -643,12 +634,10 @@ msgstr "(正確には)製品UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"カンマ区切りの並べ替えフィールドのリスト。降順の場合は `-` をプレフィックスと" -"してつける。 \n" +"カンマ区切りの並べ替えフィールドのリスト。降順の場合は `-` をプレフィックスとしてつける。 \n" "**許可:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -672,9 +661,7 @@ msgstr "編集不可能なフィールドを保持したまま、既存の製品 #: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:700 msgid "" "update some fields of an existing product, preserving non-editable fields" -msgstr "" -"編集不可能なフィールドを保持したまま、既存の製品の一部のフィールドを更新す" -"る。" +msgstr "編集不可能なフィールドを保持したまま、既存の製品の一部のフィールドを更新する。" #: engine/core/docs/drf/viewsets.py:719 engine/core/docs/drf/viewsets.py:720 msgid "delete a product" @@ -719,8 +706,8 @@ msgstr "オートコンプリート住所入力" #: engine/core/docs/drf/viewsets.py:848 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -"docker compose exec app poetry run python manage.py deepl_translate -l en-gb " -"-l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " +"docker compose exec app poetry run python manage.py deepl_translate -l en-gb" +" -l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " "it-it -l ja-jp -l kk-kz -l n-nl -l pl-pl -l pt-br -l ro-ro -l ru-ru -l zh-" "hans -a core -a geo -a payments -a vibes_auth -a blog" @@ -750,9 +737,7 @@ msgstr "既存のフィードバックを書き換える。" #: engine/core/docs/drf/viewsets.py:909 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "" -"既存のフィードバックのいくつかのフィールドを書き換えて、編集不可能なものを保" -"存する。" +msgstr "既存のフィードバックのいくつかのフィールドを書き換えて、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:919 msgid "list all order–product relations (simple view)" @@ -808,8 +793,7 @@ msgstr "編集不可の既存ブランドをリライトする" #: engine/core/docs/drf/viewsets.py:1039 msgid "rewrite some fields of an existing brand saving non-editables" -msgstr "" -"編集不可能なフィールドを保存している既存ブランドのフィールドを書き換える。" +msgstr "編集不可能なフィールドを保存している既存ブランドのフィールドを書き換える。" #: engine/core/docs/drf/viewsets.py:1064 msgid "list all vendors (simple view)" @@ -833,9 +817,7 @@ msgstr "既存のベンダーを書き換え、編集不可能な部分を保存 #: engine/core/docs/drf/viewsets.py:1102 msgid "rewrite some fields of an existing vendor saving non-editables" -msgstr "" -"既存のベンダーのいくつかのフィールドを書き換えて、編集不可能なフィールドを保" -"存する。" +msgstr "既存のベンダーのいくつかのフィールドを書き換えて、編集不可能なフィールドを保存する。" #: engine/core/docs/drf/viewsets.py:1112 msgid "list all product images (simple view)" @@ -859,9 +841,7 @@ msgstr "既存の商品画像を書き換え、編集不可能な部分を保存 #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" -msgstr "" -"既存の商品画像のいくつかのフィールドを書き換えて、編集不可能な部分を保存す" -"る。" +msgstr "既存の商品画像のいくつかのフィールドを書き換えて、編集不可能な部分を保存する。" #: engine/core/docs/drf/viewsets.py:1165 msgid "list all promo codes (simple view)" @@ -885,9 +865,7 @@ msgstr "既存のプロモコードを書き換え、編集不可のプロモコ #: engine/core/docs/drf/viewsets.py:1203 msgid "rewrite some fields of an existing promo code saving non-editables" -msgstr "" -"既存のプロモコードの一部のフィールドを書き換えて、編集不可能な部分を保存す" -"る。" +msgstr "既存のプロモコードの一部のフィールドを書き換えて、編集不可能な部分を保存する。" #: engine/core/docs/drf/viewsets.py:1213 msgid "list all promotions (simple view)" @@ -911,9 +889,7 @@ msgstr "既存のプロモーションを書き換える。" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" -msgstr "" -"既存のプロモーションのいくつかのフィールドを書き換え、編集不可能な部分を保存" -"する。" +msgstr "既存のプロモーションのいくつかのフィールドを書き換え、編集不可能な部分を保存する。" #: engine/core/docs/drf/viewsets.py:1261 msgid "list all stocks (simple view)" @@ -937,9 +913,7 @@ msgstr "既存のストックレコードを書き換え、編集不可能なも #: engine/core/docs/drf/viewsets.py:1297 msgid "rewrite some fields of an existing stock record saving non-editables" -msgstr "" -"編集不可能なフィールドを保存している既存のストックレコードの一部のフィールド" -"を書き換える。" +msgstr "編集不可能なフィールドを保存している既存のストックレコードの一部のフィールドを書き換える。" #: engine/core/docs/drf/viewsets.py:1308 msgid "list all product tags (simple view)" @@ -963,8 +937,7 @@ msgstr "既存の商品タグを書き換え、編集不可能なものを保存 #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "" -"既存の商品タグの一部のフィールドを書き換えて、編集不可能な部分を保存する。" +msgstr "既存の商品タグの一部のフィールドを書き換えて、編集不可能な部分を保存する。" #: engine/core/elasticsearch/__init__.py:128 #: engine/core/elasticsearch/__init__.py:629 @@ -1046,8 +1019,7 @@ msgstr "SKU" #: engine/core/filters.py:212 msgid "there must be a category_uuid to use include_subcategories flag" -msgstr "" -"include_subcategoriesフラグを使うには、category_uuidがなければならない。" +msgstr "include_subcategoriesフラグを使うには、category_uuidがなければならない。" #: engine/core/filters.py:398 msgid "Search (ID, product name or part number)" @@ -1199,10 +1171,9 @@ msgstr "注文する" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" -msgstr "" -"属性は、attr1=value1,attr2=value2のような形式の文字列として送信してください。" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" +msgstr "属性は、attr1=value1,attr2=value2のような形式の文字列として送信してください。" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1221,9 +1192,9 @@ msgstr "Orderproduct {order_product_uuid} が見つかりません!" msgid "original address string provided by the user" msgstr "ユーザーが提供したオリジナルのアドレス文字列" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1239,8 +1210,8 @@ msgstr "ElasticSearch - 魅力のように動作" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "属性" @@ -1276,7 +1247,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "このカテゴリのフィルタリングに使用できる属性と値。" #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "このカテゴリーの商品の最低価格と最高価格がある場合。" #: engine/core/graphene/object_types.py:234 @@ -1313,7 +1285,7 @@ msgid "represents feedback from a user." msgstr "ユーザーからのフィードバックを表す。" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "お知らせ" @@ -1321,7 +1293,7 @@ msgstr "お知らせ" msgid "download url for this order product if applicable" msgstr "該当する場合は、この注文商品のダウンロードURLを入力してください。" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "フィードバック" @@ -1329,7 +1301,7 @@ msgstr "フィードバック" msgid "a list of order products in this order" msgstr "注文商品のリスト" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "請求先住所" @@ -1355,7 +1327,7 @@ msgstr "ご注文の商品はすべてデジタルですか?" msgid "transactions for this order" msgstr "この注文の取引" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "受注状況" @@ -1372,7 +1344,7 @@ msgstr "製品画像" msgid "category" msgstr "カテゴリー" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "フィードバック" @@ -1413,7 +1385,7 @@ msgstr "個人注文のみの商品" msgid "discount price" msgstr "割引価格" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "製品紹介" @@ -1425,7 +1397,7 @@ msgstr "プロモコード" msgid "products on sale" msgstr "販売商品" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "プロモーション" @@ -1433,7 +1405,7 @@ msgstr "プロモーション" msgid "vendor" msgstr "ベンダー" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1441,11 +1413,11 @@ msgstr "ベンダー" msgid "product" msgstr "製品" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "ウィッシュリスト掲載商品" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "ウィッシュリスト" @@ -1543,10 +1515,7 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"属性グループを表し、階層化することができます。このクラスは、属性グループの管" -"理と整理に使用します。属性グループは親グループを持つことができ、階層構造を形" -"成します。これは、複雑なシステムで属性をより効果的に分類・管理するのに便利で" -"す。" +"属性グループを表し、階層化することができます。このクラスは、属性グループの管理と整理に使用します。属性グループは親グループを持つことができ、階層構造を形成します。これは、複雑なシステムで属性をより効果的に分類・管理するのに便利です。" #: engine/core/models.py:88 msgid "parent of this group" @@ -1560,7 +1529,7 @@ msgstr "親属性グループ" msgid "attribute group's name" msgstr "属性グループ名" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "属性グループ" @@ -1574,12 +1543,8 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"外部ベンダーとその相互作用要件に関する情報を格納できるベンダー・エンティティ" -"を表します。Vendor クラスは、外部ベンダーに関連する情報を定義・管理するために" -"使用します。これは、ベンダーの名前、通信に必要な認証の詳細、ベンダーから取得" -"した商品に適用されるパーセンテージのマークアップを格納します。このモデルは、" -"追加のメタデータと制約も保持するため、サードパーティ・ベンダーとやり取りする" -"システムでの使用に適しています。" +"外部ベンダーとその相互作用要件に関する情報を格納できるベンダー・エンティティを表します。Vendor " +"クラスは、外部ベンダーに関連する情報を定義・管理するために使用します。これは、ベンダーの名前、通信に必要な認証の詳細、ベンダーから取得した商品に適用されるパーセンテージのマークアップを格納します。このモデルは、追加のメタデータと制約も保持するため、サードパーティ・ベンダーとやり取りするシステムでの使用に適しています。" #: engine/core/models.py:122 msgid "stores credentials and endpoints required for vendor communication" @@ -1629,11 +1594,8 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"製品を分類または識別するために使用される製品タグを表します。ProductTag クラス" -"は、内部タグ識別子とユーザーフレンドリーな表示名の組み合わせによって、製品を" -"一意に識別および分類するように設計されています。ミキシンを通じてエクスポート" -"される操作をサポートし、管理目的のためにメタデータのカスタマイズを提供しま" -"す。" +"製品を分類または識別するために使用される製品タグを表します。ProductTag " +"クラスは、内部タグ識別子とユーザーフレンドリーな表示名の組み合わせによって、製品を一意に識別および分類するように設計されています。ミキシンを通じてエクスポートされる操作をサポートし、管理目的のためにメタデータのカスタマイズを提供します。" #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1661,9 +1623,7 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"商品に使用されるカテゴリータグを表します。このクラスは、商品の関連付けと分類" -"に使用できるカテゴリタグをモデル化します。内部タグ識別子とユーザーフレンド" -"リーな表示名の属性が含まれます。" +"商品に使用されるカテゴリータグを表します。このクラスは、商品の関連付けと分類に使用できるカテゴリタグをモデル化します。内部タグ識別子とユーザーフレンドリーな表示名の属性が含まれます。" #: engine/core/models.py:249 msgid "category tag" @@ -1685,13 +1645,7 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"関連するアイテムを階層構造で整理し、グループ化するためのカテゴリ・エンティ" -"ティを表します。カテゴリは、親子関係をサポートする他のカテゴリとの階層関係を" -"持つことができます。このクラスには、カテゴリ関連機能の基盤となるメタデータお" -"よび視覚表現のためのフィールドが含まれます。このクラスは通常、アプリケーショ" -"ン内で商品カテゴリやその他の類似のグループ化を定義および管理するために使用さ" -"れ、ユーザや管理者がカテゴリの名前、説明、階層を指定したり、画像、タグ、優先" -"度などの属性を割り当てることができます。" +"関連するアイテムを階層構造で整理し、グループ化するためのカテゴリ・エンティティを表します。カテゴリは、親子関係をサポートする他のカテゴリとの階層関係を持つことができます。このクラスには、カテゴリ関連機能の基盤となるメタデータおよび視覚表現のためのフィールドが含まれます。このクラスは通常、アプリケーション内で商品カテゴリやその他の類似のグループ化を定義および管理するために使用され、ユーザや管理者がカテゴリの名前、説明、階層を指定したり、画像、タグ、優先度などの属性を割り当てることができます。" #: engine/core/models.py:269 msgid "upload an image representing this category" @@ -1742,12 +1696,10 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"システム内のブランド・オブジェクトを表します。このクラスは、名前、ロゴ、説" -"明、関連カテゴリ、一意のスラッグ、および優先順位など、ブランドに関連する情報" -"と属性を処理します。このクラスによって、アプリケーション内でブランド関連デー" -"タを整理し、表現することができます。" +"システム内のブランド・オブジェクトを表します。このクラスは、名前、ロゴ、説明、関連カテゴリ、一意のスラッグ、および優先順位など、ブランドに関連する情報と属性を処理します。このクラスによって、アプリケーション内でブランド関連データを整理し、表現することができます。" #: engine/core/models.py:456 msgid "name of this brand" @@ -1791,17 +1743,14 @@ msgstr "カテゴリー" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"システムで管理されている商品の在庫を表します。このクラスは、ベンダー、商品、" -"およびそれらの在庫情報間の関係の詳細や、価格、購入価格、数量、SKU、デジタル資" -"産などの在庫関連プロパティを提供します。これは在庫管理システムの一部で、さま" -"ざまなベンダーから入手可能な製品の追跡と評価を可能にします。" +"システムで管理されている商品の在庫を表します。このクラスは、ベンダー、商品、およびそれらの在庫情報間の関係の詳細や、価格、購入価格、数量、SKU、デジタル資産などの在庫関連プロパティを提供します。これは在庫管理システムの一部で、さまざまなベンダーから入手可能な製品の追跡と評価を可能にします。" #: engine/core/models.py:528 msgid "the vendor supplying this product stock" @@ -1823,8 +1772,8 @@ msgstr "販売価格" msgid "the product associated with this stock entry" msgstr "このストックエントリーに関連する製品" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "関連製品" @@ -1879,13 +1828,9 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"カテゴリ、ブランド、タグ、デジタルステータス、名前、説明、品番、スラッグなど" -"の属性を持つ製品を表します。評価、フィードバック数、価格、数量、注文総数を取" -"得するための関連ユーティリティ・プロパティを提供します。電子商取引や在庫管理" -"を扱うシステムで使用するように設計されています。このクラスは、関連するモデル " -"(Category、Brand、ProductTag など) と相互作用し、パフォーマンスを向上させるた" -"めに、頻繁にアクセスされるプロパティのキャッシュを管理します。アプリケーショ" -"ン内で商品データとその関連情報を定義し、操作するために使用されます。" +"カテゴリ、ブランド、タグ、デジタルステータス、名前、説明、品番、スラッグなどの属性を持つ製品を表します。評価、フィードバック数、価格、数量、注文総数を取得するための関連ユーティリティ・プロパティを提供します。電子商取引や在庫管理を扱うシステムで使用するように設計されています。このクラスは、関連するモデル" +" (Category、Brand、ProductTag など) " +"と相互作用し、パフォーマンスを向上させるために、頻繁にアクセスされるプロパティのキャッシュを管理します。アプリケーション内で商品データとその関連情報を定義し、操作するために使用されます。" #: engine/core/models.py:595 msgid "category this product belongs to" @@ -1923,7 +1868,7 @@ msgstr "製品の明確な識別名を提供する" msgid "product name" msgstr "商品名" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "商品の詳細説明を追加する" @@ -1943,320 +1888,306 @@ msgstr "品番" msgid "stock keeping unit for this product" msgstr "この製品の在庫管理単位" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "この製品をマーケットプレイスに輸出するか否か" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "マーケットプレイスへのエクスポート" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"システム内の属性を表します。このクラスは、属性を定義および管理するために使用" -"されます。属性は、他のエンティティに関連付けることができる、カスタマイズ可能" -"なデータの部分です。属性には、関連するカテゴリ、グループ、値型、および名前が" -"あります。このモデルは、string、integer、float、boolean、array、object などの" -"複数の型の値をサポートしています。これにより、動的で柔軟なデータ構造化が可能" -"になります。" +"システム内の属性を表します。このクラスは、属性を定義および管理するために使用されます。属性は、他のエンティティに関連付けることができる、カスタマイズ可能なデータの部分です。属性には、関連するカテゴリ、グループ、値型、および名前があります。このモデルは、string、integer、float、boolean、array、object" +" などの複数の型の値をサポートしています。これにより、動的で柔軟なデータ構造化が可能になります。" -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "この属性のグループ" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "ストリング" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "整数" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "フロート" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "ブーリアン" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "配列" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "対象" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "属性値のタイプ" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "値の種類" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "この属性の名前" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "属性名" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "フィルタリング可能" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "この属性がフィルタリングに使用できるかどうかを指定する。" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "属性" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"製品にリンクされている属性の特定の値を表します。これは、「属性」を一意の" -"「値」にリンクし、製品特性のより良い編成と動的な表現を可能にします。" +"製品にリンクされている属性の特定の値を表します。これは、「属性」を一意の「値」にリンクし、製品特性のより良い編成と動的な表現を可能にします。" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "この値の属性" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "この属性の値に関連する特定の製品" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "この属性の具体的な値" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"システム内の商品に関連付けられた商品画像を表します。このクラスは商品の画像を" -"管理するために設計されており、画像ファイルのアップロード、特定の商品との関連" -"付け、表示順の決定などの機能を提供します。また、画像の代替テキストによるアク" -"セシビリティ機能も備えています。" +"システム内の商品に関連付けられた商品画像を表します。このクラスは商品の画像を管理するために設計されており、画像ファイルのアップロード、特定の商品との関連付け、表示順の決定などの機能を提供します。また、画像の代替テキストによるアクセシビリティ機能も備えています。" -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "アクセシビリティのために、画像に代替テキストを提供する。" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "画像のaltテキスト" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "この商品の画像ファイルをアップロードする" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "商品画像" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "画像の表示順を決める" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "表示優先度" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "この画像が表す製品" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "商品画像" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"割引を伴う商品の販促キャンペーンを表します。このクラスは、商品に対してパーセ" -"ンテージベースの割引を提供する販促キャンペーンを定義および管理するために使用" -"します。このクラスには、割引率を設定し、プロモーションの詳細を提供し、該当す" -"る商品にリンクするための属性が含まれます。商品カタログと統合して、キャンペー" -"ンの対象商品を決定します。" +"割引を伴う商品の販促キャンペーンを表します。このクラスは、商品に対してパーセンテージベースの割引を提供する販促キャンペーンを定義および管理するために使用します。このクラスには、割引率を設定し、プロモーションの詳細を提供し、該当する商品にリンクするための属性が含まれます。商品カタログと統合して、キャンペーンの対象商品を決定します。" -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "選択した商品の割引率" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "割引率" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "このプロモーションのユニークな名前を入力してください。" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "プロモーション名" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "プロモーション内容" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "キャンペーン対象商品をお選びください。" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "含まれる製品" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "プロモーション" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"希望する商品を保存・管理するためのユーザーのウィッシュリストを表します。この" -"クラスは、商品のコレクションを管理する機能を提供し、商品の追加や削除などの操" -"作をサポートし、複数の商品を一度に追加したり削除したりする操作をサポートしま" -"す。" +"希望する商品を保存・管理するためのユーザーのウィッシュリストを表します。このクラスは、商品のコレクションを管理する機能を提供し、商品の追加や削除などの操作をサポートし、複数の商品を一度に追加したり削除したりする操作をサポートします。" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "ユーザーが欲しいとマークした商品" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "このウィッシュリストを所有しているユーザー" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "ウィッシュリストのオーナー" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "ウィッシュリスト" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"商品に関連付けられたドキュメンタリーのレコードを表します。このクラスは、ファ" -"イルのアップロードとそのメタデータを含む、特定の商品に関連するドキュメンタ" -"リーに関する情報を格納するために使用されます。ドキュメントファイルのファイル" -"タイプと保存パスを処理するメソッドとプロパティが含まれています。特定のミック" -"スインから機能を拡張し、追加のカスタム機能を提供します。" +"商品に関連付けられたドキュメンタリーのレコードを表します。このクラスは、ファイルのアップロードとそのメタデータを含む、特定の商品に関連するドキュメンタリーに関する情報を格納するために使用されます。ドキュメントファイルのファイルタイプと保存パスを処理するメソッドとプロパティが含まれています。特定のミックスインから機能を拡張し、追加のカスタム機能を提供します。" -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "ドキュメンタリー" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "ドキュメンタリー" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "未解決" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"場所の詳細とユーザーとの関連付けを含む住所エンティティを表します。地理データ" -"および住所データを保存する機能と、ジオコーディングサービスとの統合機能を提供" -"します。このクラスは、street、city、region、country、geolocation (longitude " -"and latitude) のようなコンポーネントを含む詳細な住所情報を格納するように設計" -"されています。ジオコーディング API との統合をサポートしており、 生の API レス" -"ポンスを保存してさらなる処理や検査を行うことができます。また、このクラスは住" -"所とユーザを関連付けることができ、 パーソナライズされたデータの取り扱いを容易" -"にします。" +"場所の詳細とユーザーとの関連付けを含む住所エンティティを表します。地理データおよび住所データを保存する機能と、ジオコーディングサービスとの統合機能を提供します。このクラスは、street、city、region、country、geolocation" +" (longitude and latitude) のようなコンポーネントを含む詳細な住所情報を格納するように設計されています。ジオコーディング API" +" との統合をサポートしており、 生の API " +"レスポンスを保存してさらなる処理や検査を行うことができます。また、このクラスは住所とユーザを関連付けることができ、 " +"パーソナライズされたデータの取り扱いを容易にします。" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "お客様の住所" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "住所" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "ストリート" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "地区" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "都市" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "地域" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "郵便番号" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "国名" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "ジオロケーションポイント(経度、緯度)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "この住所に対するジオコーダーからの完全なJSON応答" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "ジオコーディング・サービスからの保存されたJSONレスポンス" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "住所" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "住所" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2265,252 +2196,239 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"割引に使用できるプロモーションコードを表し、その有効期間、割引の種類、適用を" -"管理します。PromoCode クラスは、一意の識別子、割引のプロパティ (金額または" -"パーセンテージ)、有効期間、関連するユーザ (もしあれば)、および使用状況など、" -"プロモーションコードに関する詳細を格納します。これは、制約が満たされているこ" -"とを保証しながら、プロモコードを検証し、注文に適用する機能を含んでいます。" +"割引に使用できるプロモーションコードを表し、その有効期間、割引の種類、適用を管理します。PromoCode クラスは、一意の識別子、割引のプロパティ " +"(金額またはパーセンテージ)、有効期間、関連するユーザ " +"(もしあれば)、および使用状況など、プロモーションコードに関する詳細を格納します。これは、制約が満たされていることを保証しながら、プロモコードを検証し、注文に適用する機能を含んでいます。" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "ユーザーが割引を利用する際に使用する固有のコード" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "プロモコード識別子" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "パーセントを使用しない場合に適用される固定割引額" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "固定割引額" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "定額を使用しない場合に適用される割引率" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "割引率" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "プロモコードの有効期限が切れるタイムスタンプ" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "終了有効時間" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "このプロモコードが有効なタイムスタンプ" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "開始有効時間" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "プロモコードが使用されたタイムスタンプ、未使用の場合は空白" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "使用タイムスタンプ" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "該当する場合、このプロモコードに割り当てられたユーザー" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "担当ユーザー" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "プロモコード" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "プロモコード" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "" -"割引の種類は1つだけ(金額またはパーセント)定義されるべきで、両方またはどちら" -"も定義してはならない。" +msgstr "割引の種類は1つだけ(金額またはパーセント)定義されるべきで、両方またはどちらも定義してはならない。" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "プロモコードはすでに使用されています" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "プロモコード {self.uuid} の割引タイプが無効です!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"ユーザーによる注文を表します。このクラスは、請求や配送情報、ステータス、関連" -"するユーザ、通知、関連する操作などのさまざまな属性を含む、アプリケーション内" -"の注文をモデル化します。注文は関連する商品を持つことができ、プロモーションを" -"適用し、住所を設定し、配送または請求の詳細を更新することができます。同様に、" -"注文のライフサイクルにおける商品の管理もサポートします。" +"ユーザーによる注文を表します。このクラスは、請求や配送情報、ステータス、関連するユーザ、通知、関連する操作などのさまざまな属性を含む、アプリケーション内の注文をモデル化します。注文は関連する商品を持つことができ、プロモーションを適用し、住所を設定し、配送または請求の詳細を更新することができます。同様に、注文のライフサイクルにおける商品の管理もサポートします。" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "この注文に使用される請求先住所" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "この注文に適用されるプロモコード" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "プロモーションコード適用" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "この注文に使用された配送先住所" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "配送先住所" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "ライフサイクルにおける現在の注文状況" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "注文状況" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" -msgstr "" -"ユーザーに表示する通知のJSON構造、管理UIではテーブルビューが使用されます。" +msgstr "ユーザーに表示する通知のJSON構造、管理UIではテーブルビューが使用されます。" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "この注文の注文属性のJSON表現" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "注文を行ったユーザー" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "ユーザー" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "注文が確定したタイムスタンプ" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "時間を買う" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "オーダーの人間が読み取り可能な識別子。" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "人間が読めるID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "オーダー" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "ユーザーは一度に1つの未決注文しか持つことができません!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "保留中の注文以外の注文に商品を追加することはできません。" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "アクティブでない商品を注文に追加することはできません。" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "在庫以上の商品を追加することはできません。" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "保留中の注文以外の注文から商品を削除することはできません。" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name}はクエリ<{query}と一緒に存在しません!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "プロモコードが存在しない" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "配送先住所が指定された現物商品のみ購入可能!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "アドレスが存在しない" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "現在ご購入いただけません。数分後にもう一度お試しください。" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "無効なフォース値" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "空注文はできません!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "ユーザーがいない注文は購入できない!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "残高のないユーザーは、残高で購入することはできない!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "注文を完了するための資金不足" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -msgstr "" -"ご登録がない場合はご購入いただけませんので、以下の情報をお知らせください:お" -"客様のお名前、お客様のEメール、お客様の電話番号" +msgstr "ご登録がない場合はご購入いただけませんので、以下の情報をお知らせください:お客様のお名前、お客様のEメール、お客様の電話番号" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" -msgstr "" -"支払方法が無効です:{available_payment_methods}からの{payment_method}が無効で" -"す!" +msgstr "支払方法が無効です:{available_payment_methods}からの{payment_method}が無効です!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2518,37 +2436,34 @@ msgid "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." msgstr "" -"製品に対するユーザのフィードバックを管理します。このクラスは、購入した特定の" -"商品に対するユーザのフィードバックを取得し、保存するために設計されています。" -"ユーザのコメント、注文の関連商品への参照、そしてユーザが割り当てた評価を保存" -"する属性を含みます。このクラスは、フィードバックデータを効果的にモデル化し、" -"管理するためにデータベースフィールドを使用します。" +"製品に対するユーザのフィードバックを管理します。このクラスは、購入した特定の商品に対するユーザのフィードバックを取得し、保存するために設計されています。ユーザのコメント、注文の関連商品への参照、そしてユーザが割り当てた評価を保存する属性を含みます。このクラスは、フィードバックデータを効果的にモデル化し、管理するためにデータベースフィールドを使用します。" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "ユーザーから寄せられた製品使用体験に関するコメント" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "フィードバック・コメント" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "このフィードバックが対象としている注文の特定の製品を参照する。" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "関連注文商品" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "ユーザーによる製品の評価" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "製品評価" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2560,144 +2475,133 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"注文に関連する商品とその属性を表す。OrderProductモデルは、購入価格、数量、商" -"品属性、ステータスなどの詳細を含む、注文の一部である商品に関する情報を保持し" -"ます。ユーザーや管理者への通知を管理し、商品残高の返却やフィードバックの追加" -"などの操作を処理します。このモデルはまた、合計価格の計算やデジタル商品のダウ" -"ンロードURLの生成など、ビジネスロジックをサポートするメソッドやプロパティも提" -"供します。このモデルはOrderモデルとProductモデルと統合され、それらへの参照を" -"保存します。" +"注文に関連する商品とその属性を表す。OrderProductモデルは、購入価格、数量、商品属性、ステータスなどの詳細を含む、注文の一部である商品に関する情報を保持します。ユーザーや管理者への通知を管理し、商品残高の返却やフィードバックの追加などの操作を処理します。このモデルはまた、合計価格の計算やデジタル商品のダウンロードURLの生成など、ビジネスロジックをサポートするメソッドやプロパティも提供します。このモデルはOrderモデルとProductモデルと統合され、それらへの参照を保存します。" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "この商品の購入時に顧客が支払った価格" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "注文時の購入価格" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "この注文商品に関する管理者への内部コメント" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "社内コメント" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "ユーザー通知" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "このアイテムの属性のJSON表現" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "製品属性の順序" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "この商品を含む親注文への参照" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "親注文" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "この注文ラインに関連する特定の製品" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "注文に含まれる特定の商品の数量" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "製品数量" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "この商品の現在のご注文状況" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "製品ラインの状況" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproductには関連する注文がなければならない!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "フィードバックに指定されたアクションが間違っています:{action}です!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "受信していない注文をフィードバックすることはできません。" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "名称" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "統合のURL" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "認証情報" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "デフォルトのCRMプロバイダーは1つだけです。" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "注文のCRMリンク" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "オーダーのCRMリンク" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"注文に関連するデジタル資産のダウンロード機能を表します。DigitalAssetDownload" -"クラスは、注文商品に関連するダウンロードを管理し、アクセスする機能を提供しま" -"す。このクラスは、関連する注文商品、ダウンロード数、およびアセットが公開され" -"ているかどうかの情報を保持します。関連する注文が完了したステータスのときに、" -"アセットをダウンロードするための URL を生成するメソッドも含まれています。" +"注文に関連するデジタル資産のダウンロード機能を表します。DigitalAssetDownloadクラスは、注文商品に関連するダウンロードを管理し、アクセスする機能を提供します。このクラスは、関連する注文商品、ダウンロード数、およびアセットが公開されているかどうかの情報を保持します。関連する注文が完了したステータスのときに、アセットをダウンロードするための" +" URL を生成するメソッドも含まれています。" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "ダウンロード" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "ダウンロード" #: engine/core/serializers/utility.py:91 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." -msgstr "" -"フィードバックを追加するには、コメント、評価、および注文商品の uuid を入力す" -"る必要があります。" +msgstr "フィードバックを追加するには、コメント、評価、および注文商品の uuid を入力する必要があります。" #: engine/core/sitemaps.py:25 msgid "Home" @@ -2889,12 +2793,9 @@ msgstr "こんにちは%(order.user.first_name)s、" #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" -msgstr "" -"ご注文ありがとうございます#%(order.pk)s!ご注文を承りましたことをお知らせいた" -"します。以下、ご注文の詳細です:" +msgstr "ご注文ありがとうございます#%(order.pk)s!ご注文を承りましたことをお知らせいたします。以下、ご注文の詳細です:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2917,9 +2818,7 @@ msgstr "合計価格" msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." -msgstr "" -"ご不明な点がございましたら、%(config.EMAIL_HOST_USER)sまでお気軽にお問い合わ" -"せください。" +msgstr "ご不明な点がございましたら、%(config.EMAIL_HOST_USER)sまでお気軽にお問い合わせください。" #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -2947,8 +2846,7 @@ msgstr "こんにちは%(user_first_name)s、" msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" -msgstr "" -"ご注文の№%(order_uuid)sが正常に処理されました!以下はご注文の詳細です:" +msgstr "ご注文の№%(order_uuid)sが正常に処理されました!以下はご注文の詳細です:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -2969,9 +2867,7 @@ msgstr "価値" msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." -msgstr "" -"ご不明な点がございましたら、%(contact_email)sまでお気軽にお問い合わせくださ" -"い。" +msgstr "ご不明な点がございましたら、%(contact_email)sまでお気軽にお問い合わせください。" #: engine/core/templates/digital_order_delivered_email.html:165 #: engine/core/templates/promocode_granted_email.html:108 @@ -3003,12 +2899,9 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" -msgstr "" -"ご注文ありがとうございます!ご購入を確認させていただきました。以下、ご注文の" -"詳細です:" +msgstr "ご注文ありがとうございます!ご購入を確認させていただきました。以下、ご注文の詳細です:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3074,17 +2967,14 @@ msgstr "NOMINATIM_URLパラメータを設定する必要があります!" #: engine/core/validators.py:23 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" -msgstr "" -"画像のサイズは w{max_width} x h{max_height} ピクセルを超えないようにしてくだ" -"さい!" +msgstr "画像のサイズは w{max_width} x h{max_height} ピクセルを超えないようにしてください!" #: engine/core/views.py:104 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"サイトマップインデックスのリクエストを処理し、XMLレスポンスを返します。レスポ" -"ンスにXML用の適切なコンテントタイプヘッダーが含まれるようにします。" +"サイトマップインデックスのリクエストを処理し、XMLレスポンスを返します。レスポンスにXML用の適切なコンテントタイプヘッダーが含まれるようにします。" #: engine/core/views.py:119 msgid "" @@ -3092,9 +2982,8 @@ msgid "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"サイトマップの詳細表示レスポンスを処理します。この関数はリクエストを処理し、" -"適切なサイトマップ詳細レスポンスを取得し、XML の Content-Type ヘッダを設定し" -"ます。" +"サイトマップの詳細表示レスポンスを処理します。この関数はリクエストを処理し、適切なサイトマップ詳細レスポンスを取得し、XML の Content-" +"Type ヘッダを設定します。" #: engine/core/views.py:155 msgid "" @@ -3109,9 +2998,7 @@ msgstr "ウェブサイトのパラメータをJSONオブジェクトとして msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -msgstr "" -"指定されたキーとタイムアウトで、キャッシュ・データの読み取りや設定などの" -"キャッシュ操作を行う。" +msgstr "指定されたキーとタイムアウトで、キャッシュ・データの読み取りや設定などのキャッシュ操作を行う。" #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3121,8 +3008,7 @@ msgstr "お問い合わせフォームの送信を処理する。" msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." -msgstr "" -"入ってくる POST リクエストからの URL の処理と検証のリクエストを処理します。" +msgstr "入ってくる POST リクエストからの URL の処理と検証のリクエストを処理します。" #: engine/core/views.py:273 msgid "Handles global search queries." @@ -3135,14 +3021,10 @@ msgstr "登録なしでビジネスとして購入するロジックを扱う。 #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "注文に関連付けられたデジタルアセットのダウンロードを処理します。\n" -"この関数は、プロジェクトのストレージディレクトリにあるデジタルアセットファイ" -"ルの提供を試みます。ファイルが見つからない場合、リソースが利用できないことを" -"示すHTTP 404エラーが発生します。" +"この関数は、プロジェクトのストレージディレクトリにあるデジタルアセットファイルの提供を試みます。ファイルが見つからない場合、リソースが利用できないことを示すHTTP 404エラーが発生します。" #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3171,29 +3053,23 @@ msgstr "ファビコンが見つかりません" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "ウェブサイトのファビコンへのリクエストを処理します。\n" -"この関数は、プロジェクトの静的ディレクトリにあるファビコンファイルの提供を試" -"みます。ファビコンファイルが見つからない場合、リソースが利用できないことを示" -"す HTTP 404 エラーが発生します。" +"この関数は、プロジェクトの静的ディレクトリにあるファビコンファイルの提供を試みます。ファビコンファイルが見つからない場合、リソースが利用できないことを示す HTTP 404 エラーが発生します。" #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"リクエストを admin インデックスページにリダイレクトします。この関数は、HTTP " -"リクエストを処理し、 Django の admin インタフェースインデッ クスページにリダ" -"イレクトします。HTTP リダイレクトの処理には Django の `redirect` 関数を使いま" -"す。" +"リクエストを admin インデックスページにリダイレクトします。この関数は、HTTP リクエストを処理し、 Django の admin " +"インタフェースインデッ クスページにリダイレクトします。HTTP リダイレクトの処理には Django の `redirect` 関数を使います。" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "eVibes の現在のバージョンを返します。" +msgid "Returns current version of the Schon. " +msgstr "Schon の現在のバージョンを返します。" #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3206,29 +3082,27 @@ msgstr "ダッシュボードのカスタム変数を返します。" #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes 関連の操作を管理するためのビューセットを定義します。EvibesViewSet クラ" -"スは ModelViewSet を継承し、Evibes エンティティに対する アクションや操作を扱" -"うための機能を提供します。現在のアクションに基づいた動的なシリアライザークラ" -"スのサポート、 カスタマイズ可能なパーミッション、レンダリングフォーマットが含" -"まれます。" +"schon 関連の操作を管理するためのビューセットを定義します。SchonViewSet クラスは ModelViewSet を継承し、schon " +"エンティティに対する アクションや操作を扱うための機能を提供します。現在のアクションに基づいた動的なシリアライザークラスのサポート、 " +"カスタマイズ可能なパーミッション、レンダリングフォーマットが含まれます。" #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"AttributeGroup オブジェクトを管理するためのビューセットを表します。データの" -"フィルタリング、シリアライズ、取得など、AttributeGroup に関連する操作を処理し" -"ます。このクラスは、アプリケーションのAPIレイヤの一部であり、AttributeGroup" -"データの要求と応答を処理する標準化された方法を提供します。" +"AttributeGroup " +"オブジェクトを管理するためのビューセットを表します。データのフィルタリング、シリアライズ、取得など、AttributeGroup " +"に関連する操作を処理します。このクラスは、アプリケーションのAPIレイヤの一部であり、AttributeGroupデータの要求と応答を処理する標準化された方法を提供します。" #: engine/core/viewsets.py:179 msgid "" @@ -3239,25 +3113,22 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"アプリケーション内でAttributeオブジェクトに関連する操作を処理する。Attribute " -"データと対話するための API エンドポイントのセットを提供します。このクラスは、" -"Attribute オブジェクトのクエリ、フィルタリング、およびシリアライズを管理し、" -"特定のフィールドによるフィルタリングや、リクエストに応じた詳細情報と簡略化さ" -"れた情報の取得など、返されるデータの動的な制御を可能にします。" +"アプリケーション内でAttributeオブジェクトに関連する操作を処理する。Attribute データと対話するための API " +"エンドポイントのセットを提供します。このクラスは、Attribute " +"オブジェクトのクエリ、フィルタリング、およびシリアライズを管理し、特定のフィールドによるフィルタリングや、リクエストに応じた詳細情報と簡略化された情報の取得など、返されるデータの動的な制御を可能にします。" #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"AttributeValue オブジェクトを管理するためのビューセットです。このビューセット" -"は、 AttributeValue オブジェクトの一覧表示、取得、作成、更新、削除の機能を提" -"供し ます。Django REST Framework のビューセット機構と統合され、異なるアクショ" -"ンに適切なシリアライザを使います。フィルタリング機能は DjangoFilterBackend を" -"通して提供されます。" +"AttributeValue オブジェクトを管理するためのビューセットです。このビューセットは、 AttributeValue " +"オブジェクトの一覧表示、取得、作成、更新、削除の機能を提供し ます。Django REST Framework " +"のビューセット機構と統合され、異なるアクションに適切なシリアライザを使います。フィルタリング機能は DjangoFilterBackend " +"を通して提供されます。" #: engine/core/viewsets.py:217 msgid "" @@ -3267,11 +3138,7 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"Category関連の操作のためのビューを管理します。CategoryViewSetクラスは、システ" -"ム内のCategoryモデルに関連する操作を処理する責任があります。カテゴリデータの" -"取得、フィルタリング、シリアライズをサポートします。ビューセットはまた、許可" -"されたユーザーだけが特定のデータにアクセスできるようにパーミッションを強制し" -"ます。" +"Category関連の操作のためのビューを管理します。CategoryViewSetクラスは、システム内のCategoryモデルに関連する操作を処理する責任があります。カテゴリデータの取得、フィルタリング、シリアライズをサポートします。ビューセットはまた、許可されたユーザーだけが特定のデータにアクセスできるようにパーミッションを強制します。" #: engine/core/viewsets.py:346 msgid "" @@ -3281,26 +3148,23 @@ msgid "" "endpoints for Brand objects." msgstr "" "Brandインスタンスを管理するためのビューセットを表します。このクラスは Brand " -"オブジェクトのクエリ、フィルタリング、シリアライズの機能を提供します。Django " -"の ViewSet フレームワークを使い、 Brand オブジェクトの API エンドポイントの実" -"装を簡素化します。" +"オブジェクトのクエリ、フィルタリング、シリアライズの機能を提供します。Django の ViewSet フレームワークを使い、 Brand " +"オブジェクトの API エンドポイントの実装を簡素化します。" #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"システム内の `Product` モデルに関連する操作を管理する。このクラスは、商品の" -"フィルタリング、シリアライズ、特定のインスタンスに対する操作など、商品を管理" -"するためのビューセットを提供します。共通の機能を使うために `EvibesViewSet` を" -"継承し、 RESTful API 操作のために Django REST フレームワークと統合していま" -"す。商品の詳細を取得したり、パーミッションを適用したり、商品の関連するフィー" -"ドバックにアクセスするためのメソッドを含みます。" +"システム内の `Product` " +"モデルに関連する操作を管理する。このクラスは、商品のフィルタリング、シリアライズ、特定のインスタンスに対する操作など、商品を管理するためのビューセットを提供します。共通の機能を使うために" +" `SchonViewSet` を継承し、 RESTful API 操作のために Django REST " +"フレームワークと統合しています。商品の詳細を取得したり、パーミッションを適用したり、商品の関連するフィードバックにアクセスするためのメソッドを含みます。" #: engine/core/viewsets.py:605 msgid "" @@ -3310,59 +3174,49 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Vendor オブジェクトを管理するためのビューセットを表します。このビューセットを" -"使用すると、 Vendor のデータを取得したりフィルタリングしたりシリアライズした" -"りすることができます。さまざまなアクションを処理するためのクエリセット、 フィ" -"ルタ設定、シリアライザクラスを定義します。このクラスの目的は、 Django REST フ" -"レームワークを通して Vendor 関連リソースへの合理的なアクセスを提供することで" -"す。" +"Vendor オブジェクトを管理するためのビューセットを表します。このビューセットを使用すると、 Vendor " +"のデータを取得したりフィルタリングしたりシリアライズしたりすることができます。さまざまなアクションを処理するためのクエリセット、 " +"フィルタ設定、シリアライザクラスを定義します。このクラスの目的は、 Django REST フレームワークを通して Vendor " +"関連リソースへの合理的なアクセスを提供することです。" #: engine/core/viewsets.py:625 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"Feedback オブジェクトを扱うビューセットの表現。このクラスは、一覧表示、フィル" -"タリング、詳細の取得など、Feedback オブジェクトに関する操作を管理します。この" -"ビューセットの目的は、アクションごとに異なるシリアライザを提供し、アクセス可" -"能な Feedback オブジェクトのパーミッションベースの処理を実装することです。" -"ベースとなる `EvibesViewSet` を拡張し、Django のフィルタリングシステムを利用" -"してデータを取得します。" +"Feedback オブジェクトを扱うビューセットの表現。このクラスは、一覧表示、フィルタリング、詳細の取得など、Feedback " +"オブジェクトに関する操作を管理します。このビューセットの目的は、アクションごとに異なるシリアライザを提供し、アクセス可能な Feedback " +"オブジェクトのパーミッションベースの処理を実装することです。ベースとなる `SchonViewSet` を拡張し、Django " +"のフィルタリングシステムを利用してデータを取得します。" #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"注文と関連する操作を管理するための ViewSet。このクラスは、注文オブジェクトを" -"取得、変更、管理する機能を提供します。商品の追加や削除、登録ユーザや未登録" -"ユーザの購入の実行、現在の認証ユーザの保留中の注文の取得など、注文操作を処理" -"するためのさまざまなエンドポイントを含みます。ViewSetは、実行される特定のアク" -"ションに基づいて複数のシリアライザを使用し、注文データを操作している間、それ" -"に応じてパーミッションを強制します。" +"注文と関連する操作を管理するための " +"ViewSet。このクラスは、注文オブジェクトを取得、変更、管理する機能を提供します。商品の追加や削除、登録ユーザや未登録ユーザの購入の実行、現在の認証ユーザの保留中の注文の取得など、注文操作を処理するためのさまざまなエンドポイントを含みます。ViewSetは、実行される特定のアクションに基づいて複数のシリアライザを使用し、注文データを操作している間、それに応じてパーミッションを強制します。" #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"OrderProduct エンティティを管理するためのビューセットを提供します。このビュー" -"セットは、OrderProduct モデルに固有の CRUD 操作とカスタムアクションを可能にし" -"ます。これは、要求されたアクションに基づくフィルタリング、パーミッション" -"チェック、シリアライザーの切り替えを含みます。さらに、OrderProduct インスタン" -"スに関するフィードバックを処理するための詳細なアクションを提供します。" +"OrderProduct エンティティを管理するためのビューセットを提供します。このビューセットは、OrderProduct モデルに固有の CRUD " +"操作とカスタムアクションを可能にします。これは、要求されたアクションに基づくフィルタリング、パーミッションチェック、シリアライザーの切り替えを含みます。さらに、OrderProduct" +" インスタンスに関するフィードバックを処理するための詳細なアクションを提供します。" #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " @@ -3372,8 +3226,7 @@ msgstr "アプリケーション内の商品画像に関する操作を管理し msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "" -"様々なAPIアクションによるプロモコードインスタンスの取得と処理を管理します。" +msgstr "様々なAPIアクションによるプロモコードインスタンスの取得と処理を管理します。" #: engine/core/viewsets.py:1019 msgid "Represents a view set for managing promotions. " @@ -3387,18 +3240,13 @@ msgstr "システム内のストックデータに関する操作を行う。" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"ウィッシュリスト操作を管理するためのViewSet。WishlistViewSetは、ユーザーの" -"ウィッシュリストと対話するためのエンドポイントを提供し、ウィッシュリスト内の" -"商品の検索、変更、カスタマイズを可能にします。このViewSetは、ウィッシュリスト" -"商品の追加、削除、一括アクションなどの機能を容易にします。明示的なパーミッ" -"ションが付与されていない限り、ユーザーが自分のウィッシュリストのみを管理でき" -"るよう、パーミッションチェックが統合されています。" +"ウィッシュリスト操作を管理するためのViewSet。WishlistViewSetは、ユーザーのウィッシュリストと対話するためのエンドポイントを提供し、ウィッシュリスト内の商品の検索、変更、カスタマイズを可能にします。このViewSetは、ウィッシュリスト商品の追加、削除、一括アクションなどの機能を容易にします。明示的なパーミッションが付与されていない限り、ユーザーが自分のウィッシュリストのみを管理できるよう、パーミッションチェックが統合されています。" #: engine/core/viewsets.py:1183 msgid "" @@ -3408,11 +3256,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"このクラスは `Address` オブジェクトを管理するためのビューセット機能を提供す" -"る。AddressViewSet クラスは、住所エンティティに関連する CRUD 操作、フィルタリ" -"ング、カスタムアクションを可能にします。異なる HTTP メソッドに特化した振る舞" -"いや、シリアライザのオーバーライド、 リクエストコンテキストに基づいたパーミッ" -"ション処理などを含みます。" +"このクラスは `Address` オブジェクトを管理するためのビューセット機能を提供する。AddressViewSet " +"クラスは、住所エンティティに関連する CRUD 操作、フィルタリング、カスタムアクションを可能にします。異なる HTTP " +"メソッドに特化した振る舞いや、シリアライザのオーバーライド、 リクエストコンテキストに基づいたパーミッション処理などを含みます。" #: engine/core/viewsets.py:1254 #, python-brace-format @@ -3427,8 +3273,4 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"アプリケーション内で商品タグに関連する操作を処理します。このクラスは、商品タ" -"グオブジェクトの取得、フィルタリング、シリアライズの機能を提供します。指定さ" -"れたフィルタバックエンドを使用して特定の属性に対する柔軟なフィルタリングをサ" -"ポートし、実行されるアクションに基づいて動的に異なるシリアライザを使用しま" -"す。" +"アプリケーション内で商品タグに関連する操作を処理します。このクラスは、商品タグオブジェクトの取得、フィルタリング、シリアライズの機能を提供します。指定されたフィルタバックエンドを使用して特定の属性に対する柔軟なフィルタリングをサポートし、実行されるアクションに基づいて動的に異なるシリアライザを使用します。" diff --git a/engine/core/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/core/locale/kk_KZ/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/core/locale/kk_KZ/LC_MESSAGES/django.mo and b/engine/core/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/kk_KZ/LC_MESSAGES/django.po b/engine/core/locale/kk_KZ/LC_MESSAGES/django.po index 062aad45..3fb1df4a 100644 --- a/engine/core/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/core/locale/kk_KZ/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:13+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -75,7 +71,7 @@ msgstr "" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:166 @@ -84,7 +80,7 @@ msgstr "" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "" #: engine/core/admin.py:184 @@ -92,13 +88,13 @@ msgid "selected items have been deactivated." msgstr "" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "" @@ -118,12 +114,12 @@ msgstr "" msgid "stocks" msgstr "" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "" @@ -131,7 +127,31 @@ msgstr "" msgid "children" msgstr "" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "" @@ -1151,9 +1171,9 @@ msgstr "" msgid "original address string provided by the user" msgstr "" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1169,8 +1189,8 @@ msgstr "" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "" @@ -1243,7 +1263,7 @@ msgid "represents feedback from a user." msgstr "" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "" @@ -1251,7 +1271,7 @@ msgstr "" msgid "download url for this order product if applicable" msgstr "" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "" @@ -1259,7 +1279,7 @@ msgstr "" msgid "a list of order products in this order" msgstr "" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "" @@ -1285,7 +1305,7 @@ msgstr "" msgid "transactions for this order" msgstr "" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "" @@ -1302,7 +1322,7 @@ msgstr "" msgid "category" msgstr "" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "" @@ -1343,7 +1363,7 @@ msgstr "" msgid "discount price" msgstr "" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "" @@ -1355,7 +1375,7 @@ msgstr "" msgid "products on sale" msgstr "" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "" @@ -1363,7 +1383,7 @@ msgstr "" msgid "vendor" msgstr "" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1371,11 +1391,11 @@ msgstr "" msgid "product" msgstr "" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "" @@ -1486,7 +1506,7 @@ msgstr "" msgid "attribute group's name" msgstr "" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "" @@ -1720,8 +1740,8 @@ msgstr "" msgid "the product associated with this stock entry" msgstr "" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "" @@ -1813,7 +1833,7 @@ msgstr "" msgid "product name" msgstr "" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "" @@ -1833,7 +1853,15 @@ msgstr "" msgid "stock keeping unit for this product" msgstr "" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " @@ -1843,83 +1871,83 @@ msgid "" "for dynamic and flexible data structuring." msgstr "" -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" "Represents a specific value for an attribute that is linked to a product. It " "links the 'attribute' to a unique 'value', allowing better organization and " "dynamic representation of product characteristics." msgstr "" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for " @@ -1928,39 +1956,39 @@ msgid "" "with alternative text for the images." msgstr "" -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1970,39 +1998,39 @@ msgid "" "affected items in the campaign." msgstr "" -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2010,23 +2038,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -2036,19 +2064,19 @@ msgid "" "custom features." msgstr "" -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" "Represents an address entity that includes location details and associations " "with a user. Provides functionality for geographic and address data storage, " @@ -2060,59 +2088,59 @@ msgid "" "address with a user, facilitating personalized data handling." msgstr "" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2122,86 +2150,86 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " @@ -2211,145 +2239,145 @@ msgid "" "supports managing the products in the order lifecycle." msgstr "" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2358,31 +2386,31 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "" -#: engine/core/models.py:1827 +#: engine/core/models.py:1834 msgid "references the specific product in an order that this feedback is about" msgstr "" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2395,108 +2423,108 @@ msgid "" "Product models and stores a reference to them." msgstr "" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2506,11 +2534,11 @@ msgid "" "the asset when the associated order is in a completed status." msgstr "" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "" @@ -2975,7 +3003,7 @@ msgid "" msgstr "" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " +msgid "Returns current version of the Schon. " msgstr "" #: engine/core/views.py:674 engine/core/views.py:689 @@ -2989,9 +3017,9 @@ msgstr "" #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" @@ -3045,7 +3073,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3066,7 +3094,7 @@ msgid "" "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " "serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" diff --git a/engine/core/locale/ko_KR/LC_MESSAGES/django.mo b/engine/core/locale/ko_KR/LC_MESSAGES/django.mo index 165f4c2e..7f11b568 100644 Binary files a/engine/core/locale/ko_KR/LC_MESSAGES/django.mo and b/engine/core/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/ko_KR/LC_MESSAGES/django.po b/engine/core/locale/ko_KR/LC_MESSAGES/django.po index 51731153..23a4b083 100644 --- a/engine/core/locale/ko_KR/LC_MESSAGES/django.po +++ b/engine/core/locale/ko_KR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "활성 상태" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "false로 설정하면 필요한 권한이 없는 사용자는 이 개체를 볼 수 없습니다." #: engine/core/abstract.py:26 engine/core/choices.py:18 @@ -72,8 +73,8 @@ msgstr "타임스탬프" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "선택한 %(verbose_name_plural)s 활성화" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "선택된 %(verbose_name_plural)s 활성화" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -81,21 +82,21 @@ msgstr "선택한 아이템이 활성화되었습니다!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "선택한 %(verbose_name_plural)s 비활성화하기" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "선택된 %(verbose_name_plural)s 비활성화" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "선택한 아이템이 비활성화되었습니다!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "속성 값" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "속성 값" @@ -115,12 +116,12 @@ msgstr "재고" msgid "stocks" msgstr "주식" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "제품 주문" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "제품 주문" @@ -128,7 +129,31 @@ msgstr "제품 주문" msgid "children" msgstr "어린이" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "이미지가 있습니다" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "선택한 %(verbose_name_plural)s를 마켓플레이스 피드로 내보내기" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "선택된 %(verbose_name_plural)s가 내보내기로 표시되었습니다." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "%(verbose_name_plural)s를 마켓플레이스 피드에서 선택해 차단했습니다" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "선택된 %(verbose_name_plural)s는 수출이 금지되었습니다." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "구성" @@ -152,7 +177,8 @@ msgstr "배달됨" msgid "canceled" msgstr "취소됨" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "실패" @@ -190,8 +216,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"OpenApi3 스키마를 사용합니다. 형식은 콘텐츠 협상을 통해 선택할 수 있습니다. " -"언어는 Accept-Language와 쿼리 매개변수를 모두 사용하여 선택할 수 있습니다." +"OpenApi3 스키마를 사용합니다. 형식은 콘텐츠 협상을 통해 선택할 수 있습니다. 언어는 Accept-Language와 쿼리 " +"매개변수를 모두 사용하여 선택할 수 있습니다." #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 msgid "cache I/O" @@ -237,9 +263,7 @@ msgstr "비즈니스로 주문 구매" msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -msgstr "" -"제공된 '제품'과 '제품_uuid' 및 '속성'을 사용하여 비즈니스로서 주문을 구매합니" -"다." +msgstr "제공된 '제품'과 '제품_uuid' 및 '속성'을 사용하여 비즈니스로서 주문을 구매합니다." #: engine/core/docs/drf/views.py:180 msgid "download a digital asset from purchased digital order" @@ -266,9 +290,9 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "편집할 수 없는 항목을 저장하는 기존 속성 그룹 다시 작성하기" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" -msgstr "" -"기존 속성 그룹의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" +msgstr "기존 속성 그룹의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." #: engine/core/docs/drf/viewsets.py:118 msgid "list all attributes (simple view)" @@ -315,9 +339,9 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "편집할 수 없는 기존 속성 값을 저장하여 다시 작성하기" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" -msgstr "" -"기존 속성 값의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" +msgstr "기존 속성 값의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -369,11 +393,11 @@ msgstr "직원이 아닌 사용자의 경우 자신의 주문만 반환됩니다 #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"대소문자를 구분하지 않는 하위 문자열 검색(human_readable_id, order_products." -"product.name 및 order_products.product.partnerumber)" +"대소문자를 구분하지 않는 하위 문자열 검색(human_readable_id, order_products.product.name 및 " +"order_products.product.partnerumber)" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -405,13 +429,12 @@ msgstr "주문 상태별 필터링(대소문자를 구분하지 않는 하위 #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"uuid, human_readable_id, user_email, 사용자, 상태, 생성됨, 수정됨, 구매 시" -"간, 무작위 중 하나로 정렬합니다. 접두사 앞에 '-'를 붙여 내림차순으로 정렬합니" -"다(예: '-buy_time')." +"uuid, human_readable_id, user_email, 사용자, 상태, 생성됨, 수정됨, 구매 시간, 무작위 중 하나로 " +"정렬합니다. 접두사 앞에 '-'를 붙여 내림차순으로 정렬합니다(예: '-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -451,8 +474,7 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"주문 구매를 완료합니다. 강제 잔액`을 사용하면 사용자의 잔액을 사용하여 구매" -"가 완료되고, `강제 결제`를 사용하면 거래가 시작됩니다." +"주문 구매를 완료합니다. 강제 잔액`을 사용하면 사용자의 잔액을 사용하여 구매가 완료되고, `강제 결제`를 사용하면 거래가 시작됩니다." #: engine/core/docs/drf/viewsets.py:427 msgid "retrieve current pending order of a user" @@ -478,8 +500,7 @@ msgstr "주문에 제품 추가" msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품을 추가합니다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품을 추가합니다." #: engine/core/docs/drf/viewsets.py:461 msgid "add a list of products to order, quantities will not count" @@ -489,9 +510,7 @@ msgstr "주문할 제품 목록을 추가하면 수량은 계산되지 않습니 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품 목록을 추가합니" -"다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품 목록을 추가합니다." #: engine/core/docs/drf/viewsets.py:472 msgid "remove product from order" @@ -501,8 +520,7 @@ msgstr "주문에서 제품 제거" msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품을 제거합니다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품을 제거합니다." #: engine/core/docs/drf/viewsets.py:483 msgid "remove product from order, quantities will not count" @@ -512,9 +530,7 @@ msgstr "주문에서 제품을 제거하면 수량이 계산되지 않습니다. msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품 목록을 제거합" -"니다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품 목록을 제거합니다." #: engine/core/docs/drf/viewsets.py:497 msgid "list all wishlists (simple view)" @@ -587,34 +603,24 @@ msgstr "주문에서 제품 제거" #: engine/core/docs/drf/viewsets.py:590 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "" -"제공된 `product_uuids`를 사용하여 위시리스트에서 많은 제품을 제거합니다." +msgstr "제공된 `product_uuids`를 사용하여 위시리스트에서 많은 제품을 제거합니다." #: engine/core/docs/drf/viewsets.py:598 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "하나 이상의 속성 이름/값 쌍을 기준으로 필터링합니다. \n" "- 구문**: `attr_name=메소드-값[;attr2=메소드2-값2]...`\n" -"- **방법**(생략 시 기본값은 `icontains`): `iexact`, `exact`, `icontains`, " -"`contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, " -"`regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- **값 입력**: JSON이 먼저 시도되며(목록/딕을 전달할 수 있도록), 부울, 정수, " -"부동 소수점의 경우 `true`/`false`, 그렇지 않으면 문자열로 처리됩니다. \n" -"- Base64**: 접두사 앞에 `b64-`를 추가하여 URL에 안전한 base64로 원시 값을 인" -"코딩합니다. \n" +"- **방법**(생략 시 기본값은 `icontains`): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **값 입력**: JSON이 먼저 시도되며(목록/딕을 전달할 수 있도록), 부울, 정수, 부동 소수점의 경우 `true`/`false`, 그렇지 않으면 문자열로 처리됩니다. \n" +"- Base64**: 접두사 앞에 `b64-`를 추가하여 URL에 안전한 base64로 원시 값을 인코딩합니다. \n" "예시: \n" "색상=정확-빨간색`, `크기=gt-10`, `기능=in-[\"wifi\",\"블루투스\"]`,\n" "b64-description=icontains-aGVhdC1jb2xk`" @@ -629,12 +635,10 @@ msgstr "(정확한) 제품 UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"정렬할 필드의 쉼표로 구분된 목록입니다. 접두사 앞에 `-`를 붙여 내림차순으로 " -"정렬합니다. \n" +"정렬할 필드의 쉼표로 구분된 목록입니다. 접두사 앞에 `-`를 붙여 내림차순으로 정렬합니다. \n" "**허용됨:** uuid, 등급, 이름, 슬러그, 생성, 수정, 가격, 랜덤" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -730,8 +734,7 @@ msgstr "편집할 수 없는 기존 피드백을 다시 작성합니다." #: engine/core/docs/drf/viewsets.py:909 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "" -"기존 피드백의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgstr "기존 피드백의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." #: engine/core/docs/drf/viewsets.py:919 msgid "list all order–product relations (simple view)" @@ -1013,8 +1016,7 @@ msgstr "SKU" #: engine/core/filters.py:212 msgid "there must be a category_uuid to use include_subcategories flag" -msgstr "" -"include_subcategories 플래그를 사용하려면 category_uuid가 있어야 합니다." +msgstr "include_subcategories 플래그를 사용하려면 category_uuid가 있어야 합니다." #: engine/core/filters.py:398 msgid "Search (ID, product name or part number)" @@ -1166,8 +1168,8 @@ msgstr "주문 구매" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "속성을 attr1=value1,attr2=value2와 같은 형식의 문자열로 보내주세요." #: engine/core/graphene/mutations.py:580 @@ -1187,9 +1189,9 @@ msgstr "주문 제품 {order_product_uuid}을 찾을 수 없습니다!" msgid "original address string provided by the user" msgstr "사용자가 제공한 원본 주소 문자열" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1205,8 +1207,8 @@ msgstr "ElasticSearch - 마법처럼 작동" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "속성" @@ -1242,7 +1244,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "이 카테고리를 필터링하는 데 사용할 수 있는 속성 및 값입니다." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "이 카테고리의 제품에 대한 최소 및 최대 가격(가능한 경우)." #: engine/core/graphene/object_types.py:234 @@ -1279,7 +1282,7 @@ msgid "represents feedback from a user." msgstr "사용자의 피드백을 나타냅니다." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "알림" @@ -1287,7 +1290,7 @@ msgstr "알림" msgid "download url for this order product if applicable" msgstr "해당되는 경우 이 주문 제품의 URL 다운로드" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "피드백" @@ -1295,7 +1298,7 @@ msgstr "피드백" msgid "a list of order products in this order" msgstr "주문 제품 목록은 다음 순서로 표시됩니다." -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "청구서 수신 주소" @@ -1303,9 +1306,7 @@ msgstr "청구서 수신 주소" msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" -msgstr "" -"이 주문의 배송 주소는 청구지 주소와 동일하거나 해당되지 않는 경우 비워 둡니" -"다." +msgstr "이 주문의 배송 주소는 청구지 주소와 동일하거나 해당되지 않는 경우 비워 둡니다." #: engine/core/graphene/object_types.py:468 msgid "total price of this order" @@ -1323,7 +1324,7 @@ msgstr "주문에 포함된 모든 제품이 디지털 제품인가요?" msgid "transactions for this order" msgstr "이 주문에 대한 거래" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "주문" @@ -1340,7 +1341,7 @@ msgstr "제품 이미지" msgid "category" msgstr "카테고리" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "피드백" @@ -1381,7 +1382,7 @@ msgstr "개인 주문만 가능한 제품" msgid "discount price" msgstr "할인 가격" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "제품" @@ -1393,7 +1394,7 @@ msgstr "프로모션 코드" msgid "products on sale" msgstr "판매 중인 제품" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "프로모션" @@ -1401,7 +1402,7 @@ msgstr "프로모션" msgid "vendor" msgstr "공급업체" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1409,11 +1410,11 @@ msgstr "공급업체" msgid "product" msgstr "제품" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "위시리스트 제품" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "위시리스트" @@ -1452,8 +1453,7 @@ msgstr "회사 전화번호" #: engine/core/graphene/object_types.py:761 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"'이메일 보낸 사람'을 호스트 사용자 값 대신 사용해야 하는 경우가 있습니다." +msgstr "'이메일 보낸 사람'을 호스트 사용자 값 대신 사용해야 하는 경우가 있습니다." #: engine/core/graphene/object_types.py:764 msgid "email host user" @@ -1512,10 +1512,8 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"계층적일 수 있는 속성 그룹을 나타냅니다. 이 클래스는 속성 그룹을 관리하고 구" -"성하는 데 사용됩니다. 속성 그룹은 상위 그룹을 가질 수 있으며 계층 구조를 형성" -"할 수 있습니다. 이는 복잡한 시스템에서 속성을 보다 효과적으로 분류하고 관리하" -"는 데 유용할 수 있습니다." +"계층적일 수 있는 속성 그룹을 나타냅니다. 이 클래스는 속성 그룹을 관리하고 구성하는 데 사용됩니다. 속성 그룹은 상위 그룹을 가질 수 " +"있으며 계층 구조를 형성할 수 있습니다. 이는 복잡한 시스템에서 속성을 보다 효과적으로 분류하고 관리하는 데 유용할 수 있습니다." #: engine/core/models.py:88 msgid "parent of this group" @@ -1529,7 +1527,7 @@ msgstr "상위 속성 그룹" msgid "attribute group's name" msgstr "속성 그룹의 이름" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "속성 그룹" @@ -1543,12 +1541,10 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"외부 공급업체 및 해당 공급업체의 상호 작용 요구 사항에 대한 정보를 저장할 수 " -"있는 공급업체 엔티티를 나타냅니다. 공급업체 클래스는 외부 공급업체와 관련된 " -"정보를 정의하고 관리하는 데 사용됩니다. 공급업체의 이름, 통신에 필요한 인증 " -"세부 정보, 공급업체에서 검색한 제품에 적용된 마크업 비율을 저장합니다. 또한 " -"이 모델은 추가 메타데이터 및 제약 조건을 유지하므로 타사 공급업체와 상호 작용" -"하는 시스템에서 사용하기에 적합합니다." +"외부 공급업체 및 해당 공급업체의 상호 작용 요구 사항에 대한 정보를 저장할 수 있는 공급업체 엔티티를 나타냅니다. 공급업체 클래스는 " +"외부 공급업체와 관련된 정보를 정의하고 관리하는 데 사용됩니다. 공급업체의 이름, 통신에 필요한 인증 세부 정보, 공급업체에서 검색한 " +"제품에 적용된 마크업 비율을 저장합니다. 또한 이 모델은 추가 메타데이터 및 제약 조건을 유지하므로 타사 공급업체와 상호 작용하는 " +"시스템에서 사용하기에 적합합니다." #: engine/core/models.py:122 msgid "stores credentials and endpoints required for vendor communication" @@ -1598,10 +1594,9 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"제품을 분류하거나 식별하는 데 사용되는 제품 태그를 나타냅니다. ProductTag 클" -"래스는 내부 태그 식별자와 사용자 친화적인 표시 이름의 조합을 통해 제품을 고유" -"하게 식별하고 분류하도록 설계되었습니다. 믹스인을 통해 내보낸 작업을 지원하" -"며 관리 목적으로 메타데이터 사용자 지정을 제공합니다." +"제품을 분류하거나 식별하는 데 사용되는 제품 태그를 나타냅니다. ProductTag 클래스는 내부 태그 식별자와 사용자 친화적인 표시 " +"이름의 조합을 통해 제품을 고유하게 식별하고 분류하도록 설계되었습니다. 믹스인을 통해 내보낸 작업을 지원하며 관리 목적으로 메타데이터 " +"사용자 지정을 제공합니다." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1629,9 +1624,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"제품에 사용되는 카테고리 태그를 나타냅니다. 이 클래스는 제품을 연결하고 분류" -"하는 데 사용할 수 있는 카테고리 태그를 모델링합니다. 내부 태그 식별자 및 사용" -"자 친화적인 표시 이름에 대한 속성을 포함합니다." +"제품에 사용되는 카테고리 태그를 나타냅니다. 이 클래스는 제품을 연결하고 분류하는 데 사용할 수 있는 카테고리 태그를 모델링합니다. 내부" +" 태그 식별자 및 사용자 친화적인 표시 이름에 대한 속성을 포함합니다." #: engine/core/models.py:249 msgid "category tag" @@ -1653,13 +1647,10 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"관련 항목을 계층 구조로 정리하고 그룹화할 카테고리 엔티티를 나타냅니다. 카테" -"고리는 다른 카테고리와 계층적 관계를 가질 수 있으며, 상위-하위 관계를 지원합" -"니다. 이 클래스에는 카테고리 관련 기능의 기반이 되는 메타데이터 및 시각적 표" -"현을 위한 필드가 포함되어 있습니다. 이 클래스는 일반적으로 애플리케이션 내에" -"서 제품 카테고리 또는 기타 유사한 그룹을 정의하고 관리하는 데 사용되며, 사용" -"자나 관리자가 카테고리의 이름, 설명 및 계층 구조를 지정하고 이미지, 태그 또" -"는 우선순위와 같은 속성을 할당할 수 있도록 합니다." +"관련 항목을 계층 구조로 정리하고 그룹화할 카테고리 엔티티를 나타냅니다. 카테고리는 다른 카테고리와 계층적 관계를 가질 수 있으며, " +"상위-하위 관계를 지원합니다. 이 클래스에는 카테고리 관련 기능의 기반이 되는 메타데이터 및 시각적 표현을 위한 필드가 포함되어 " +"있습니다. 이 클래스는 일반적으로 애플리케이션 내에서 제품 카테고리 또는 기타 유사한 그룹을 정의하고 관리하는 데 사용되며, 사용자나 " +"관리자가 카테고리의 이름, 설명 및 계층 구조를 지정하고 이미지, 태그 또는 우선순위와 같은 속성을 할당할 수 있도록 합니다." #: engine/core/models.py:269 msgid "upload an image representing this category" @@ -1710,11 +1701,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"시스템에서 브랜드 객체를 나타냅니다. 이 클래스는 이름, 로고, 설명, 관련 카테" -"고리, 고유 슬러그, 우선순위 등 브랜드와 관련된 정보 및 속성을 처리합니다. 이" -"를 통해 애플리케이션 내에서 브랜드 관련 데이터를 구성하고 표현할 수 있습니다." +"시스템에서 브랜드 객체를 나타냅니다. 이 클래스는 이름, 로고, 설명, 관련 카테고리, 고유 슬러그, 우선순위 등 브랜드와 관련된 정보 " +"및 속성을 처리합니다. 이를 통해 애플리케이션 내에서 브랜드 관련 데이터를 구성하고 표현할 수 있습니다." #: engine/core/models.py:456 msgid "name of this brand" @@ -1758,17 +1749,16 @@ msgstr "카테고리" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"시스템에서 관리되는 제품의 재고를 나타냅니다. 이 클래스는 공급업체, 제품, 재" -"고 정보 간의 관계와 가격, 구매 가격, 수량, SKU 및 디지털 자산과 같은 재고 관" -"련 속성에 대한 세부 정보를 제공합니다. 다양한 공급업체에서 제공하는 제품을 추" -"적하고 평가할 수 있도록 하는 재고 관리 시스템의 일부입니다." +"시스템에서 관리되는 제품의 재고를 나타냅니다. 이 클래스는 공급업체, 제품, 재고 정보 간의 관계와 가격, 구매 가격, 수량, SKU 및" +" 디지털 자산과 같은 재고 관련 속성에 대한 세부 정보를 제공합니다. 다양한 공급업체에서 제공하는 제품을 추적하고 평가할 수 있도록 하는" +" 재고 관리 시스템의 일부입니다." #: engine/core/models.py:528 msgid "the vendor supplying this product stock" @@ -1790,8 +1780,8 @@ msgstr "판매 가격" msgid "the product associated with this stock entry" msgstr "이 주식 항목과 관련된 제품" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "관련 제품" @@ -1846,13 +1836,10 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"카테고리, 브랜드, 태그, 디지털 상태, 이름, 설명, 부품 번호, 슬러그 등의 속성" -"을 가진 제품을 나타냅니다. 평점, 피드백 수, 가격, 수량, 총 주문 수 등을 검색" -"할 수 있는 관련 유틸리티 속성을 제공합니다. 이커머스 또는 재고 관리를 처리하" -"는 시스템에서 사용하도록 설계되었습니다. 이 클래스는 관련 모델(예: 카테고리, " -"브랜드, 제품 태그)과 상호 작용하고 자주 액세스하는 속성에 대한 캐싱을 관리하" -"여 성능을 개선합니다. 애플리케이션 내에서 제품 데이터 및 관련 정보를 정의하" -"고 조작하는 데 사용됩니다." +"카테고리, 브랜드, 태그, 디지털 상태, 이름, 설명, 부품 번호, 슬러그 등의 속성을 가진 제품을 나타냅니다. 평점, 피드백 수, " +"가격, 수량, 총 주문 수 등을 검색할 수 있는 관련 유틸리티 속성을 제공합니다. 이커머스 또는 재고 관리를 처리하는 시스템에서 " +"사용하도록 설계되었습니다. 이 클래스는 관련 모델(예: 카테고리, 브랜드, 제품 태그)과 상호 작용하고 자주 액세스하는 속성에 대한 " +"캐싱을 관리하여 성능을 개선합니다. 애플리케이션 내에서 제품 데이터 및 관련 정보를 정의하고 조작하는 데 사용됩니다." #: engine/core/models.py:595 msgid "category this product belongs to" @@ -1890,7 +1877,7 @@ msgstr "제품에 대한 명확한 식별 이름 제공" msgid "product name" msgstr "제품 이름" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "제품에 대한 자세한 설명 추가" @@ -1910,317 +1897,313 @@ msgstr "부품 번호" msgid "stock keeping unit for this product" msgstr "이 제품의 재고 보관 단위" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "이 제품을 마켓플레이스에 수출할지 여부" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "마켓플레이스로 내보내기" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"시스템의 속성을 나타냅니다. 이 클래스는 다른 엔티티와 연결할 수 있는 사용자 " -"지정 가능한 데이터 조각인 속성을 정의하고 관리하는 데 사용됩니다. 속성에는 연" -"관된 카테고리, 그룹, 값 유형 및 이름이 있습니다. 이 모델은 문자열, 정수, 실" -"수, 부울, 배열, 객체 등 여러 유형의 값을 지원합니다. 이를 통해 동적이고 유연" -"한 데이터 구조화가 가능합니다." +"시스템의 속성을 나타냅니다. 이 클래스는 다른 엔티티와 연결할 수 있는 사용자 지정 가능한 데이터 조각인 속성을 정의하고 관리하는 데 " +"사용됩니다. 속성에는 연관된 카테고리, 그룹, 값 유형 및 이름이 있습니다. 이 모델은 문자열, 정수, 실수, 부울, 배열, 객체 등 " +"여러 유형의 값을 지원합니다. 이를 통해 동적이고 유연한 데이터 구조화가 가능합니다." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "이 속성의 그룹" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "문자열" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "정수" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Float" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "부울" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "배열" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "개체" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "속성 값의 유형" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "값 유형" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "이 속성의 이름" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "속성 이름" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "필터링 가능" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "는 이 속성을 필터링에 사용할 수 있는지 여부를 지정합니다." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "속성" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"상품에 연결된 속성의 특정 값을 나타냅니다. '속성'을 고유한 '값'에 연결하여 제" -"품 특성을 더 잘 구성하고 동적으로 표현할 수 있습니다." +"상품에 연결된 속성의 특정 값을 나타냅니다. '속성'을 고유한 '값'에 연결하여 제품 특성을 더 잘 구성하고 동적으로 표현할 수 " +"있습니다." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "이 값의 속성" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "이 속성 값과 연관된 특정 제품" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "이 속성의 구체적인 값은 다음과 같습니다." -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"시스템에서 제품과 연관된 제품 이미지를 나타냅니다. 이 클래스는 이미지 파일 업" -"로드, 특정 제품과의 연결, 표시 순서 결정 등의 기능을 포함하여 제품의 이미지" -"를 관리하도록 설계되었습니다. 또한 이미지에 대한 대체 텍스트가 포함된 접근성 " -"기능도 포함되어 있습니다." +"시스템에서 제품과 연관된 제품 이미지를 나타냅니다. 이 클래스는 이미지 파일 업로드, 특정 제품과의 연결, 표시 순서 결정 등의 기능을 " +"포함하여 제품의 이미지를 관리하도록 설계되었습니다. 또한 이미지에 대한 대체 텍스트가 포함된 접근성 기능도 포함되어 있습니다." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "접근성을 위해 이미지에 대체 텍스트 제공" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "이미지 대체 텍스트" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "이 제품의 이미지 파일 업로드" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "제품 이미지" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "이미지가 표시되는 순서를 결정합니다." -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "우선순위 표시" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "이 이미지가 나타내는 제품" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "제품 이미지" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"할인이 적용되는 제품에 대한 프로모션 캠페인을 나타냅니다. 이 클래스는 제품에 " -"대해 백분율 기반 할인을 제공하는 프로모션 캠페인을 정의하고 관리하는 데 사용" -"됩니다. 이 클래스에는 할인율 설정, 프로모션에 대한 세부 정보 제공 및 해당 제" -"품에 대한 링크를 위한 속성이 포함되어 있습니다. 제품 카탈로그와 통합되어 캠페" -"인에서 영향을 받는 품목을 결정합니다." +"할인이 적용되는 제품에 대한 프로모션 캠페인을 나타냅니다. 이 클래스는 제품에 대해 백분율 기반 할인을 제공하는 프로모션 캠페인을 " +"정의하고 관리하는 데 사용됩니다. 이 클래스에는 할인율 설정, 프로모션에 대한 세부 정보 제공 및 해당 제품에 대한 링크를 위한 속성이 " +"포함되어 있습니다. 제품 카탈로그와 통합되어 캠페인에서 영향을 받는 품목을 결정합니다." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "선택한 제품에 대한 할인 비율" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "할인 비율" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "이 프로모션의 고유한 이름을 입력하세요." -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "프로모션 이름" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "프로모션 설명" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "이 프로모션에 포함되는 제품 선택" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "포함된 제품" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "프로모션" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"원하는 상품을 저장하고 관리하기 위한 사용자의 위시리스트를 나타냅니다. 이 클" -"래스는 제품 컬렉션을 관리하는 기능을 제공하여 제품 추가 및 제거와 같은 작업" -"을 지원할 뿐만 아니라 여러 제품을 한 번에 추가 및 제거하는 작업도 지원합니다." +"원하는 상품을 저장하고 관리하기 위한 사용자의 위시리스트를 나타냅니다. 이 클래스는 제품 컬렉션을 관리하는 기능을 제공하여 제품 추가 및" +" 제거와 같은 작업을 지원할 뿐만 아니라 여러 제품을 한 번에 추가 및 제거하는 작업도 지원합니다." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "사용자가 원하는 것으로 표시한 제품" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "이 위시리스트를 소유한 사용자" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "위시리스트의 소유자" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "위시리스트" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"상품에 연결된 다큐멘터리 레코드를 나타냅니다. 이 클래스는 파일 업로드 및 메타" -"데이터를 포함하여 특정 제품과 관련된 다큐멘터리에 대한 정보를 저장하는 데 사" -"용됩니다. 여기에는 다큐멘터리 파일의 파일 유형과 저장 경로를 처리하는 메서드" -"와 프로퍼티가 포함되어 있습니다. 특정 믹스인의 기능을 확장하고 추가 사용자 정" -"의 기능을 제공합니다." +"상품에 연결된 다큐멘터리 레코드를 나타냅니다. 이 클래스는 파일 업로드 및 메타데이터를 포함하여 특정 제품과 관련된 다큐멘터리에 대한 " +"정보를 저장하는 데 사용됩니다. 여기에는 다큐멘터리 파일의 파일 유형과 저장 경로를 처리하는 메서드와 프로퍼티가 포함되어 있습니다. 특정" +" 믹스인의 기능을 확장하고 추가 사용자 정의 기능을 제공합니다." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "다큐멘터리" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "다큐멘터리" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "해결되지 않음" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"위치 세부 정보 및 사용자와의 연결을 포함하는 주소 엔티티를 나타냅니다. 지리" -"적 및 주소 데이터 저장과 지오코딩 서비스와의 통합을 위한 기능을 제공합니다. " -"이 클래스는 거리, 도시, 지역, 국가, 지리적 위치(경도 및 위도)와 같은 구성 요" -"소를 포함한 상세한 주소 정보를 저장하도록 설계되었습니다. 지오코딩 API와의 통" -"합을 지원하여 추가 처리 또는 검사를 위해 원시 API 응답을 저장할 수 있습니다. " -"또한 이 클래스를 사용하면 주소를 사용자와 연결하여 개인화된 데이터 처리를 용" -"이하게 할 수 있습니다." +"위치 세부 정보 및 사용자와의 연결을 포함하는 주소 엔티티를 나타냅니다. 지리적 및 주소 데이터 저장과 지오코딩 서비스와의 통합을 위한 " +"기능을 제공합니다. 이 클래스는 거리, 도시, 지역, 국가, 지리적 위치(경도 및 위도)와 같은 구성 요소를 포함한 상세한 주소 정보를 " +"저장하도록 설계되었습니다. 지오코딩 API와의 통합을 지원하여 추가 처리 또는 검사를 위해 원시 API 응답을 저장할 수 있습니다. 또한" +" 이 클래스를 사용하면 주소를 사용자와 연결하여 개인화된 데이터 처리를 용이하게 할 수 있습니다." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "고객 주소 라인" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "주소 라인" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "거리" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "지구" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "도시" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "지역" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "우편 번호" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "국가" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "지리적 위치 포인트(경도, 위도)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "이 주소에 대한 지오코더의 전체 JSON 응답" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "지오코딩 서비스의 저장된 JSON 응답" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "주소" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "주소" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2229,252 +2212,241 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"할인에 사용할 수 있는 프로모션 코드를 나타내며, 유효 기간, 할인 유형 및 적용" -"을 관리합니다. 프로모션 코드 클래스는 고유 식별자, 할인 속성(금액 또는 백분" -"율), 유효 기간, 관련 사용자(있는 경우), 사용 상태 등 프로모션 코드에 대한 세" -"부 정보를 저장합니다. 여기에는 제약 조건이 충족되는지 확인하면서 프로모션 코" -"드의 유효성을 검사하고 주문에 적용하는 기능이 포함되어 있습니다." +"할인에 사용할 수 있는 프로모션 코드를 나타내며, 유효 기간, 할인 유형 및 적용을 관리합니다. 프로모션 코드 클래스는 고유 식별자, " +"할인 속성(금액 또는 백분율), 유효 기간, 관련 사용자(있는 경우), 사용 상태 등 프로모션 코드에 대한 세부 정보를 저장합니다. " +"여기에는 제약 조건이 충족되는지 확인하면서 프로모션 코드의 유효성을 검사하고 주문에 적용하는 기능이 포함되어 있습니다." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "사용자가 할인을 받기 위해 사용하는 고유 코드" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "프로모션 코드 식별자" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "퍼센트를 사용하지 않을 경우 고정 할인 금액 적용" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "고정 할인 금액" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "고정 금액 미사용 시 적용되는 할인 비율" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "백분율 할인" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "프로모션 코드 만료 시 타임스탬프" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "유효 기간 종료 시간" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "이 프로모코드의 타임스탬프가 유효한 시점" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "유효 기간 시작 시간" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "프로모코드가 사용된 타임스탬프, 아직 사용되지 않은 경우 비워둡니다." -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "사용 타임스탬프" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "해당되는 경우 이 프로모코드에 할당된 사용자" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "할당된 사용자" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "프로모션 코드" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "프로모션 코드" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "" -"할인 유형(금액 또는 백분율)은 한 가지 유형만 정의해야 하며, 두 가지 모두 또" -"는 둘 다 정의해서는 안 됩니다." +msgstr "할인 유형(금액 또는 백분율)은 한 가지 유형만 정의해야 하며, 두 가지 모두 또는 둘 다 정의해서는 안 됩니다." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "프로모코드가 이미 사용되었습니다." -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "프로모션 코드 {self.uuid}의 할인 유형이 잘못되었습니다!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"사용자가 진행한 주문을 나타냅니다. 이 클래스는 청구 및 배송 정보, 상태, 연결" -"된 사용자, 알림 및 관련 작업과 같은 다양한 속성을 포함하여 애플리케이션 내에" -"서 주문을 모델링합니다. 주문에는 연결된 제품, 프로모션 적용, 주소 설정, 배송 " -"또는 청구 세부 정보 업데이트가 가능합니다. 또한 주문 수명 주기에서 제품을 관" -"리하는 기능도 지원합니다." +"사용자가 진행한 주문을 나타냅니다. 이 클래스는 청구 및 배송 정보, 상태, 연결된 사용자, 알림 및 관련 작업과 같은 다양한 속성을 " +"포함하여 애플리케이션 내에서 주문을 모델링합니다. 주문에는 연결된 제품, 프로모션 적용, 주소 설정, 배송 또는 청구 세부 정보 " +"업데이트가 가능합니다. 또한 주문 수명 주기에서 제품을 관리하는 기능도 지원합니다." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "이 주문에 사용된 청구 주소" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "이 주문에 적용된 프로모션 코드(선택 사항)" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "프로모션 코드 적용" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "이 주문에 사용된 배송지 주소" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "배송 주소" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "라이프사이클 내 주문의 현재 상태" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "주문 상태" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" -msgstr "" -"사용자에게 표시할 알림의 JSON 구조, 관리자 UI에서는 테이블 보기가 사용됩니다." +msgstr "사용자에게 표시할 알림의 JSON 구조, 관리자 UI에서는 테이블 보기가 사용됩니다." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "이 주문에 대한 주문 속성의 JSON 표현" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "주문한 사용자" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "사용자" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "주문이 완료된 타임스탬프" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "시간 확보" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "사람이 읽을 수 있는 주문 식별자" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "사람이 읽을 수 있는 ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "주문" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "사용자는 한 번에 하나의 대기 주문만 보유해야 합니다!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "보류 중인 주문이 아닌 주문에는 제품을 추가할 수 없습니다." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "주문에 비활성 제품을 추가할 수 없습니다." -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "재고가 있는 제품보다 많은 제품을 추가할 수 없습니다." -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "보류 중인 주문이 아닌 주문에서는 제품을 제거할 수 없습니다." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "쿼리 <{query}>에 {name}가 존재하지 않습니다!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "프로모코드가 존재하지 않습니다." -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "배송 주소가 지정된 실제 제품만 구매할 수 있습니다!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "주소가 존재하지 않습니다." -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "지금은 구매할 수 없습니다. 몇 분 후에 다시 시도해 주세요." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "잘못된 힘 값" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "빈 주문은 구매할 수 없습니다!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "사용자 없이는 주문을 구매할 수 없습니다!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "잔액이 없는 사용자는 잔액으로 구매할 수 없습니다!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "주문을 완료하기에 자금이 부족합니다." -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -msgstr "" -"등록하지 않으면 구매할 수 없으므로 고객 이름, 고객 이메일, 고객 전화 번호 등" -"의 정보를 제공하세요." +msgstr "등록하지 않으면 구매할 수 없으므로 고객 이름, 고객 이메일, 고객 전화 번호 등의 정보를 제공하세요." -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" -msgstr "" -"결제 방법이 잘못되었습니다: {payment_method}에서 {available_payment_methods}" -"로!" +msgstr "결제 방법이 잘못되었습니다: {payment_method}에서 {available_payment_methods}로!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2482,37 +2454,36 @@ msgid "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." msgstr "" -"제품에 대한 사용자 피드백을 관리합니다. 이 클래스는 사용자가 구매한 특정 제품" -"에 대한 사용자 피드백을 캡처하고 저장하도록 설계되었습니다. 여기에는 사용자 " -"댓글, 주문에서 관련 제품에 대한 참조 및 사용자가 지정한 등급을 저장하는 속성" -"이 포함되어 있습니다. 이 클래스는 데이터베이스 필드를 사용하여 피드백 데이터" -"를 효과적으로 모델링하고 관리합니다." +"제품에 대한 사용자 피드백을 관리합니다. 이 클래스는 사용자가 구매한 특정 제품에 대한 사용자 피드백을 캡처하고 저장하도록 " +"설계되었습니다. 여기에는 사용자 댓글, 주문에서 관련 제품에 대한 참조 및 사용자가 지정한 등급을 저장하는 속성이 포함되어 있습니다. 이" +" 클래스는 데이터베이스 필드를 사용하여 피드백 데이터를 효과적으로 모델링하고 관리합니다." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "제품 사용 경험에 대한 사용자 제공 의견" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "피드백 댓글" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "이 피드백에 대한 순서대로 특정 제품을 참조합니다." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "관련 주문 제품" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "제품에 대한 사용자 지정 평점" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "제품 평가" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2524,135 +2495,130 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"주문과 관련된 제품 및 해당 속성을 나타냅니다. 주문 제품 모델은 구매 가격, 수" -"량, 제품 속성 및 상태 등의 세부 정보를 포함하여 주문의 일부인 제품에 대한 정" -"보를 유지 관리합니다. 사용자 및 관리자에 대한 알림을 관리하고 제품 잔액 반환 " -"또는 피드백 추가와 같은 작업을 처리합니다. 또한 이 모델은 총 가격 계산이나 디" -"지털 제품의 다운로드 URL 생성 등 비즈니스 로직을 지원하는 메서드와 속성을 제" -"공합니다. 이 모델은 주문 및 제품 모델과 통합되며 해당 모델에 대한 참조를 저장" -"합니다." +"주문과 관련된 제품 및 해당 속성을 나타냅니다. 주문 제품 모델은 구매 가격, 수량, 제품 속성 및 상태 등의 세부 정보를 포함하여 " +"주문의 일부인 제품에 대한 정보를 유지 관리합니다. 사용자 및 관리자에 대한 알림을 관리하고 제품 잔액 반환 또는 피드백 추가와 같은 " +"작업을 처리합니다. 또한 이 모델은 총 가격 계산이나 디지털 제품의 다운로드 URL 생성 등 비즈니스 로직을 지원하는 메서드와 속성을 " +"제공합니다. 이 모델은 주문 및 제품 모델과 통합되며 해당 모델에 대한 참조를 저장합니다." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "구매 시점에 고객이 이 제품에 대해 지불한 가격입니다." -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "주문 시점의 구매 가격" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "주문한 제품에 대한 관리자용 내부 댓글" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "내부 의견" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "사용자 알림" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "이 항목의 속성에 대한 JSON 표현" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "주문한 제품 속성" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "이 제품이 포함된 상위 주문 참조" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "상위 주문" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "이 주문 라인과 연결된 특정 제품" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "이 특정 제품의 주문 수량" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "제품 수량" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "이 제품의 현재 상태 순서" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "제품 라인 상태" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "주문제품에는 연결된 주문이 있어야 합니다!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "피드백에 지정된 작업이 잘못되었습니다: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "받지 않은 주문에 대해서는 피드백을 제공할 수 없습니다." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "이름" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "통합 URL" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "인증 자격 증명" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "기본 CRM 공급업체는 하나만 사용할 수 있습니다." -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "주문의 CRM 링크" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "주문의 CRM 링크" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"주문과 관련된 디지털 자산의 다운로드 기능을 나타냅니다. 디지털 자산 다운로드 " -"클래스는 주문 상품과 관련된 다운로드를 관리하고 액세스할 수 있는 기능을 제공" -"합니다. 연결된 주문 상품, 다운로드 횟수, 자산이 공개적으로 표시되는지 여부에 " -"대한 정보를 유지 관리합니다. 여기에는 연결된 주문이 완료 상태일 때 자산을 다" -"운로드할 수 있는 URL을 생성하는 메서드가 포함되어 있습니다." +"주문과 관련된 디지털 자산의 다운로드 기능을 나타냅니다. 디지털 자산 다운로드 클래스는 주문 상품과 관련된 다운로드를 관리하고 액세스할 " +"수 있는 기능을 제공합니다. 연결된 주문 상품, 다운로드 횟수, 자산이 공개적으로 표시되는지 여부에 대한 정보를 유지 관리합니다. " +"여기에는 연결된 주문이 완료 상태일 때 자산을 다운로드할 수 있는 URL을 생성하는 메서드가 포함되어 있습니다." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "다운로드" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "다운로드" @@ -2851,12 +2817,10 @@ msgstr "안녕하세요 %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"주문해 주셔서 감사합니다 #%(order.pk)s! 주문하신 상품이 입고되었음을 알려드립" -"니다. 주문 세부 정보는 아래와 같습니다:" +"주문해 주셔서 감사합니다 #%(order.pk)s! 주문하신 상품이 입고되었음을 알려드립니다. 주문 세부 정보는 아래와 같습니다:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2879,8 +2843,7 @@ msgstr "총 가격" msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." -msgstr "" -"궁금한 점이 있으면 언제든지 %(config.EMAIL_HOST_USER)s로 지원팀에 문의하세요." +msgstr "궁금한 점이 있으면 언제든지 %(config.EMAIL_HOST_USER)s로 지원팀에 문의하세요." #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -2908,9 +2871,7 @@ msgstr "안녕하세요 %(user_first_name)s," msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" -msgstr "" -"주문이 성공적으로 처리되었습니다 №%(order_uuid)s! 주문 세부 정보는 아래와 같" -"습니다:" +msgstr "주문이 성공적으로 처리되었습니다 №%(order_uuid)s! 주문 세부 정보는 아래와 같습니다:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -2963,12 +2924,9 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" -msgstr "" -"주문해 주셔서 감사합니다! 구매를 확인하게 되어 기쁩니다. 주문 세부 정보는 아" -"래와 같습니다:" +msgstr "주문해 주셔서 감사합니다! 구매를 확인하게 되어 기쁩니다. 주문 세부 정보는 아래와 같습니다:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3034,16 +2992,14 @@ msgstr "NOMINATIM_URL 파라미터를 설정해야 합니다!" #: engine/core/validators.py:23 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" -msgstr "" -"이미지 크기는 w{max_width} x h{max_height} 픽셀을 초과하지 않아야 합니다!" +msgstr "이미지 크기는 w{max_width} x h{max_height} 픽셀을 초과하지 않아야 합니다!" #: engine/core/views.py:104 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"사이트맵 색인에 대한 요청을 처리하고 XML 응답을 반환합니다. 응답에 XML에 적합" -"한 콘텐츠 유형 헤더가 포함되어 있는지 확인합니다." +"사이트맵 색인에 대한 요청을 처리하고 XML 응답을 반환합니다. 응답에 XML에 적합한 콘텐츠 유형 헤더가 포함되어 있는지 확인합니다." #: engine/core/views.py:119 msgid "" @@ -3051,9 +3007,8 @@ msgid "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"사이트맵에 대한 상세 보기 응답을 처리합니다. 이 함수는 요청을 처리하고 적절" -"한 사이트맵 상세 보기 응답을 가져온 다음 XML의 Content-Type 헤더를 설정합니" -"다." +"사이트맵에 대한 상세 보기 응답을 처리합니다. 이 함수는 요청을 처리하고 적절한 사이트맵 상세 보기 응답을 가져온 다음 XML의 " +"Content-Type 헤더를 설정합니다." #: engine/core/views.py:155 msgid "" @@ -3068,9 +3023,7 @@ msgstr "웹사이트의 매개변수를 JSON 객체로 반환합니다." msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -msgstr "" -"지정된 키와 시간 초과로 캐시 데이터를 읽고 설정하는 등의 캐시 작업을 처리합니" -"다." +msgstr "지정된 키와 시간 초과로 캐시 데이터를 읽고 설정하는 등의 캐시 작업을 처리합니다." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3093,14 +3046,10 @@ msgstr "등록하지 않고 비즈니스로 구매하는 로직을 처리합니 #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "주문과 관련된 디지털 자산의 다운로드를 처리합니다.\n" -"이 함수는 프로젝트의 저장소 디렉토리에 있는 디지털 자산 파일을 제공하려고 시" -"도합니다. 파일을 찾을 수 없으면 HTTP 404 오류가 발생하여 리소스를 사용할 수 " -"없음을 나타냅니다." +"이 함수는 프로젝트의 저장소 디렉토리에 있는 디지털 자산 파일을 제공하려고 시도합니다. 파일을 찾을 수 없으면 HTTP 404 오류가 발생하여 리소스를 사용할 수 없음을 나타냅니다." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3129,28 +3078,23 @@ msgstr "파비콘을 찾을 수 없습니다." #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "웹사이트의 파비콘 요청을 처리합니다.\n" -"이 함수는 프로젝트의 정적 디렉토리에 있는 파비콘 파일을 제공하려고 시도합니" -"다. 파비콘 파일을 찾을 수 없는 경우 HTTP 404 오류가 발생하여 리소스를 사용할 " -"수 없음을 나타냅니다." +"이 함수는 프로젝트의 정적 디렉토리에 있는 파비콘 파일을 제공하려고 시도합니다. 파비콘 파일을 찾을 수 없는 경우 HTTP 404 오류가 발생하여 리소스를 사용할 수 없음을 나타냅니다." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"요청을 관리자 색인 페이지로 리디렉션합니다. 이 함수는 들어오는 HTTP 요청을 처" -"리하여 Django 관리자 인터페이스 인덱스 페이지로 리디렉션합니다. HTTP 리디렉션" -"을 처리하기 위해 Django의 `redirect` 함수를 사용합니다." +"요청을 관리자 색인 페이지로 리디렉션합니다. 이 함수는 들어오는 HTTP 요청을 처리하여 Django 관리자 인터페이스 인덱스 페이지로 " +"리디렉션합니다. HTTP 리디렉션을 처리하기 위해 Django의 `redirect` 함수를 사용합니다." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "현재 버전의 eVibes를 반환합니다." +msgid "Returns current version of the Schon. " +msgstr "현재 버전의 Schon를 반환합니다." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3163,28 +3107,27 @@ msgstr "대시보드에 대한 사용자 지정 변수를 반환합니다." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes 관련 작업을 관리하기 위한 뷰셋을 정의합니다. EvibesViewSet 클래스는 " -"ModelViewSet에서 상속되며 Evibes 엔티티에 대한 액션 및 연산을 처리하는 기능" -"을 제공합니다. 여기에는 현재 작업을 기반으로 하는 동적 직렬화기 클래스, 사용" -"자 지정 가능한 권한 및 렌더링 형식에 대한 지원이 포함됩니다." +"schon 관련 작업을 관리하기 위한 뷰셋을 정의합니다. SchonViewSet 클래스는 ModelViewSet에서 상속되며 schon " +"엔티티에 대한 액션 및 연산을 처리하는 기능을 제공합니다. 여기에는 현재 작업을 기반으로 하는 동적 직렬화기 클래스, 사용자 지정 가능한" +" 권한 및 렌더링 형식에 대한 지원이 포함됩니다." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"속성 그룹 객체를 관리하기 위한 뷰셋을 나타냅니다. 데이터의 필터링, 직렬화, 검" -"색 등 AttributeGroup과 관련된 작업을 처리합니다. 이 클래스는 애플리케이션의 " -"API 계층의 일부이며 AttributeGroup 데이터에 대한 요청 및 응답을 처리하는 표준" -"화된 방법을 제공합니다." +"속성 그룹 객체를 관리하기 위한 뷰셋을 나타냅니다. 데이터의 필터링, 직렬화, 검색 등 AttributeGroup과 관련된 작업을 " +"처리합니다. 이 클래스는 애플리케이션의 API 계층의 일부이며 AttributeGroup 데이터에 대한 요청 및 응답을 처리하는 표준화된" +" 방법을 제공합니다." #: engine/core/viewsets.py:179 msgid "" @@ -3195,24 +3138,21 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"애플리케이션 내에서 속성 개체와 관련된 작업을 처리합니다. 속성 데이터와 상호 " -"작용할 수 있는 API 엔드포인트 세트를 제공합니다. 이 클래스는 속성 개체의 쿼" -"리, 필터링 및 직렬화를 관리하여 특정 필드별로 필터링하거나 요청에 따라 단순화" -"된 정보와 상세한 정보를 검색하는 등 반환되는 데이터를 동적으로 제어할 수 있도" -"록 합니다." +"애플리케이션 내에서 속성 개체와 관련된 작업을 처리합니다. 속성 데이터와 상호 작용할 수 있는 API 엔드포인트 세트를 제공합니다. 이 " +"클래스는 속성 개체의 쿼리, 필터링 및 직렬화를 관리하여 특정 필드별로 필터링하거나 요청에 따라 단순화된 정보와 상세한 정보를 검색하는 " +"등 반환되는 데이터를 동적으로 제어할 수 있도록 합니다." #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"속성값 객체를 관리하기 위한 뷰셋입니다. 이 뷰셋은 AttributeValue 객체를 나" -"열, 검색, 생성, 업데이트 및 삭제하기 위한 기능을 제공합니다. 이 뷰셋은 장고 " -"REST 프레임워크의 뷰셋 메커니즘과 통합되며 다양한 작업에 적절한 직렬화기를 사" -"용합니다. 필터링 기능은 DjangoFilterBackend를 통해 제공됩니다." +"속성값 객체를 관리하기 위한 뷰셋입니다. 이 뷰셋은 AttributeValue 객체를 나열, 검색, 생성, 업데이트 및 삭제하기 위한 " +"기능을 제공합니다. 이 뷰셋은 장고 REST 프레임워크의 뷰셋 메커니즘과 통합되며 다양한 작업에 적절한 직렬화기를 사용합니다. 필터링 " +"기능은 DjangoFilterBackend를 통해 제공됩니다." #: engine/core/viewsets.py:217 msgid "" @@ -3222,10 +3162,9 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"카테고리 관련 작업에 대한 보기를 관리합니다. CategoryViewSet 클래스는 시스템" -"에서 카테고리 모델과 관련된 작업을 처리하는 역할을 담당합니다. 카테고리 데이" -"터 검색, 필터링 및 직렬화를 지원합니다. 또한 이 뷰 집합은 권한이 부여된 사용" -"자만 특정 데이터에 액세스할 수 있도록 권한을 적용합니다." +"카테고리 관련 작업에 대한 보기를 관리합니다. CategoryViewSet 클래스는 시스템에서 카테고리 모델과 관련된 작업을 처리하는 " +"역할을 담당합니다. 카테고리 데이터 검색, 필터링 및 직렬화를 지원합니다. 또한 이 뷰 집합은 권한이 부여된 사용자만 특정 데이터에 " +"액세스할 수 있도록 권한을 적용합니다." #: engine/core/viewsets.py:346 msgid "" @@ -3234,25 +3173,23 @@ msgid "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"브랜드 인스턴스를 관리하기 위한 뷰셋을 나타냅니다. 이 클래스는 브랜드 객체를 " -"쿼리, 필터링 및 직렬화하기 위한 기능을 제공합니다. 이 클래스는 장고의 뷰셋 프" -"레임워크를 사용하여 브랜드 객체에 대한 API 엔드포인트의 구현을 간소화합니다." +"브랜드 인스턴스를 관리하기 위한 뷰셋을 나타냅니다. 이 클래스는 브랜드 객체를 쿼리, 필터링 및 직렬화하기 위한 기능을 제공합니다. 이 " +"클래스는 장고의 뷰셋 프레임워크를 사용하여 브랜드 객체에 대한 API 엔드포인트의 구현을 간소화합니다." #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" -"시스템에서 `Product` 모델과 관련된 작업을 관리합니다. 이 클래스는 필터링, 직" -"렬화 및 특정 인스턴스에 대한 작업을 포함하여 제품을 관리하기 위한 뷰셋을 제공" -"합니다. 이 클래스는 공통 기능을 사용하기 위해 `EvibesViewSet`에서 확장되며 " -"RESTful API 작업을 위해 Django REST 프레임워크와 통합됩니다. 제품 세부 정보 " -"검색, 권한 적용, 제품의 관련 피드백에 액세스하는 메서드가 포함되어 있습니다." +"시스템에서 `Product` 모델과 관련된 작업을 관리합니다. 이 클래스는 필터링, 직렬화 및 특정 인스턴스에 대한 작업을 포함하여 " +"제품을 관리하기 위한 뷰셋을 제공합니다. 이 클래스는 공통 기능을 사용하기 위해 `SchonViewSet`에서 확장되며 RESTful " +"API 작업을 위해 Django REST 프레임워크와 통합됩니다. 제품 세부 정보 검색, 권한 적용, 제품의 관련 피드백에 액세스하는 " +"메서드가 포함되어 있습니다." #: engine/core/viewsets.py:605 msgid "" @@ -3262,56 +3199,49 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"벤더 객체를 관리하기 위한 뷰셋을 나타냅니다. 이 뷰셋을 통해 벤더 데이터를 가" -"져오고, 필터링하고, 직렬화할 수 있습니다. 다양한 작업을 처리하는 데 사용되는 " -"쿼리 집합, 필터 구성 및 직렬화기 클래스를 정의합니다. 이 클래스의 목적은 " -"Django REST 프레임워크를 통해 공급업체 관련 리소스에 대한 간소화된 액세스를 " -"제공하는 것입니다." +"벤더 객체를 관리하기 위한 뷰셋을 나타냅니다. 이 뷰셋을 통해 벤더 데이터를 가져오고, 필터링하고, 직렬화할 수 있습니다. 다양한 작업을" +" 처리하는 데 사용되는 쿼리 집합, 필터 구성 및 직렬화기 클래스를 정의합니다. 이 클래스의 목적은 Django REST 프레임워크를 " +"통해 공급업체 관련 리소스에 대한 간소화된 액세스를 제공하는 것입니다." #: engine/core/viewsets.py:625 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"피드백 개체를 처리하는 뷰 집합의 표현입니다. 이 클래스는 세부 정보 나열, 필터" -"링 및 검색을 포함하여 피드백 개체에 관련된 작업을 관리합니다. 이 뷰 세트의 목" -"적은 다양한 작업에 대해 서로 다른 직렬화기를 제공하고 접근 가능한 피드백 객체" -"에 대한 권한 기반 처리를 구현하는 것입니다. 이 클래스는 기본 `EvibesViewSet`" -"을 확장하고 데이터 쿼리를 위해 Django의 필터링 시스템을 사용합니다." +"피드백 개체를 처리하는 뷰 집합의 표현입니다. 이 클래스는 세부 정보 나열, 필터링 및 검색을 포함하여 피드백 개체에 관련된 작업을 " +"관리합니다. 이 뷰 세트의 목적은 다양한 작업에 대해 서로 다른 직렬화기를 제공하고 접근 가능한 피드백 객체에 대한 권한 기반 처리를 " +"구현하는 것입니다. 이 클래스는 기본 `SchonViewSet`을 확장하고 데이터 쿼리를 위해 Django의 필터링 시스템을 사용합니다." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"주문 및 관련 작업을 관리하기 위한 뷰셋입니다. 이 클래스는 주문 객체를 검색, " -"수정, 관리하는 기능을 제공합니다. 여기에는 제품 추가 또는 제거, 등록 및 미등" -"록 사용자에 대한 구매 수행, 현재 인증된 사용자의 보류 중인 주문 검색 등 주문 " -"작업을 처리하기 위한 다양한 엔드포인트가 포함되어 있습니다. 뷰셋은 수행되는 " -"특정 작업에 따라 여러 직렬화기를 사용하며 주문 데이터와 상호 작용하는 동안 그" -"에 따라 권한을 적용합니다." +"주문 및 관련 작업을 관리하기 위한 뷰셋입니다. 이 클래스는 주문 객체를 검색, 수정, 관리하는 기능을 제공합니다. 여기에는 제품 추가 " +"또는 제거, 등록 및 미등록 사용자에 대한 구매 수행, 현재 인증된 사용자의 보류 중인 주문 검색 등 주문 작업을 처리하기 위한 다양한 " +"엔드포인트가 포함되어 있습니다. 뷰셋은 수행되는 특정 작업에 따라 여러 직렬화기를 사용하며 주문 데이터와 상호 작용하는 동안 그에 따라 " +"권한을 적용합니다." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"주문 제품 엔티티를 관리하기 위한 뷰셋을 제공합니다. 이 뷰셋을 사용하면 주문 " -"제품 모델에 특정한 CRUD 작업 및 사용자 지정 작업을 수행할 수 있습니다. 여기에" -"는 요청된 작업을 기반으로 필터링, 권한 확인 및 직렬화기 전환이 포함됩니다. 또" -"한 주문 제품 인스턴스에 대한 피드백 처리를 위한 세부 작업도 제공합니다." +"주문 제품 엔티티를 관리하기 위한 뷰셋을 제공합니다. 이 뷰셋을 사용하면 주문 제품 모델에 특정한 CRUD 작업 및 사용자 지정 작업을 " +"수행할 수 있습니다. 여기에는 요청된 작업을 기반으로 필터링, 권한 확인 및 직렬화기 전환이 포함됩니다. 또한 주문 제품 인스턴스에 대한" +" 피드백 처리를 위한 세부 작업도 제공합니다." #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " @@ -3321,8 +3251,7 @@ msgstr "애플리케이션에서 제품 이미지와 관련된 작업을 관리 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "" -"다양한 API 작업을 통해 프로모션 코드 인스턴스의 검색 및 처리를 관리합니다." +msgstr "다양한 API 작업을 통해 프로모션 코드 인스턴스의 검색 및 처리를 관리합니다." #: engine/core/viewsets.py:1019 msgid "Represents a view set for managing promotions. " @@ -3336,18 +3265,15 @@ msgstr "시스템에서 주식 데이터와 관련된 작업을 처리합니다. msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"위시리스트 작업을 관리하기 위한 뷰셋입니다. 위시리스트뷰셋은 사용자의 위시리" -"스트와 상호 작용할 수 있는 엔드포인트를 제공하여 위시리스트 내의 제품을 검" -"색, 수정 및 사용자 지정할 수 있도록 합니다. 이 뷰셋은 위시리스트 제품에 대한 " -"추가, 제거 및 대량 작업과 같은 기능을 용이하게 합니다. 명시적인 권한이 부여되" -"지 않는 한 사용자가 자신의 위시리스트만 관리할 수 있도록 권한 검사가 통합되" -"어 있습니다." +"위시리스트 작업을 관리하기 위한 뷰셋입니다. 위시리스트뷰셋은 사용자의 위시리스트와 상호 작용할 수 있는 엔드포인트를 제공하여 위시리스트 " +"내의 제품을 검색, 수정 및 사용자 지정할 수 있도록 합니다. 이 뷰셋은 위시리스트 제품에 대한 추가, 제거 및 대량 작업과 같은 기능을" +" 용이하게 합니다. 명시적인 권한이 부여되지 않는 한 사용자가 자신의 위시리스트만 관리할 수 있도록 권한 검사가 통합되어 있습니다." #: engine/core/viewsets.py:1183 msgid "" @@ -3357,10 +3283,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"이 클래스는 `주소` 객체를 관리하기 위한 뷰셋 기능을 제공합니다. 주소 뷰셋 클" -"래스는 주소 엔티티와 관련된 CRUD 작업, 필터링 및 사용자 정의 작업을 가능하게 " -"합니다. 여기에는 다양한 HTTP 메서드, 직렬화기 재정의, 요청 컨텍스트에 따른 권" -"한 처리를 위한 특수 동작이 포함되어 있습니다." +"이 클래스는 `주소` 객체를 관리하기 위한 뷰셋 기능을 제공합니다. 주소 뷰셋 클래스는 주소 엔티티와 관련된 CRUD 작업, 필터링 및 " +"사용자 정의 작업을 가능하게 합니다. 여기에는 다양한 HTTP 메서드, 직렬화기 재정의, 요청 컨텍스트에 따른 권한 처리를 위한 특수 " +"동작이 포함되어 있습니다." #: engine/core/viewsets.py:1254 #, python-brace-format @@ -3375,7 +3300,6 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"애플리케이션 내에서 제품 태그와 관련된 작업을 처리합니다. 이 클래스는 제품 태" -"그 객체를 검색, 필터링 및 직렬화하기 위한 기능을 제공합니다. 지정된 필터 백엔" -"드를 사용하여 특정 속성에 대한 유연한 필터링을 지원하며 수행 중인 작업에 따" -"라 다양한 직렬화기를 동적으로 사용합니다." +"애플리케이션 내에서 제품 태그와 관련된 작업을 처리합니다. 이 클래스는 제품 태그 객체를 검색, 필터링 및 직렬화하기 위한 기능을 " +"제공합니다. 지정된 필터 백엔드를 사용하여 특정 속성에 대한 유연한 필터링을 지원하며 수행 중인 작업에 따라 다양한 직렬화기를 동적으로 " +"사용합니다." diff --git a/engine/core/locale/nl_NL/LC_MESSAGES/django.mo b/engine/core/locale/nl_NL/LC_MESSAGES/django.mo index c87e83d6..7a202079 100644 Binary files a/engine/core/locale/nl_NL/LC_MESSAGES/django.mo and b/engine/core/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/nl_NL/LC_MESSAGES/django.po b/engine/core/locale/nl_NL/LC_MESSAGES/django.po index c919510c..7eff3454 100644 --- a/engine/core/locale/nl_NL/LC_MESSAGES/django.po +++ b/engine/core/locale/nl_NL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "Is actief" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Als false is ingesteld, kan dit object niet worden gezien door gebruikers " "zonder de benodigde toestemming" @@ -74,8 +75,8 @@ msgstr "Tijdstempels" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Activeer geselecteerde %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Geselecteerde %(verbose_name_plural)s activeren" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -83,21 +84,21 @@ msgstr "Geselecteerde items zijn geactiveerd!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Deactiveer geselecteerd %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Geselecteerde %(verbose_name_plural)s deactiveren" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Geselecteerde items zijn gedeactiveerd!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attribuut Waarde" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attribuutwaarden" @@ -117,12 +118,12 @@ msgstr "Voorraad" msgid "stocks" msgstr "Aandelen" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Product bestellen" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Producten bestellen" @@ -130,7 +131,32 @@ msgstr "Producten bestellen" msgid "children" msgstr "Kinderen" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Heeft afbeeldingen" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" +"Exporteer geselecteerde %(verbose_name_plural)s naar feeds van marktplaatsen" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Geselecteerde %(verbose_name_plural)s zijn gemarkeerd voor export." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Verwijder %(verbose_name_plural)s uit de feeds van marktplaatsen" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Geselecteerde %(verbose_name_plural)s zijn verboden voor export." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Config" @@ -154,7 +180,8 @@ msgstr "Geleverd" msgid "canceled" msgstr "Geannuleerd" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Mislukt" @@ -206,8 +233,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Alleen een sleutel gebruiken om toegestane gegevens uit de cache te lezen.\n" -"Sleutel, gegevens en time-out met verificatie toepassen om gegevens naar de " -"cache te schrijven." +"Sleutel, gegevens en time-out met verificatie toepassen om gegevens naar de cache te schrijven." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -273,7 +299,8 @@ msgstr "" "opslaan" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Enkele velden van een bestaande attribuutgroep herschrijven door niet-" "wijzigbare velden op te slaan" @@ -328,7 +355,8 @@ msgstr "" "attributen worden opgeslagen" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande attribuutwaarde door niet-" "wijzigbare velden op te slaan" @@ -374,7 +402,8 @@ msgstr "SEO Meta momentopname" #: engine/core/docs/drf/viewsets.py:281 msgid "returns a snapshot of the category's SEO meta data" msgstr "" -"Geeft als resultaat een momentopname van de SEO-metagegevens van de categorie" +"Geeft als resultaat een momentopname van de SEO-metagegevens van de " +"categorie" #: engine/core/docs/drf/viewsets.py:302 msgid "list all orders (simple view)" @@ -383,15 +412,16 @@ msgstr "Alle categorieën weergeven (eenvoudige weergave)" #: engine/core/docs/drf/viewsets.py:303 msgid "for non-staff users, only their own orders are returned." msgstr "" -"Voor niet-personeelsleden worden alleen hun eigen bestellingen geretourneerd." +"Voor niet-personeelsleden worden alleen hun eigen bestellingen " +"geretourneerd." #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Hoofdlettergevoelig substring zoeken in human_readable_id, order_products." -"product.name en order_products.product.partnumber" +"Hoofdlettergevoelig substring zoeken in human_readable_id, " +"order_products.product.name en order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -424,13 +454,13 @@ msgstr "Filter op bestelstatus (hoofdlettergevoelige substringmatch)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Sorteer op een van: uuid, human_readable_id, user_email, gebruiker, status, " -"gemaakt, gewijzigd, buy_time, willekeurig. Voorvoegsel met '-' voor aflopend " -"(bijv. '-buy_time')." +"gemaakt, gewijzigd, buy_time, willekeurig. Voorvoegsel met '-' voor aflopend" +" (bijv. '-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -491,7 +521,8 @@ msgstr "een bestelling kopen zonder een account aan te maken" #: engine/core/docs/drf/viewsets.py:439 msgid "finalizes the order purchase for a non-registered user." msgstr "" -"Rondt de aankoop van de bestelling af voor een niet-geregistreerde gebruiker." +"Rondt de aankoop van de bestelling af voor een niet-geregistreerde " +"gebruiker." #: engine/core/docs/drf/viewsets.py:450 msgid "add product to order" @@ -635,28 +666,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filter op een of meer attribuutnaam-/waardeparen. \n" "- **Syntaxis**: `attr_name=methode-waarde[;attr2=methode2-waarde2]...`\n" -"- **Methodes** (standaard op `icontains` indien weggelaten): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- Waarde typen**: JSON wordt eerst geprobeerd (zodat je lijsten/dicten kunt " -"doorgeven), `true`/`false` voor booleans, integers, floats; anders behandeld " -"als string. \n" -"- **Base64**: prefix met `b64-` om URL-veilige base64-encodering van de ruwe " -"waarde. \n" +"- **Methodes** (standaard op `icontains` indien weggelaten): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- Waarde typen**: JSON wordt eerst geprobeerd (zodat je lijsten/dicten kunt doorgeven), `true`/`false` voor booleans, integers, floats; anders behandeld als string. \n" +"- **Base64**: prefix met `b64-` om URL-veilige base64-encodering van de ruwe waarde. \n" "Voorbeelden: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." @@ -671,14 +692,11 @@ msgstr "(exacte) UUID van product" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Door komma's gescheiden lijst van velden om op te sorteren. Voorvoegsel met " -"`-` voor aflopend. \n" -"**Toegestaan:** uuid, beoordeling, naam, slug, gemaakt, gewijzigd, prijs, " -"willekeurig" +"Door komma's gescheiden lijst van velden om op te sorteren. Voorvoegsel met `-` voor aflopend. \n" +"**Toegestaan:** uuid, beoordeling, naam, slug, gemaakt, gewijzigd, prijs, willekeurig" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -791,7 +809,8 @@ msgstr "alle order-productrelaties weergeven (eenvoudige weergave)" #: engine/core/docs/drf/viewsets.py:929 msgid "retrieve a single order–product relation (detailed view)" -msgstr "een enkele bestelling-productrelatie ophalen (gedetailleerde weergave)" +msgstr "" +"een enkele bestelling-productrelatie ophalen (gedetailleerde weergave)" #: engine/core/docs/drf/viewsets.py:939 msgid "create a new order–product relation" @@ -1239,8 +1258,8 @@ msgstr "Een bestelling kopen" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Stuur de attributen als de string opgemaakt als attr1=waarde1,attr2=waarde2" @@ -1261,9 +1280,9 @@ msgstr "Orderproduct {order_product_uuid} niet gevonden!" msgid "original address string provided by the user" msgstr "Originele adresstring geleverd door de gebruiker" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1279,8 +1298,8 @@ msgstr "ElasticSearch - werkt als een charme" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attributen" @@ -1318,7 +1337,8 @@ msgstr "" "filteren." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimale en maximale prijzen voor producten in deze categorie, indien " "beschikbaar." @@ -1357,7 +1377,7 @@ msgid "represents feedback from a user." msgstr "Vertegenwoordigt feedback van een gebruiker." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Meldingen" @@ -1365,7 +1385,7 @@ msgstr "Meldingen" msgid "download url for this order product if applicable" msgstr "Download url voor dit bestelproduct indien van toepassing" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1373,7 +1393,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "Een lijst met bestelde producten in deze bestelling" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Factuuradres" @@ -1401,7 +1421,7 @@ msgstr "Zijn alle producten in de bestelling digitaal" msgid "transactions for this order" msgstr "Transacties voor deze bestelling" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Bestellingen" @@ -1418,7 +1438,7 @@ msgstr "Afbeeldingen van het product" msgid "category" msgstr "Categorie" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Reacties" @@ -1459,7 +1479,7 @@ msgstr "Producten alleen beschikbaar voor persoonlijke bestellingen" msgid "discount price" msgstr "Korting" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Producten" @@ -1471,7 +1491,7 @@ msgstr "Promocodes" msgid "products on sale" msgstr "Producten te koop" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promoties" @@ -1479,7 +1499,7 @@ msgstr "Promoties" msgid "vendor" msgstr "Verkoper" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1487,11 +1507,11 @@ msgstr "Verkoper" msgid "product" msgstr "Product" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Gewenste producten" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Verlanglijst" @@ -1594,8 +1614,8 @@ msgstr "" "Vertegenwoordigt een groep attributen, die hiërarchisch kan zijn. Deze " "klasse wordt gebruikt om groepen van attributen te beheren en te " "organiseren. Een attribuutgroep kan een bovenliggende groep hebben, die een " -"hiërarchische structuur vormt. Dit kan nuttig zijn voor het categoriseren en " -"effectiever beheren van attributen in een complex systeem." +"hiërarchische structuur vormt. Dit kan nuttig zijn voor het categoriseren en" +" effectiever beheren van attributen in een complex systeem." #: engine/core/models.py:88 msgid "parent of this group" @@ -1609,7 +1629,7 @@ msgstr "Ouderattribuutgroep" msgid "attribute group's name" msgstr "Naam attribuutgroep" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attribuutgroep" @@ -1623,8 +1643,8 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"Vertegenwoordigt een verkopersentiteit die informatie over externe verkopers " -"en hun interactievereisten kan opslaan. De klasse Vendor wordt gebruikt om " +"Vertegenwoordigt een verkopersentiteit die informatie over externe verkopers" +" en hun interactievereisten kan opslaan. De klasse Vendor wordt gebruikt om " "informatie over een externe verkoper te definiëren en te beheren. Het slaat " "de naam van de verkoper op, authenticatiegegevens die nodig zijn voor " "communicatie en het opmaakpercentage dat wordt toegepast op producten die " @@ -1685,8 +1705,8 @@ msgid "" msgstr "" "Vertegenwoordigt een producttag die wordt gebruikt om producten te " "classificeren of te identificeren. De klasse ProductTag is ontworpen om " -"producten uniek te identificeren en te classificeren door een combinatie van " -"een interne tagidentifier en een gebruiksvriendelijke weergavenaam. Het " +"producten uniek te identificeren en te classificeren door een combinatie van" +" een interne tagidentifier en een gebruiksvriendelijke weergavenaam. Het " "ondersteunt bewerkingen die geëxporteerd worden door mixins en biedt " "aanpassing van metadata voor administratieve doeleinden." @@ -1744,12 +1764,12 @@ msgstr "" "Vertegenwoordigt een categorie-entiteit voor het organiseren en groeperen " "van gerelateerde items in een hiërarchische structuur. Categorieën kunnen " "hiërarchische relaties hebben met andere categorieën, waarbij ouder-kind " -"relaties worden ondersteund. De klasse bevat velden voor metadata en visuele " -"weergave, die dienen als basis voor categorie-gerelateerde functies. Deze " -"klasse wordt meestal gebruikt om productcategorieën of andere gelijksoortige " -"groeperingen binnen een applicatie te definiëren en te beheren, waarbij " -"gebruikers of beheerders de naam, beschrijving en hiërarchie van categorieën " -"kunnen specificeren en attributen zoals afbeeldingen, tags of prioriteit " +"relaties worden ondersteund. De klasse bevat velden voor metadata en visuele" +" weergave, die dienen als basis voor categorie-gerelateerde functies. Deze " +"klasse wordt meestal gebruikt om productcategorieën of andere gelijksoortige" +" groeperingen binnen een applicatie te definiëren en te beheren, waarbij " +"gebruikers of beheerders de naam, beschrijving en hiërarchie van categorieën" +" kunnen specificeren en attributen zoals afbeeldingen, tags of prioriteit " "kunnen toekennen." #: engine/core/models.py:269 @@ -1801,7 +1821,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Vertegenwoordigt een merkobject in het systeem. Deze klasse behandelt " "informatie en attributen met betrekking tot een merk, inclusief de naam, " @@ -1851,8 +1872,8 @@ msgstr "Categorieën" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1886,8 +1907,8 @@ msgstr "Verkoopprijs" msgid "the product associated with this stock entry" msgstr "Het product dat bij deze voorraadvermelding hoort" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Bijbehorend product" @@ -1988,7 +2009,7 @@ msgstr "Zorg voor een duidelijke identificerende naam voor het product" msgid "product name" msgstr "Naam product" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Voeg een gedetailleerde beschrijving van het product toe" @@ -2008,110 +2029,118 @@ msgstr "Onderdeelnummer" msgid "stock keeping unit for this product" msgstr "Voorraadhoudende eenheid voor dit product" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Of dit product naar marktplaatsen moet worden geëxporteerd" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Exporteren naar marktplaatsen" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"Vertegenwoordigt een attribuut in het systeem. Deze klasse wordt gebruikt om " -"attributen te definiëren en te beheren. Dit zijn aanpasbare stukjes data die " -"kunnen worden geassocieerd met andere entiteiten. Attributen hebben " +"Vertegenwoordigt een attribuut in het systeem. Deze klasse wordt gebruikt om" +" attributen te definiëren en te beheren. Dit zijn aanpasbare stukjes data " +"die kunnen worden geassocieerd met andere entiteiten. Attributen hebben " "geassocieerde categorieën, groepen, waardetypes en namen. Het model " "ondersteunt meerdere typen waarden, waaronder string, integer, float, " "boolean, array en object. Dit maakt dynamische en flexibele " "gegevensstructurering mogelijk." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Groep van dit kenmerk" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "String" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Integer" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Vlotter" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Booleaans" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Object" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Type waarde van het kenmerk" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Waardetype" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Naam van dit kenmerk" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Naam attribuut" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "kan worden gefilterd" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Welke attributen en waarden kunnen worden gebruikt om deze categorie te " "filteren." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribuut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Vertegenwoordigt een specifieke waarde voor een kenmerk dat is gekoppeld aan " -"een product. Het koppelt het 'kenmerk' aan een unieke 'waarde', wat een " +"Vertegenwoordigt een specifieke waarde voor een kenmerk dat is gekoppeld aan" +" een product. Het koppelt het 'kenmerk' aan een unieke 'waarde', wat een " "betere organisatie en dynamische weergave van productkenmerken mogelijk " "maakt." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribuut van deze waarde" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Het specifieke product geassocieerd met de waarde van dit kenmerk" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "De specifieke waarde voor dit kenmerk" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2122,46 +2151,46 @@ msgstr "" "weergavevolgorde te bepalen. Het bevat ook een toegankelijkheidsfunctie met " "alternatieve tekst voor de afbeeldingen." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Geef alternatieve tekst voor de afbeelding voor toegankelijkheid" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Alt-tekst afbeelding" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Upload het afbeeldingsbestand voor dit product" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Product afbeelding" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Bepaalt de volgorde waarin afbeeldingen worden weergegeven" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioriteit weergeven" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Het product dat deze afbeelding vertegenwoordigt" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Product afbeeldingen" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Vertegenwoordigt een promotiecampagne voor producten met een korting. Deze " "klasse wordt gebruikt om promotiecampagnes te definiëren en beheren die een " @@ -2171,39 +2200,39 @@ msgstr "" "integreert met de productcatalogus om de betreffende artikelen in de " "campagne te bepalen." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Kortingspercentage voor de geselecteerde producten" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Kortingspercentage" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Geef deze promotie een unieke naam" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Naam promotie" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Promotie beschrijving" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Selecteer welke producten onder deze promotie vallen" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Meegeleverde producten" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promotie" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2216,30 +2245,30 @@ msgstr "" "toevoegen en verwijderen van producten, maar ook bewerkingen voor het " "toevoegen en verwijderen van meerdere producten tegelijk." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Producten die de gebruiker als gewenst heeft gemarkeerd" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Gebruiker die eigenaar is van deze verlanglijst" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Eigenaar verlanglijstje" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Verlanglijst" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Vertegenwoordigt een documentair record gekoppeld aan een product. Deze " "klasse wordt gebruikt om informatie op te slaan over documentaires met " @@ -2249,92 +2278,92 @@ msgstr "" "Het breidt functionaliteit uit van specifieke mixins en biedt extra " "aangepaste functies." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentaire" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentaires" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Onopgelost" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Vertegenwoordigt een adresentiteit met locatiegegevens en associaties met " "een gebruiker. Biedt functionaliteit voor het opslaan van geografische en " "adresgegevens, evenals integratie met geocoderingsservices. Deze klasse is " -"ontworpen om gedetailleerde adresgegevens op te slaan, inclusief componenten " -"als straat, stad, regio, land en geolocatie (lengtegraad en breedtegraad). " +"ontworpen om gedetailleerde adresgegevens op te slaan, inclusief componenten" +" als straat, stad, regio, land en geolocatie (lengtegraad en breedtegraad). " "Het ondersteunt integratie met geocodering API's, waardoor de opslag van " "ruwe API antwoorden voor verdere verwerking of inspectie mogelijk wordt. De " "klasse maakt het ook mogelijk om een adres met een gebruiker te associëren, " "wat het verwerken van gepersonaliseerde gegevens vergemakkelijkt." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Adresregel voor de klant" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adresregel" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Straat" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "District" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Stad" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Regio" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postcode" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Land" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocatie Punt (lengtegraad, breedtegraad)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Volledig JSON-antwoord van geocoder voor dit adres" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Opgeslagen JSON-antwoord van de geocoderingsservice" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adres" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adressen" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2352,97 +2381,98 @@ msgstr "" "te valideren en toe te passen op een bestelling, waarbij ervoor wordt " "gezorgd dat aan de beperkingen wordt voldaan." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unieke code die een gebruiker gebruikt om een korting te verzilveren" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Promo code identificatie" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "" "Vast kortingsbedrag dat wordt toegepast als percentage niet wordt gebruikt" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Vast kortingsbedrag" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" "Kortingspercentage dat wordt toegepast als het vaste bedrag niet wordt " "gebruikt" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Kortingspercentage" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Tijdstempel wanneer de promocode verloopt" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Geldigheidsduur einde" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Tijdstempel vanaf wanneer deze promocode geldig is" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Begin geldigheidsduur" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -"Tijdstempel wanneer de promocode werd gebruikt, leeg indien nog niet gebruikt" +"Tijdstempel wanneer de promocode werd gebruikt, leeg indien nog niet " +"gebruikt" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Gebruik tijdstempel" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Gebruiker toegewezen aan deze promocode indien van toepassing" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Toegewezen gebruiker" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Kortingscode" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Actiecodes" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"Er moet slechts één type korting worden gedefinieerd (bedrag of percentage), " -"maar niet beide of geen van beide." +"Er moet slechts één type korting worden gedefinieerd (bedrag of percentage)," +" maar niet beide of geen van beide." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promocode is al gebruikt" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ongeldig kortingstype voor promocode {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2455,142 +2485,142 @@ msgstr "" "bijgewerkt. De functionaliteit ondersteunt ook het beheer van de producten " "in de levenscyclus van de bestelling." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Het factuuradres dat voor deze bestelling is gebruikt" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Optionele promotiecode toegepast op deze bestelling" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Kortingscode toegepast" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Het verzendadres dat voor deze bestelling is gebruikt" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Verzendadres" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Huidige status van de order in zijn levenscyclus" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Bestelstatus" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON-structuur van meldingen om weer te geven aan gebruikers, in admin UI " "wordt de tabelweergave gebruikt" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON-weergave van bestelattributen voor deze bestelling" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "De gebruiker die de bestelling heeft geplaatst" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Gebruiker" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "De tijdstempel waarop de bestelling is afgerond" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Tijd kopen" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Een menselijk leesbare identificatiecode voor de bestelling" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "menselijk leesbare ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Bestel" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Een gebruiker mag maar één lopende order tegelijk hebben!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "U kunt geen producten toevoegen aan een bestelling die niet in behandeling " "is." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "U kunt geen inactieve producten toevoegen aan uw bestelling" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Je kunt niet meer producten toevoegen dan er op voorraad zijn" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -"U kunt geen producten verwijderen uit een bestelling die niet in behandeling " -"is." +"U kunt geen producten verwijderen uit een bestelling die niet in behandeling" +" is." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} bestaat niet met query <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promocode bestaat niet" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "Je kunt alleen fysieke producten kopen met opgegeven verzendadres!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adres bestaat niet" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "U kunt op dit moment niet kopen. Probeer het over een paar minuten nog eens." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Ongeldige krachtwaarde" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Je kunt geen lege bestelling kopen!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" -"U kunt geen producten verwijderen uit een bestelling die niet in behandeling " -"is." +"U kunt geen producten verwijderen uit een bestelling die niet in behandeling" +" is." -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Een gebruiker zonder saldo kan niet kopen met saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Onvoldoende fondsen om de bestelling te voltooien" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2598,14 +2628,15 @@ msgstr "" "u niet kunt kopen zonder registratie, geef dan de volgende informatie: " "klantnaam, e-mail klant, telefoonnummer klant" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -"Ongeldige betalingsmethode: {payment_method} van {available_payment_methods}!" +"Ongeldige betalingsmethode: {payment_method} van " +"{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2614,40 +2645,41 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "Beheert gebruikersfeedback voor producten. Deze klasse is ontworpen om " -"feedback van gebruikers over specifieke producten die ze hebben gekocht vast " -"te leggen en op te slaan. De klasse bevat attributen voor het opslaan van " +"feedback van gebruikers over specifieke producten die ze hebben gekocht vast" +" te leggen en op te slaan. De klasse bevat attributen voor het opslaan van " "opmerkingen van gebruikers, een verwijzing naar het betreffende product in " "de bestelling en een door de gebruiker toegekende beoordeling. De klasse " "gebruikt databasevelden om feedbackgegevens effectief te modelleren en te " "beheren." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Opmerkingen van gebruikers over hun ervaring met het product" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Reacties" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Verwijst naar het specifieke product in een bestelling waar deze feedback " "over gaat" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Gerelateerd product bestellen" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Door de gebruiker toegekende waardering voor het product" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Productbeoordeling" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2667,120 +2699,120 @@ msgstr "" "het producttegoed of het toevoegen van feedback. Dit model biedt ook " "methoden en eigenschappen die bedrijfslogica ondersteunen, zoals het " "berekenen van de totaalprijs of het genereren van een download-URL voor " -"digitale producten. Het model integreert met de modellen Order en Product en " -"slaat een verwijzing ernaar op." +"digitale producten. Het model integreert met de modellen Order en Product en" +" slaat een verwijzing ernaar op." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "De prijs die de klant bij aankoop voor dit product heeft betaald" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Aankoopprijs bij bestelling" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Interne opmerkingen voor beheerders over dit bestelde product" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Interne opmerkingen" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Meldingen van gebruikers" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON weergave van de attributen van dit item" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Geordende producteigenschappen" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Verwijzing naar de bovenliggende bestelling die dit product bevat" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Ouderlijk bevel" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Het specifieke product dat bij deze bestelregel hoort" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Hoeveelheid van dit specifieke product in de bestelling" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Hoeveelheid product" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Huidige status van dit product in de bestelling" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status productlijn" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct moet een bijbehorende order hebben!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Verkeerde actie opgegeven voor feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" -"U kunt geen producten verwijderen uit een bestelling die niet in behandeling " -"is." +"U kunt geen producten verwijderen uit een bestelling die niet in behandeling" +" is." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Naam" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL van de integratie" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Authenticatiegegevens" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Je kunt maar één standaard CRM-provider hebben" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM's" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "CRM link van bestelling" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "CRM-koppelingen voor bestellingen" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Vertegenwoordigt de downloadfunctionaliteit voor digitale activa gekoppeld " "aan bestellingen. De DigitalAssetDownload klasse biedt de mogelijkheid om " @@ -2790,11 +2822,11 @@ msgstr "" "om een URL te genereren voor het downloaden van de activa wanneer de " "bijbehorende order een voltooide status heeft." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Downloaden" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Downloads" @@ -2995,8 +3027,7 @@ msgstr "Hallo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Hartelijk dank voor uw bestelling #%(order.pk)s! We zijn blij om u te " @@ -3111,8 +3142,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Bedankt voor uw bestelling! We zijn blij om uw aankoop te bevestigen. " @@ -3149,7 +3179,8 @@ msgstr "Zowel gegevens als time-out zijn vereist" #: engine/core/utils/caching.py:52 msgid "invalid timeout value, it must be between 0 and 216000 seconds" -msgstr "Ongeldige time-outwaarde, deze moet tussen 0 en 216000 seconden liggen" +msgstr "" +"Ongeldige time-outwaarde, deze moet tussen 0 en 216000 seconden liggen" #: engine/core/utils/emailing.py:27 #, python-brace-format @@ -3219,8 +3250,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Verwerkt cachebewerkingen zoals het lezen en instellen van cachegegevens met " -"een opgegeven sleutel en time-out." +"Verwerkt cachebewerkingen zoals het lezen en instellen van cachegegevens met" +" een opgegeven sleutel en time-out." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3231,8 +3262,8 @@ msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"Handelt verzoeken af voor het verwerken en valideren van URL's van inkomende " -"POST-verzoeken." +"Handelt verzoeken af voor het verwerken en valideren van URL's van inkomende" +" POST-verzoeken." #: engine/core/views.py:273 msgid "Handles global search queries." @@ -3245,16 +3276,10 @@ msgstr "Behandelt de logica van kopen als bedrijf zonder registratie." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Handelt het downloaden af van een digitaal actief dat is gekoppeld aan een " -"bestelling.\n" -"Deze functie probeert het digitale activabestand te serveren dat zich in de " -"opslagmap van het project bevindt. Als het bestand niet wordt gevonden, " -"wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron niet " -"beschikbaar is." +"Handelt het downloaden af van een digitaal actief dat is gekoppeld aan een bestelling.\n" +"Deze functie probeert het digitale activabestand te serveren dat zich in de opslagmap van het project bevindt. Als het bestand niet wordt gevonden, wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron niet beschikbaar is." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3285,20 +3310,15 @@ msgstr "favicon niet gevonden" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handelt verzoeken af voor de favicon van een website.\n" -"Deze functie probeert het favicon-bestand te serveren dat zich in de " -"statische map van het project bevindt. Als het favicon-bestand niet wordt " -"gevonden, wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron " -"niet beschikbaar is." +"Deze functie probeert het favicon-bestand te serveren dat zich in de statische map van het project bevindt. Als het favicon-bestand niet wordt gevonden, wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron niet beschikbaar is." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Stuurt het verzoek door naar de admin-indexpagina. De functie handelt " @@ -3307,8 +3327,8 @@ msgstr "" "afhandelen van de HTTP-omleiding." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Geeft als resultaat de huidige versie van eVibes." +msgid "Returns current version of the Schon. " +msgstr "Geeft als resultaat de huidige versie van Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3321,24 +3341,25 @@ msgstr "Geeft aangepaste variabelen voor Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definieert een viewset voor het beheren van Evibes-gerelateerde handelingen. " -"De klasse EvibesViewSet erft van ModelViewSet en biedt functionaliteit voor " -"het afhandelen van acties en bewerkingen op Evibes-entiteiten. Het omvat " +"Definieert een viewset voor het beheren van schon-gerelateerde handelingen. " +"De klasse SchonViewSet erft van ModelViewSet en biedt functionaliteit voor " +"het afhandelen van acties en bewerkingen op schon-entiteiten. Het omvat " "ondersteuning voor dynamische serializer klassen op basis van de huidige " "actie, aanpasbare machtigingen, en rendering formaten." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Vertegenwoordigt een viewset voor het beheren van AttributeGroup objecten. " "Verwerkt bewerkingen met betrekking tot AttributeGroup, inclusief filteren, " @@ -3359,20 +3380,21 @@ msgstr "" "applicatie. Biedt een set API-eindpunten voor interactie met " "Attribuutgegevens. Deze klasse beheert het opvragen, filteren en seriëren " "van Attribuutobjecten, waardoor dynamische controle over de geretourneerde " -"gegevens mogelijk is, zoals filteren op specifieke velden of het ophalen van " -"gedetailleerde versus vereenvoudigde informatie afhankelijk van het verzoek." +"gegevens mogelijk is, zoals filteren op specifieke velden of het ophalen van" +" gedetailleerde versus vereenvoudigde informatie afhankelijk van het " +"verzoek." #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Een viewset voor het beheren van AttributeValue-objecten. Deze viewset biedt " -"functionaliteit voor het opsommen, ophalen, maken, bijwerken en verwijderen " -"van AttributeValue objecten. Het integreert met Django REST Framework's " +"Een viewset voor het beheren van AttributeValue-objecten. Deze viewset biedt" +" functionaliteit voor het opsommen, ophalen, maken, bijwerken en verwijderen" +" van AttributeValue objecten. Het integreert met Django REST Framework's " "viewset mechanismen en gebruikt passende serializers voor verschillende " "acties. Filtermogelijkheden worden geleverd door de DjangoFilterBackend." @@ -3388,8 +3410,8 @@ msgstr "" "CategoryViewSet is verantwoordelijk voor het afhandelen van bewerkingen met " "betrekking tot het categoriemodel in het systeem. Het ondersteunt het " "ophalen, filteren en seriëren van categoriegegevens. De viewset dwingt ook " -"rechten af om ervoor te zorgen dat alleen bevoegde gebruikers toegang hebben " -"tot specifieke gegevens." +"rechten af om ervoor te zorgen dat alleen bevoegde gebruikers toegang hebben" +" tot specifieke gegevens." #: engine/core/viewsets.py:346 msgid "" @@ -3408,7 +3430,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3416,11 +3438,10 @@ msgstr "" "Beheert bewerkingen met betrekking tot het `Product` model in het systeem. " "Deze klasse biedt een viewset voor het beheren van producten, inclusief hun " "filtering, serialisatie en bewerkingen op specifieke instanties. Het breidt " -"uit van `EvibesViewSet` om gemeenschappelijke functionaliteit te gebruiken " -"en integreert met het Django REST framework voor RESTful API operaties. " -"Bevat methoden voor het ophalen van productdetails, het toepassen van " -"machtigingen en het verkrijgen van toegang tot gerelateerde feedback over " -"een product." +"uit van `SchonViewSet` om gemeenschappelijke functionaliteit te gebruiken en" +" integreert met het Django REST framework voor RESTful API operaties. Bevat " +"methoden voor het ophalen van productdetails, het toepassen van machtigingen" +" en het verkrijgen van toegang tot gerelateerde feedback over een product." #: engine/core/viewsets.py:605 msgid "" @@ -3433,8 +3454,8 @@ msgstr "" "Vertegenwoordigt een viewset voor het beheren van Vendor-objecten. Met deze " "viewset kunnen gegevens van een verkoper worden opgehaald, gefilterd en " "geserialiseerd. Het definieert de queryset, filter configuraties, en " -"serializer klassen gebruikt om verschillende acties af te handelen. Het doel " -"van deze klasse is om gestroomlijnde toegang te bieden tot Vendor-" +"serializer klassen gebruikt om verschillende acties af te handelen. Het doel" +" van deze klasse is om gestroomlijnde toegang te bieden tot Vendor-" "gerelateerde bronnen via het Django REST framework." #: engine/core/viewsets.py:625 @@ -3442,8 +3463,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Weergave van een weergaveset die Feedback-objecten afhandelt. Deze klasse " @@ -3451,7 +3472,7 @@ msgstr "" "weergeven, filteren en ophalen van details. Het doel van deze viewset is om " "verschillende serializers voor verschillende acties te bieden en op " "toestemming gebaseerde afhandeling van toegankelijke Feedback-objecten te " -"implementeren. Het breidt de basis `EvibesViewSet` uit en maakt gebruik van " +"implementeren. Het breidt de basis `SchonViewSet` uit en maakt gebruik van " "Django's filtersysteem voor het opvragen van gegevens." #: engine/core/viewsets.py:652 @@ -3459,9 +3480,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet voor het beheren van orders en gerelateerde operaties. Deze klasse " @@ -3478,15 +3499,15 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"Biedt een viewset voor het beheren van OrderProduct-entiteiten. Deze viewset " -"maakt CRUD-bewerkingen en aangepaste acties mogelijk die specifiek zijn voor " -"het OrderProduct-model. Het omvat filteren, toestemmingscontroles en " -"serializer-omschakeling op basis van de gevraagde actie. Bovendien biedt het " -"een gedetailleerde actie voor het afhandelen van feedback op OrderProduct " +"Biedt een viewset voor het beheren van OrderProduct-entiteiten. Deze viewset" +" maakt CRUD-bewerkingen en aangepaste acties mogelijk die specifiek zijn " +"voor het OrderProduct-model. Het omvat filteren, toestemmingscontroles en " +"serializer-omschakeling op basis van de gevraagde actie. Bovendien biedt het" +" een gedetailleerde actie voor het afhandelen van feedback op OrderProduct " "instanties" #: engine/core/viewsets.py:974 @@ -3499,8 +3520,8 @@ msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -"Beheert het ophalen en afhandelen van PromoCode-instanties via verschillende " -"API-acties." +"Beheert het ophalen en afhandelen van PromoCode-instanties via verschillende" +" API-acties." #: engine/core/viewsets.py:1019 msgid "Represents a view set for managing promotions. " @@ -3515,8 +3536,8 @@ msgstr "" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3538,9 +3559,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Deze klasse biedt viewsetfunctionaliteit voor het beheren van `Adres`-" -"objecten. De klasse AddressViewSet maakt CRUD-bewerkingen, filteren en " -"aangepaste acties met betrekking tot adresentiteiten mogelijk. Het bevat " +"Deze klasse biedt viewsetfunctionaliteit voor het beheren van " +"`Adres`-objecten. De klasse AddressViewSet maakt CRUD-bewerkingen, filteren " +"en aangepaste acties met betrekking tot adresentiteiten mogelijk. Het bevat " "gespecialiseerde gedragingen voor verschillende HTTP methoden, serializer " "omzeilingen en toestemmingsafhandeling gebaseerd op de verzoekcontext." @@ -3558,8 +3579,8 @@ msgid "" "serializers based on the action being performed." msgstr "" "Behandelt bewerkingen met betrekking tot Product Tags binnen de applicatie. " -"Deze klasse biedt functionaliteit voor het ophalen, filteren en serialiseren " -"van Product Tag objecten. Het ondersteunt flexibel filteren op specifieke " +"Deze klasse biedt functionaliteit voor het ophalen, filteren en serialiseren" +" van Product Tag objecten. Het ondersteunt flexibel filteren op specifieke " "attributen met behulp van de gespecificeerde filter backend en gebruikt " "dynamisch verschillende serializers op basis van de actie die wordt " "uitgevoerd." diff --git a/engine/core/locale/no_NO/LC_MESSAGES/django.mo b/engine/core/locale/no_NO/LC_MESSAGES/django.mo index 51a52241..fd22d7c2 100644 Binary files a/engine/core/locale/no_NO/LC_MESSAGES/django.mo and b/engine/core/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/no_NO/LC_MESSAGES/django.po b/engine/core/locale/no_NO/LC_MESSAGES/django.po index 9132e3b9..d8a2f9e5 100644 --- a/engine/core/locale/no_NO/LC_MESSAGES/django.po +++ b/engine/core/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -28,7 +28,8 @@ msgstr "Er aktiv" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Hvis dette objektet er satt til false, kan det ikke ses av brukere uten " "nødvendig tillatelse" @@ -75,7 +76,7 @@ msgstr "Tidsstempler" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Aktiver valgt %(verbose_name_plural)s" #: engine/core/admin.py:166 @@ -84,7 +85,7 @@ msgstr "Utvalgte elementer har blitt aktivert!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "Deaktiver valgt %(verbose_name_plural)s" #: engine/core/admin.py:184 @@ -92,13 +93,13 @@ msgid "selected items have been deactivated." msgstr "Utvalgte elementer har blitt deaktivert!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attributtverdi" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attributtverdier" @@ -118,12 +119,12 @@ msgstr "Lager" msgid "stocks" msgstr "Aksjer" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Bestill produkt" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Bestill produkter" @@ -131,7 +132,31 @@ msgstr "Bestill produkter" msgid "children" msgstr "Barn" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Har bilder" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Eksporter valgt %(verbose_name_plural)s til markedsplassers feeds" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Utvalgte %(verbose_name_plural)s er merket for eksport." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Utelukk valgt %(verbose_name_plural)s fra markedsplassers feeds" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Utvalgte %(verbose_name_plural)s er forbudt å eksportere." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfigurer" @@ -155,7 +180,8 @@ msgstr "Leveres" msgid "canceled" msgstr "Avlyst" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Mislyktes" @@ -193,8 +219,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"OpenApi3-skjema for dette API-et. Format kan velges via innholdsforhandling. " -"Språk kan velges både med Accept-Language og spørringsparameteren." +"OpenApi3-skjema for dette API-et. Format kan velges via innholdsforhandling." +" Språk kan velges både med Accept-Language og spørringsparameteren." #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 msgid "cache I/O" @@ -206,8 +232,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Bruk bare en nøkkel for å lese tillatte data fra hurtigbufferen.\n" -"Bruk nøkkel, data og tidsavbrudd med autentisering for å skrive data til " -"hurtigbufferen." +"Bruk nøkkel, data og tidsavbrudd med autentisering for å skrive data til hurtigbufferen." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -272,7 +297,8 @@ msgstr "" "attributter" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende attributtgruppe for å lagre ikke-" "redigerbare felt" @@ -327,7 +353,8 @@ msgstr "" "attributter" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende attributtverdi og lagre ikke-" "redigerbare felt" @@ -384,8 +411,8 @@ msgstr "For ikke-ansatte brukere returneres bare deres egne bestillinger." #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Søk etter store og små bokstaver på tvers av human_readable_id, " "order_products.product.name og order_products.product.partnumber" @@ -420,13 +447,13 @@ msgstr "Filtrer etter ordrestatus (skiller mellom store og små bokstaver)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Bestill etter en av: uuid, human_readable_id, user_email, user, status, " -"created, modified, buy_time, random. Prefiks med '-' for synkende rekkefølge " -"(f.eks. '-buy_time')." +"created, modified, buy_time, random. Prefiks med '-' for synkende rekkefølge" +" (f.eks. '-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -497,8 +524,8 @@ msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"Legger til et produkt i en bestilling ved hjelp av de angitte `product_uuid` " -"og `attributtene`." +"Legger til et produkt i en bestilling ved hjelp av de angitte `product_uuid`" +" og `attributtene`." #: engine/core/docs/drf/viewsets.py:461 msgid "add a list of products to order, quantities will not count" @@ -598,7 +625,8 @@ msgstr "Fjern et produkt fra ønskelisten" #: engine/core/docs/drf/viewsets.py:568 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -"Fjerner et produkt fra en ønskeliste ved hjelp av den angitte `product_uuid`." +"Fjerner et produkt fra en ønskeliste ved hjelp av den angitte " +"`product_uuid`." #: engine/core/docs/drf/viewsets.py:577 msgid "add many products to wishlist" @@ -625,28 +653,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrer etter ett eller flere attributtnavn/verdipar. \n" "- **Syntaks**: `attr_name=metode-verdi[;attr2=metode2-verdi2]...`.\n" -"- **Metoder** (standardinnstilling er `icontains` hvis utelatt): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- **Vertyping av verdi**: JSON forsøkes først (slik at du kan sende lister/" -"dikter), `true`/`false` for booleans, heltall, floats; ellers behandlet som " -"streng. \n" -"- **Base64**: prefiks med `b64-` for URL-sikker base64-koding av " -"råverdien. \n" +"- **Metoder** (standardinnstilling er `icontains` hvis utelatt): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- **Vertyping av verdi**: JSON forsøkes først (slik at du kan sende lister/dikter), `true`/`false` for booleans, heltall, floats; ellers behandlet som streng. \n" +"- **Base64**: prefiks med `b64-` for URL-sikker base64-koding av råverdien. \n" "Eksempler: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-beskrivelse=icontains-aGVhdC1jb2xk`" @@ -661,12 +679,10 @@ msgstr "(nøyaktig) Produkt UUID" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Kommaseparert liste over felt som skal sorteres etter. Prefiks med `-` for " -"synkende sortering. \n" +"Kommaseparert liste over felt som skal sorteres etter. Prefiks med `-` for synkende sortering. \n" "**Tillatt:** uuid, vurdering, navn, slug, opprettet, endret, pris, tilfeldig" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -1223,8 +1239,8 @@ msgstr "Kjøp en ordre" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Send attributtene som en streng formatert som attr1=verdi1,attr2=verdi2" @@ -1245,9 +1261,9 @@ msgstr "Bestill produkt {order_product_uuid} ikke funnet!" msgid "original address string provided by the user" msgstr "Opprinnelig adressestreng oppgitt av brukeren" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1263,8 +1279,8 @@ msgstr "ElasticSearch - fungerer som en drøm" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Egenskaper" @@ -1298,10 +1314,12 @@ msgstr "Påslag i prosent" #: engine/core/graphene/object_types.py:224 msgid "which attributes and values can be used for filtering this category." msgstr "" -"Hvilke attributter og verdier som kan brukes til å filtrere denne kategorien." +"Hvilke attributter og verdier som kan brukes til å filtrere denne " +"kategorien." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimums- og maksimumspriser for produkter i denne kategorien, hvis " "tilgjengelig." @@ -1340,7 +1358,7 @@ msgid "represents feedback from a user." msgstr "Representerer tilbakemeldinger fra en bruker." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Varsler" @@ -1348,7 +1366,7 @@ msgstr "Varsler" msgid "download url for this order product if applicable" msgstr "Last ned url for dette bestillingsproduktet, hvis aktuelt" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Tilbakemeldinger" @@ -1356,7 +1374,7 @@ msgstr "Tilbakemeldinger" msgid "a list of order products in this order" msgstr "En liste over bestillingsprodukter i denne rekkefølgen" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Faktureringsadresse" @@ -1384,7 +1402,7 @@ msgstr "Er alle produktene i bestillingen digitale" msgid "transactions for this order" msgstr "Transaksjoner for denne bestillingen" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Bestillinger" @@ -1401,7 +1419,7 @@ msgstr "Bilder av produktet" msgid "category" msgstr "Kategori" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Tilbakemeldinger" @@ -1442,7 +1460,7 @@ msgstr "Produkter kun tilgjengelig for personlige bestillinger" msgid "discount price" msgstr "Rabattert pris" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produkter" @@ -1454,7 +1472,7 @@ msgstr "Promokoder" msgid "products on sale" msgstr "Produkter på salg" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Kampanjer" @@ -1462,7 +1480,7 @@ msgstr "Kampanjer" msgid "vendor" msgstr "Leverandør" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1470,11 +1488,11 @@ msgstr "Leverandør" msgid "product" msgstr "Produkt" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produkter på ønskelisten" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Ønskelister" @@ -1513,8 +1531,7 @@ msgstr "Telefonnummer til selskapet" #: engine/core/graphene/object_types.py:761 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"\"e-post fra\", noen ganger må den brukes i stedet for vertsbrukerverdien" +msgstr "\"e-post fra\", noen ganger må den brukes i stedet for vertsbrukerverdien" #: engine/core/graphene/object_types.py:764 msgid "email host user" @@ -1573,11 +1590,11 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"Representerer en gruppe attributter, som kan være hierarkiske. Denne klassen " -"brukes til å administrere og organisere attributtgrupper. En attributtgruppe " -"kan ha en overordnet gruppe som danner en hierarkisk struktur. Dette kan " -"være nyttig for å kategorisere og administrere attributter på en mer " -"effektiv måte i et komplekst system." +"Representerer en gruppe attributter, som kan være hierarkiske. Denne klassen" +" brukes til å administrere og organisere attributtgrupper. En " +"attributtgruppe kan ha en overordnet gruppe som danner en hierarkisk " +"struktur. Dette kan være nyttig for å kategorisere og administrere " +"attributter på en mer effektiv måte i et komplekst system." #: engine/core/models.py:88 msgid "parent of this group" @@ -1591,7 +1608,7 @@ msgstr "Overordnet attributtgruppe" msgid "attribute group's name" msgstr "Attributtgruppens navn" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attributtgruppe" @@ -1606,8 +1623,8 @@ msgid "" "use in systems that interact with third-party vendors." msgstr "" "Representerer en leverandørenhet som kan lagre informasjon om eksterne " -"leverandører og deres interaksjonskrav. Vendor-klassen brukes til å definere " -"og administrere informasjon knyttet til en ekstern leverandør. Den lagrer " +"leverandører og deres interaksjonskrav. Vendor-klassen brukes til å definere" +" og administrere informasjon knyttet til en ekstern leverandør. Den lagrer " "leverandørens navn, autentiseringsdetaljer som kreves for kommunikasjon, og " "prosentmarkeringen som brukes på produkter som hentes fra leverandøren. " "Denne modellen inneholder også ytterligere metadata og begrensninger, noe " @@ -1665,8 +1682,8 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "Representerer en produkttagg som brukes til å klassifisere eller " -"identifisere produkter. ProductTag-klassen er utformet for å identifisere og " -"klassifisere produkter på en unik måte ved hjelp av en kombinasjon av en " +"identifisere produkter. ProductTag-klassen er utformet for å identifisere og" +" klassifisere produkter på en unik måte ved hjelp av en kombinasjon av en " "intern tagg-identifikator og et brukervennlig visningsnavn. Den støtter " "operasjoner som eksporteres gjennom mixins, og gir metadatatilpasning for " "administrative formål." @@ -1699,8 +1716,8 @@ msgid "" msgstr "" "Representerer en kategorikode som brukes for produkter. Denne klassen " "modellerer en kategorikode som kan brukes til å knytte til og klassifisere " -"produkter. Den inneholder attributter for en intern tagg-identifikator og et " -"brukervennlig visningsnavn." +"produkter. Den inneholder attributter for en intern tagg-identifikator og et" +" brukervennlig visningsnavn." #: engine/core/models.py:249 msgid "category tag" @@ -1723,8 +1740,8 @@ msgid "" "priority." msgstr "" "Representerer en kategorienhet for å organisere og gruppere relaterte " -"elementer i en hierarkisk struktur. Kategorier kan ha hierarkiske relasjoner " -"med andre kategorier, noe som støtter foreldre-barn-relasjoner. Klassen " +"elementer i en hierarkisk struktur. Kategorier kan ha hierarkiske relasjoner" +" med andre kategorier, noe som støtter foreldre-barn-relasjoner. Klassen " "inneholder felt for metadata og visuell representasjon, som danner " "grunnlaget for kategorirelaterte funksjoner. Denne klassen brukes vanligvis " "til å definere og administrere produktkategorier eller andre lignende " @@ -1781,7 +1798,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Representerer et merkevareobjekt i systemet. Denne klassen håndterer " "informasjon og attributter knyttet til et merke, inkludert navn, logoer, " @@ -1831,16 +1849,16 @@ msgstr "Kategorier" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"Representerer lagerbeholdningen til et produkt som administreres i systemet. " -"Denne klassen gir informasjon om forholdet mellom leverandører, produkter og " -"deres lagerinformasjon, samt lagerrelaterte egenskaper som pris, " +"Representerer lagerbeholdningen til et produkt som administreres i systemet." +" Denne klassen gir informasjon om forholdet mellom leverandører, produkter " +"og deres lagerinformasjon, samt lagerrelaterte egenskaper som pris, " "innkjøpspris, antall, SKU og digitale eiendeler. Den er en del av " "lagerstyringssystemet for å muliggjøre sporing og evaluering av produkter " "som er tilgjengelige fra ulike leverandører." @@ -1865,8 +1883,8 @@ msgstr "Salgspris" msgid "the product associated with this stock entry" msgstr "Produktet som er knyttet til denne lagerposten" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Tilhørende produkt" @@ -1967,7 +1985,7 @@ msgstr "Gi produktet et tydelig navn som identifiserer det" msgid "product name" msgstr "Produktnavn" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Legg til en detaljert beskrivelse av produktet" @@ -1987,13 +2005,21 @@ msgstr "Delenummer" msgid "stock keeping unit for this product" msgstr "Lagerholdsenhet for dette produktet" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Om dette produktet skal eksporteres til markedsplasser" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Eksporter til markedsplasser" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Representerer et attributt i systemet. Denne klassen brukes til å definere " @@ -2003,310 +2029,311 @@ msgstr "" "float, boolsk, matrise og objekt. Dette gir mulighet for dynamisk og " "fleksibel datastrukturering." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Gruppe av dette attributtet" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Streng" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Heltall" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Flyter" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolsk" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objekt" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Type av attributtets verdi" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Verditype" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Navn på dette attributtet" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Attributtets navn" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "er filtrerbar" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -"Hvilke attributter og verdier som kan brukes til å filtrere denne kategorien." +"Hvilke attributter og verdier som kan brukes til å filtrere denne " +"kategorien." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attributt" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Representerer en spesifikk verdi for et attributt som er knyttet til et " "produkt. Den knytter \"attributtet\" til en unik \"verdi\", noe som gir " "bedre organisering og dynamisk representasjon av produktegenskaper." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attributt for denne verdien" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Det spesifikke produktet som er knyttet til dette attributtets verdi" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Den spesifikke verdien for dette attributtet" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Representerer et produktbilde som er knyttet til et produkt i systemet. " -"Denne klassen er utviklet for å administrere bilder for produkter, inkludert " -"funksjonalitet for å laste opp bildefiler, knytte dem til spesifikke " +"Denne klassen er utviklet for å administrere bilder for produkter, inkludert" +" funksjonalitet for å laste opp bildefiler, knytte dem til spesifikke " "produkter og bestemme visningsrekkefølgen. Den inneholder også en " "tilgjengelighetsfunksjon med alternativ tekst for bildene." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Gi alternativ tekst til bildet for tilgjengelighet" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Alt-tekst til bilder" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Last opp bildefilen for dette produktet" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Produktbilde" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Bestemmer rekkefølgen bildene skal vises i" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioritet på skjermen" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Produktet som dette bildet representerer" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Produktbilder" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Representerer en kampanje for produkter med rabatt. Denne klassen brukes til " -"å definere og administrere kampanjekampanjer som tilbyr en prosentbasert " +"Representerer en kampanje for produkter med rabatt. Denne klassen brukes til" +" å definere og administrere kampanjekampanjer som tilbyr en prosentbasert " "rabatt for produkter. Klassen inneholder attributter for å angi " "rabattsatsen, gi detaljer om kampanjen og knytte den til de aktuelle " "produktene. Den integreres med produktkatalogen for å finne de berørte " "varene i kampanjen." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Prosentvis rabatt for de valgte produktene" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Rabattprosent" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Oppgi et unikt navn for denne kampanjen" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Navn på kampanjen" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Beskrivelse av kampanjen" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Velg hvilke produkter som er inkludert i denne kampanjen" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Inkluderte produkter" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Markedsføring" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"Representerer en brukers ønskeliste for lagring og administrasjon av ønskede " -"produkter. Klassen tilbyr funksjonalitet for å administrere en samling " +"Representerer en brukers ønskeliste for lagring og administrasjon av ønskede" +" produkter. Klassen tilbyr funksjonalitet for å administrere en samling " "produkter, og støtter operasjoner som å legge til og fjerne produkter, samt " "operasjoner for å legge til og fjerne flere produkter samtidig." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produkter som brukeren har merket som ønsket" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Bruker som eier denne ønskelisten" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Ønskelistens eier" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Ønskeliste" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"Representerer en dokumentarpost knyttet til et produkt. Denne klassen brukes " -"til å lagre informasjon om dokumentarer knyttet til bestemte produkter, " +"Representerer en dokumentarpost knyttet til et produkt. Denne klassen brukes" +" til å lagre informasjon om dokumentarer knyttet til bestemte produkter, " "inkludert filopplastinger og metadata for disse. Den inneholder metoder og " "egenskaper for å håndtere filtype og lagringsbane for dokumentarfilene. Den " "utvider funksjonaliteten fra spesifikke mixins og tilbyr flere tilpassede " "funksjoner." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Dokumentarfilm" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Dokumentarfilmer" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Uavklart" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Representerer en adresseenhet som inneholder stedsdetaljer og assosiasjoner " "til en bruker. Tilbyr funksjonalitet for lagring av geografiske data og " "adressedata, samt integrering med geokodingstjenester. Denne klassen er " -"utformet for å lagre detaljert adresseinformasjon, inkludert komponenter som " -"gate, by, region, land og geolokalisering (lengde- og breddegrad). Den " +"utformet for å lagre detaljert adresseinformasjon, inkludert komponenter som" +" gate, by, region, land og geolokalisering (lengde- og breddegrad). Den " "støtter integrasjon med API-er for geokoding, og gjør det mulig å lagre rå " -"API-svar for videre behandling eller inspeksjon. Klassen gjør det også mulig " -"å knytte en adresse til en bruker, noe som gjør det enklere å tilpasse " +"API-svar for videre behandling eller inspeksjon. Klassen gjør det også mulig" +" å knytte en adresse til en bruker, noe som gjør det enklere å tilpasse " "datahåndteringen." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Adresselinje for kunden" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adresselinje" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Gate" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distrikt" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "By" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postnummer" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Land" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokaliseringspunkt(lengdegrad, breddegrad)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Fullstendig JSON-svar fra geokoderen for denne adressen" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Lagret JSON-svar fra geokodingstjenesten" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adresse" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresser" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2317,78 +2344,79 @@ msgid "" msgstr "" "Representerer en kampanjekode som kan brukes til rabatter, og styrer dens " "gyldighet, rabattype og anvendelse. PromoCode-klassen lagrer informasjon om " -"en kampanjekode, inkludert dens unike identifikator, rabattegenskaper (beløp " -"eller prosent), gyldighetsperiode, tilknyttet bruker (hvis noen) og status " +"en kampanjekode, inkludert dens unike identifikator, rabattegenskaper (beløp" +" eller prosent), gyldighetsperiode, tilknyttet bruker (hvis noen) og status " "for bruken av den. Den inneholder funksjonalitet for å validere og bruke " -"kampanjekoden på en bestilling, samtidig som den sikrer at begrensningene er " -"oppfylt." +"kampanjekoden på en bestilling, samtidig som den sikrer at begrensningene er" +" oppfylt." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unik kode som brukes av en bruker for å løse inn en rabatt" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Kampanjekode-identifikator" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Fast rabattbeløp som brukes hvis prosent ikke brukes" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Fast rabattbeløp" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Prosentvis rabatt hvis fast beløp ikke brukes" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Prosentvis rabatt" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Tidsstempel for når kampanjekoden utløper" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Slutt gyldighetstid" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Tidsstempel som denne kampanjekoden er gyldig fra" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Start gyldighetstid" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -"Tidsstempel for når kampanjekoden ble brukt, tomt hvis den ikke er brukt ennå" +"Tidsstempel for når kampanjekoden ble brukt, tomt hvis den ikke er brukt " +"ennå" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Tidsstempel for bruk" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Bruker som er tilordnet denne kampanjekoden, hvis aktuelt" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Tilordnet bruker" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Kampanjekode" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Kampanjekoder" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2396,167 +2424,167 @@ msgstr "" "Bare én type rabatt skal defineres (beløp eller prosent), men ikke begge " "eller ingen av delene." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promokoden har allerede blitt brukt" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ugyldig rabattype for kampanjekode {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Representerer en bestilling som er lagt inn av en bruker. Denne klassen " "modellerer en bestilling i applikasjonen, inkludert ulike attributter som " -"fakturerings- og leveringsinformasjon, status, tilknyttet bruker, varsler og " -"relaterte operasjoner. Bestillinger kan ha tilknyttede produkter, kampanjer " -"kan brukes, adresser kan angis, og frakt- eller faktureringsopplysninger kan " -"oppdateres. På samme måte støtter funksjonaliteten håndtering av produktene " -"i bestillingens livssyklus." +"fakturerings- og leveringsinformasjon, status, tilknyttet bruker, varsler og" +" relaterte operasjoner. Bestillinger kan ha tilknyttede produkter, kampanjer" +" kan brukes, adresser kan angis, og frakt- eller faktureringsopplysninger " +"kan oppdateres. På samme måte støtter funksjonaliteten håndtering av " +"produktene i bestillingens livssyklus." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Faktureringsadressen som brukes for denne bestillingen" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Valgfri kampanjekode brukt på denne bestillingen" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Anvendt kampanjekode" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Leveringsadressen som brukes for denne bestillingen" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Leveringsadresse" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Ordrens nåværende status i livssyklusen" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Order status" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON-struktur for varsler som skal vises til brukere, i admin-grensesnittet " "brukes tabellvisningen" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON-representasjon av ordreattributter for denne ordren" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Brukeren som har lagt inn bestillingen" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Bruker" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Tidsstempel for når bestillingen ble fullført" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Kjøp tid" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "En menneskelig lesbar identifikator for bestillingen" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID som kan leses av mennesker" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Bestilling" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "En bruker kan bare ha én ventende ordre om gangen!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Du kan ikke legge til produkter i en bestilling som ikke er en pågående " "bestilling" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Du kan ikke legge til inaktive produkter i bestillingen" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" "Du kan ikke legge til flere produkter enn det som er tilgjengelig på lager" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Du kan ikke fjerne produkter fra en bestilling som ikke er en pågående " "bestilling" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} finnes ikke med spørring <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promokoden finnes ikke" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "Du kan bare kjøpe fysiske produkter med oppgitt leveringsadresse!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adressen eksisterer ikke" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "Du kan ikke kjøpe for øyeblikket, vennligst prøv igjen om noen minutter." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Ugyldig kraftverdi" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Du kan ikke kjøpe en tom ordre!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Du kan ikke kjøpe en ordre uten en bruker!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "En bruker uten saldo kan ikke kjøpe med saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Utilstrekkelige midler til å fullføre bestillingen" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2564,14 +2592,14 @@ msgstr "" "du kan ikke kjøpe uten registrering, vennligst oppgi følgende informasjon: " "kundenavn, kundens e-postadresse, kundens telefonnummer" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ugyldig betalingsmetode: {payment_method} fra {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2579,40 +2607,41 @@ msgid "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." msgstr "" -"Håndterer brukernes tilbakemeldinger på produkter. Denne klassen er utformet " -"for å fange opp og lagre tilbakemeldinger fra brukerne om spesifikke " +"Håndterer brukernes tilbakemeldinger på produkter. Denne klassen er utformet" +" for å fange opp og lagre tilbakemeldinger fra brukerne om spesifikke " "produkter de har kjøpt. Den inneholder attributter for å lagre " "brukerkommentarer, en referanse til det relaterte produktet i bestillingen " "og en brukertildelt vurdering. Klassen bruker databasefelt for å modellere " "og administrere tilbakemeldingsdata på en effektiv måte." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Brukerkommentarer om deres erfaringer med produktet" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Tilbakemeldinger og kommentarer" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Refererer til det spesifikke produktet i en ordre som denne tilbakemeldingen " -"handler om" +"Refererer til det spesifikke produktet i en ordre som denne tilbakemeldingen" +" handler om" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Relatert bestillingsprodukt" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Brukertildelt vurdering for produktet" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Produktvurdering" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2635,130 +2664,130 @@ msgstr "" "Modellen integreres med Order- og Product-modellene og lagrer en referanse " "til disse." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Prisen kunden betalte for dette produktet på kjøpstidspunktet" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Innkjøpspris på bestillingstidspunktet" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Interne kommentarer for administratorer om dette bestilte produktet" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Interne kommentarer" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Brukervarsler" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON-representasjon av dette elementets attributter" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Bestilte produktegenskaper" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "" "Referanse til den overordnede bestillingen som inneholder dette produktet" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Overordnet ordre" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Det spesifikke produktet som er knyttet til denne ordrelinjen" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Antall av dette spesifikke produktet i bestillingen" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Produktmengde" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Nåværende status for dette produktet i bestillingen" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status for produktlinjen" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct må ha en tilknyttet ordre!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Feil handling angitt for tilbakemelding: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "du kan ikke gi tilbakemelding på en bestilling som ikke er mottatt" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Navn" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL-adressen til integrasjonen" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Legitimasjon for autentisering" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Du kan bare ha én standard CRM-leverandør" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Ordre CRM-kobling" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "CRM-koblinger for bestillinger" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"Representerer nedlastingsfunksjonaliteten for digitale ressurser knyttet til " -"bestillinger. DigitalAssetDownload-klassen gir mulighet til å administrere " +"Representerer nedlastingsfunksjonaliteten for digitale ressurser knyttet til" +" bestillinger. DigitalAssetDownload-klassen gir mulighet til å administrere " "og få tilgang til nedlastinger knyttet til bestillingsprodukter. Den " "inneholder informasjon om det tilknyttede bestillingsproduktet, antall " "nedlastinger og om ressursen er offentlig synlig. Den inneholder en metode " "for å generere en URL for nedlasting av ressursen når den tilknyttede " "bestillingen har status som fullført." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Last ned" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Nedlastinger" @@ -2959,13 +2988,12 @@ msgstr "Hallo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Takk for din bestilling #%(order.pk)s! Vi er glade for å informere deg om at " -"vi har tatt bestillingen din i arbeid. Nedenfor er detaljene i bestillingen " -"din:" +"Takk for din bestilling #%(order.pk)s! Vi er glade for å informere deg om at" +" vi har tatt bestillingen din i arbeid. Nedenfor er detaljene i bestillingen" +" din:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -3075,8 +3103,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Takk for bestillingen din! Vi er glade for å kunne bekrefte kjøpet ditt. " @@ -3154,8 +3181,8 @@ msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"Håndterer forespørselen om områdekartindeksen og returnerer et XML-svar. Den " -"sørger for at svaret inneholder riktig innholdstypeoverskrift for XML." +"Håndterer forespørselen om områdekartindeksen og returnerer et XML-svar. Den" +" sørger for at svaret inneholder riktig innholdstypeoverskrift for XML." #: engine/core/views.py:119 msgid "" @@ -3194,8 +3221,8 @@ msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"Håndterer forespørsler om behandling og validering av URL-er fra innkommende " -"POST-forespørsler." +"Håndterer forespørsler om behandling og validering av URL-er fra innkommende" +" POST-forespørsler." #: engine/core/views.py:273 msgid "Handles global search queries." @@ -3208,15 +3235,10 @@ msgstr "Håndterer logikken med å kjøpe som en bedrift uten registrering." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Håndterer nedlastingen av en digital ressurs som er knyttet til en " -"bestilling.\n" -"Denne funksjonen forsøker å levere den digitale ressursfilen som ligger i " -"lagringskatalogen til prosjektet. Hvis filen ikke blir funnet, vises en HTTP " -"404-feil for å indikere at ressursen ikke er tilgjengelig." +"Håndterer nedlastingen av en digital ressurs som er knyttet til en bestilling.\n" +"Denne funksjonen forsøker å levere den digitale ressursfilen som ligger i lagringskatalogen til prosjektet. Hvis filen ikke blir funnet, vises en HTTP 404-feil for å indikere at ressursen ikke er tilgjengelig." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3245,19 +3267,15 @@ msgstr "favicon ble ikke funnet" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Håndterer forespørsler om faviconet til et nettsted.\n" -"Denne funksjonen forsøker å vise favicon-filen som ligger i den statiske " -"katalogen i prosjektet. Hvis favicon-filen ikke blir funnet, vises en HTTP " -"404-feil for å indikere at ressursen ikke er tilgjengelig." +"Denne funksjonen forsøker å vise favicon-filen som ligger i den statiske katalogen i prosjektet. Hvis favicon-filen ikke blir funnet, vises en HTTP 404-feil for å indikere at ressursen ikke er tilgjengelig." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Omdirigerer forespørselen til admin-indekssiden. Funksjonen håndterer " @@ -3266,8 +3284,8 @@ msgstr "" "håndtere HTTP-omdirigeringen." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Returnerer gjeldende versjon av eVibes." +msgid "Returns current version of the Schon. " +msgstr "Returnerer gjeldende versjon av Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3280,24 +3298,25 @@ msgstr "Returnerer egendefinerte variabler for Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definerer et visningssett for håndtering av Evibes-relaterte operasjoner. " -"EvibesViewSet-klassen arver fra ModelViewSet og tilbyr funksjonalitet for " -"håndtering av handlinger og operasjoner på Evibes-enheter. Den inkluderer " +"Definerer et visningssett for håndtering av schon-relaterte operasjoner. " +"schonViewSet-klassen arver fra ModelViewSet og tilbyr funksjonalitet for " +"håndtering av handlinger og operasjoner på schon-enheter. Den inkluderer " "støtte for dynamiske serialiseringsklasser basert på den aktuelle " "handlingen, tilpassbare tillatelser og gjengivelsesformater." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Representerer et visningssett for håndtering av AttributeGroup-objekter. " "Håndterer operasjoner knyttet til AttributeGroup, inkludert filtrering, " @@ -3314,20 +3333,20 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"Håndterer operasjoner knyttet til Attribute-objekter i applikasjonen. Tilbyr " -"et sett med API-endepunkter for interaksjon med attributtdata. Denne klassen " -"håndterer spørring, filtrering og serialisering av Attribute-objekter, noe " -"som gir dynamisk kontroll over dataene som returneres, for eksempel " -"filtrering etter bestemte felt eller henting av detaljert versus forenklet " -"informasjon avhengig av forespørselen." +"Håndterer operasjoner knyttet til Attribute-objekter i applikasjonen. Tilbyr" +" et sett med API-endepunkter for interaksjon med attributtdata. Denne " +"klassen håndterer spørring, filtrering og serialisering av Attribute-" +"objekter, noe som gir dynamisk kontroll over dataene som returneres, for " +"eksempel filtrering etter bestemte felt eller henting av detaljert versus " +"forenklet informasjon avhengig av forespørselen." #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Et visningssett for administrasjon av AttributeValue-objekter. Dette " "visningssettet inneholder funksjonalitet for å liste opp, hente, opprette, " @@ -3366,7 +3385,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3374,10 +3393,10 @@ msgstr "" "Håndterer operasjoner knyttet til `Product`-modellen i systemet. Denne " "klassen gir et visningssett for håndtering av produkter, inkludert " "filtrering, serialisering og operasjoner på spesifikke forekomster. Den " -"utvides fra `EvibesViewSet` for å bruke felles funksjonalitet og integreres " +"utvides fra `schonViewSet` for å bruke felles funksjonalitet og integreres " "med Django REST-rammeverket for RESTful API-operasjoner. Inkluderer metoder " -"for å hente produktdetaljer, tildele tillatelser og få tilgang til relaterte " -"tilbakemeldinger om et produkt." +"for å hente produktdetaljer, tildele tillatelser og få tilgang til relaterte" +" tilbakemeldinger om et produkt." #: engine/core/viewsets.py:605 msgid "" @@ -3389,9 +3408,9 @@ msgid "" msgstr "" "Representerer et visningssett for håndtering av Vendor-objekter. Dette " "visningssettet gjør det mulig å hente, filtrere og serialisere Vendor-data. " -"Den definerer spørresettet, filterkonfigurasjonene og serialiseringsklassene " -"som brukes til å håndtere ulike handlinger. Formålet med denne klassen er å " -"gi strømlinjeformet tilgang til Vendor-relaterte ressurser gjennom Django " +"Den definerer spørresettet, filterkonfigurasjonene og serialiseringsklassene" +" som brukes til å håndtere ulike handlinger. Formålet med denne klassen er å" +" gi strømlinjeformet tilgang til Vendor-relaterte ressurser gjennom Django " "REST-rammeverket." #: engine/core/viewsets.py:625 @@ -3399,8 +3418,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representasjon av et visningssett som håndterer Feedback-objekter. Denne " @@ -3408,7 +3427,7 @@ msgstr "" "opplisting, filtrering og henting av detaljer. Formålet med dette " "visningssettet er å tilby forskjellige serialisatorer for ulike handlinger " "og implementere rettighetsbasert håndtering av tilgjengelige " -"tilbakemeldingsobjekter. Den utvider basisklassen `EvibesViewSet` og bruker " +"tilbakemeldingsobjekter. Den utvider basisklassen `schonViewSet` og bruker " "Djangos filtreringssystem for å spørre etter data." #: engine/core/viewsets.py:652 @@ -3416,9 +3435,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet for håndtering av bestillinger og relaterte operasjoner. Denne " @@ -3427,22 +3446,22 @@ msgstr "" "ordreoperasjoner, for eksempel å legge til eller fjerne produkter, utføre " "kjøp for både registrerte og uregistrerte brukere og hente den aktuelle " "autentiserte brukerens ventende bestillinger. ViewSet bruker flere " -"serialisatorer basert på den spesifikke handlingen som utføres, og håndhever " -"tillatelser i samsvar med dette under samhandling med ordredata." +"serialisatorer basert på den spesifikke handlingen som utføres, og håndhever" +" tillatelser i samsvar med dette under samhandling med ordredata." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Tilbyr et visningssett for håndtering av OrderProduct-enheter. Dette " -"visningssettet muliggjør CRUD-operasjoner og egendefinerte handlinger som er " -"spesifikke for OrderProduct-modellen. Det inkluderer filtrering, kontroll av " -"tillatelser og bytte av serializer basert på den forespurte handlingen. I " -"tillegg inneholder det en detaljert handling for håndtering av " +"visningssettet muliggjør CRUD-operasjoner og egendefinerte handlinger som er" +" spesifikke for OrderProduct-modellen. Det inkluderer filtrering, kontroll " +"av tillatelser og bytte av serializer basert på den forespurte handlingen. I" +" tillegg inneholder det en detaljert handling for håndtering av " "tilbakemeldinger på OrderProduct-instanser" #: engine/core/viewsets.py:974 @@ -3454,8 +3473,8 @@ msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -"Administrerer henting og håndtering av PromoCode-instanser gjennom ulike API-" -"handlinger." +"Administrerer henting og håndtering av PromoCode-instanser gjennom ulike " +"API-handlinger." #: engine/core/viewsets.py:1019 msgid "Represents a view set for managing promotions. " @@ -3469,8 +3488,8 @@ msgstr "Håndterer operasjoner knyttet til lagerdata i systemet." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3480,8 +3499,8 @@ msgstr "" "gjør det mulig å hente, endre og tilpasse produkter i ønskelisten. Dette " "ViewSetet legger til rette for funksjonalitet som å legge til, fjerne og " "utføre massehandlinger for ønskelisteprodukter. Tillatelseskontroller er " -"integrert for å sikre at brukere bare kan administrere sine egne ønskelister " -"med mindre eksplisitte tillatelser er gitt." +"integrert for å sikre at brukere bare kan administrere sine egne ønskelister" +" med mindre eksplisitte tillatelser er gitt." #: engine/core/viewsets.py:1183 msgid "" @@ -3491,11 +3510,11 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Denne klassen tilbyr visningssettfunksjonalitet for håndtering av `Address`-" -"objekter. AddressViewSet-klassen muliggjør CRUD-operasjoner, filtrering og " -"egendefinerte handlinger knyttet til adresseenheter. Den inkluderer " -"spesialisert atferd for ulike HTTP-metoder, overstyring av serializer og " -"håndtering av tillatelser basert på forespørselskonteksten." +"Denne klassen tilbyr visningssettfunksjonalitet for håndtering av " +"`Address`-objekter. AddressViewSet-klassen muliggjør CRUD-operasjoner, " +"filtrering og egendefinerte handlinger knyttet til adresseenheter. Den " +"inkluderer spesialisert atferd for ulike HTTP-metoder, overstyring av " +"serializer og håndtering av tillatelser basert på forespørselskonteksten." #: engine/core/viewsets.py:1254 #, python-brace-format diff --git a/engine/core/locale/pl_PL/LC_MESSAGES/django.mo b/engine/core/locale/pl_PL/LC_MESSAGES/django.mo index 9f3db49a..15855bcd 100644 Binary files a/engine/core/locale/pl_PL/LC_MESSAGES/django.mo and b/engine/core/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/pl_PL/LC_MESSAGES/django.po b/engine/core/locale/pl_PL/LC_MESSAGES/django.po index 1d25fe95..92d2fb4b 100644 --- a/engine/core/locale/pl_PL/LC_MESSAGES/django.po +++ b/engine/core/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Jest aktywny" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Jeśli ustawione na false, obiekt ten nie może być widoczny dla użytkowników " "bez wymaganych uprawnień." @@ -76,7 +77,7 @@ msgstr "Znaczniki czasu" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Aktywuj wybrane %(verbose_name_plural)s" #: engine/core/admin.py:166 @@ -85,21 +86,21 @@ msgstr "Wybrane elementy zostały aktywowane!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Dezaktywacja wybranego %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Wyłącz wybrane %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Wybrane elementy zostały dezaktywowane!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Wartość atrybutu" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Wartości atrybutów" @@ -119,12 +120,12 @@ msgstr "Stan magazynowy" msgid "stocks" msgstr "Akcje" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Zamów produkt" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Zamawianie produktów" @@ -132,7 +133,31 @@ msgstr "Zamawianie produktów" msgid "children" msgstr "Dzieci" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Zawiera obrazy" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Eksportuj wybrane %(verbose_name_plural)s do kanałów rynkowych" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Wybrane %(verbose_name_plural)s zostały oznaczone do eksportu." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Zablokuj wybrany %(verbose_name_plural)s z kanałów rynkowych" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Wybrane %(verbose_name_plural)s zostały objęte zakazem eksportu." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfiguracja" @@ -156,7 +181,8 @@ msgstr "Dostarczone" msgid "canceled" msgstr "Anulowane" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Nie powiodło się" @@ -208,8 +234,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Zastosuj tylko klucz, aby odczytać dozwolone dane z pamięci podręcznej.\n" -"Zastosuj klucz, dane i limit czasu z uwierzytelnianiem, aby zapisać dane w " -"pamięci podręcznej." +"Zastosuj klucz, dane i limit czasu z uwierzytelnianiem, aby zapisać dane w pamięci podręcznej." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -274,7 +299,8 @@ msgstr "" "nieedytowalnych" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Przepisanie niektórych pól istniejącej grupy atrybutów z zachowaniem " "atrybutów nieedytowalnych" @@ -329,7 +355,8 @@ msgstr "" "nieedytowalnych" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej wartości atrybutu, zapisując wartości " "nieedytowalne" @@ -388,11 +415,11 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Wyszukiwanie podciągów z uwzględnieniem wielkości liter w human_readable_id, " -"order_products.product.name i order_products.product.partnumber." +"Wyszukiwanie podciągów z uwzględnieniem wielkości liter w human_readable_id," +" order_products.product.name i order_products.product.partnumber." #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -425,14 +452,14 @@ msgstr "Filtrowanie według identyfikatora UUID użytkownika" #: engine/core/docs/drf/viewsets.py:347 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -"Filtrowanie według statusu zamówienia (dopasowanie podciągu z uwzględnieniem " -"wielkości liter)" +"Filtrowanie według statusu zamówienia (dopasowanie podciągu z uwzględnieniem" +" wielkości liter)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Kolejność według jednego z: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Prefiks z \"-\" dla malejącego " @@ -444,7 +471,8 @@ msgstr "Pobieranie pojedynczej kategorii (widok szczegółowy)" #: engine/core/docs/drf/viewsets.py:371 msgid "Order UUID or human-readable id" -msgstr "Identyfikator UUID zamówienia lub identyfikator czytelny dla człowieka" +msgstr "" +"Identyfikator UUID zamówienia lub identyfikator czytelny dla człowieka" #: engine/core/docs/drf/viewsets.py:381 msgid "create an order" @@ -632,28 +660,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrowanie według jednej lub więcej par atrybut/wartość. \n" "- Składnia**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- **Metody** (domyślnie `icontains` jeśli pominięte): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- Wpisywanie wartości**: JSON jest próbowany jako pierwszy (więc można " -"przekazywać listy/dykty), `true`/`false` dla booleans, integers, floats; w " -"przeciwnym razie traktowane jako string. \n" -"- Base64**: prefiks z `b64-` do bezpiecznego dla adresów URL kodowania " -"base64 surowej wartości. \n" +"- **Metody** (domyślnie `icontains` jeśli pominięte): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- Wpisywanie wartości**: JSON jest próbowany jako pierwszy (więc można przekazywać listy/dykty), `true`/`false` dla booleans, integers, floats; w przeciwnym razie traktowane jako string. \n" +"- Base64**: prefiks z `b64-` do bezpiecznego dla adresów URL kodowania base64 surowej wartości. \n" "Przykłady: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -668,12 +686,10 @@ msgstr "(dokładny) UUID produktu" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Rozdzielana przecinkami lista pól do posortowania. Prefiks z `-` dla " -"sortowania malejącego. \n" +"Rozdzielana przecinkami lista pól do posortowania. Prefiks z `-` dla sortowania malejącego. \n" "**Dozwolone:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -1228,8 +1244,8 @@ msgstr "Kup zamówienie" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Prześlij atrybuty jako ciąg znaków sformatowany w następujący sposób: " "attr1=value1,attr2=value2" @@ -1251,9 +1267,9 @@ msgstr "Orderproduct {order_product_uuid} nie został znaleziony!" msgid "original address string provided by the user" msgstr "Oryginalny ciąg adresu podany przez użytkownika" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1269,8 +1285,8 @@ msgstr "ElasticSearch - działa jak urok" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Atrybuty" @@ -1307,7 +1323,8 @@ msgstr "" "Które atrybuty i wartości mogą być używane do filtrowania tej kategorii." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimalne i maksymalne ceny produktów w tej kategorii, jeśli są dostępne." @@ -1345,7 +1362,7 @@ msgid "represents feedback from a user." msgstr "Reprezentuje informacje zwrotne od użytkownika." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Powiadomienia" @@ -1353,7 +1370,7 @@ msgstr "Powiadomienia" msgid "download url for this order product if applicable" msgstr "Adres URL pobierania dla tego produktu zamówienia, jeśli dotyczy" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Informacje zwrotne" @@ -1361,7 +1378,7 @@ msgstr "Informacje zwrotne" msgid "a list of order products in this order" msgstr "Lista zamówionych produktów w tym zamówieniu" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Adres rozliczeniowy" @@ -1389,7 +1406,7 @@ msgstr "Czy wszystkie produkty w zamówieniu są cyfrowe?" msgid "transactions for this order" msgstr "Transakcje dla tego zamówienia" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Zamówienia" @@ -1406,7 +1423,7 @@ msgstr "Zdjęcia produktu" msgid "category" msgstr "Kategoria" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Informacje zwrotne" @@ -1447,7 +1464,7 @@ msgstr "Produkty dostępne tylko dla zamówień osobistych" msgid "discount price" msgstr "Cena rabatowa" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produkty" @@ -1459,7 +1476,7 @@ msgstr "Promocodes" msgid "products on sale" msgstr "Produkty w sprzedaży" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promocje" @@ -1467,7 +1484,7 @@ msgstr "Promocje" msgid "vendor" msgstr "Sprzedawca" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1475,11 +1492,11 @@ msgstr "Sprzedawca" msgid "product" msgstr "Produkt" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produkty z listy życzeń" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Listy życzeń" @@ -1518,8 +1535,7 @@ msgstr "Numer telefonu firmy" #: engine/core/graphene/object_types.py:761 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"\"email from\", czasami musi być użyty zamiast wartości użytkownika hosta" +msgstr "\"email from\", czasami musi być użyty zamiast wartości użytkownika hosta" #: engine/core/graphene/object_types.py:764 msgid "email host user" @@ -1596,7 +1612,7 @@ msgstr "Grupa atrybutów nadrzędnych" msgid "attribute group's name" msgstr "Nazwa grupy atrybutów" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Grupa atrybutów" @@ -1613,8 +1629,8 @@ msgstr "" "Reprezentuje jednostkę dostawcy zdolną do przechowywania informacji o " "zewnętrznych dostawcach i ich wymaganiach dotyczących interakcji. Klasa " "Vendor służy do definiowania i zarządzania informacjami związanymi z " -"zewnętrznym dostawcą. Przechowuje nazwę dostawcy, szczegóły uwierzytelniania " -"wymagane do komunikacji oraz procentowe znaczniki stosowane do produktów " +"zewnętrznym dostawcą. Przechowuje nazwę dostawcy, szczegóły uwierzytelniania" +" wymagane do komunikacji oraz procentowe znaczniki stosowane do produktów " "pobieranych od dostawcy. Model ten zachowuje również dodatkowe metadane i " "ograniczenia, dzięki czemu nadaje się do użytku w systemach, które " "współpracują z zewnętrznymi dostawcami." @@ -1786,11 +1802,12 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Reprezentuje obiekt marki w systemie. Ta klasa obsługuje informacje i " -"atrybuty związane z marką, w tym jej nazwę, logo, opis, powiązane kategorie, " -"unikalny slug i kolejność priorytetów. Pozwala na organizację i " +"atrybuty związane z marką, w tym jej nazwę, logo, opis, powiązane kategorie," +" unikalny slug i kolejność priorytetów. Pozwala na organizację i " "reprezentację danych związanych z marką w aplikacji." #: engine/core/models.py:456 @@ -1835,8 +1852,8 @@ msgstr "Kategorie" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1869,8 +1886,8 @@ msgstr "Cena sprzedaży" msgid "the product associated with this stock entry" msgstr "Produkt powiązany z tym wpisem magazynowym" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Produkt powiązany" @@ -1972,7 +1989,7 @@ msgstr "Wyraźna nazwa identyfikująca produkt" msgid "product name" msgstr "Nazwa produktu" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Dodaj szczegółowy opis produktu" @@ -1992,13 +2009,21 @@ msgstr "Numer części" msgid "stock keeping unit for this product" msgstr "Jednostka magazynowa dla tego produktu" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Czy eksportować ten produkt na rynki" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Eksport do serwisów handlowych" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Reprezentuje atrybut w systemie. Ta klasa jest używana do definiowania i " @@ -2008,91 +2033,91 @@ msgstr "" "string, integer, float, boolean, array i object. Pozwala to na dynamiczną i " "elastyczną strukturę danych." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Grupa tego atrybutu" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "String" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Integer" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Pływak" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Wartość logiczna" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Tablica" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Obiekt" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Typ wartości atrybutu" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Typ wartości" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Nazwa tego atrybutu" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Nazwa atrybutu" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "można filtrować" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Które atrybuty i wartości mogą być używane do filtrowania tej kategorii." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atrybut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Reprezentuje określoną wartość atrybutu powiązanego z produktem. Łączy " "\"atrybut\" z unikalną \"wartością\", umożliwiając lepszą organizację i " "dynamiczną reprezentację cech produktu." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Atrybut tej wartości" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Konkretny produkt powiązany z wartością tego atrybutu" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Konkretna wartość dla tego atrybutu" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2102,87 +2127,88 @@ msgstr "" "określania kolejności ich wyświetlania. Zawiera również funkcję dostępności " "z tekstem alternatywnym dla obrazów." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" -msgstr "Zapewnienie alternatywnego tekstu dla obrazu w celu ułatwienia dostępu" +msgstr "" +"Zapewnienie alternatywnego tekstu dla obrazu w celu ułatwienia dostępu" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Tekst alternatywny obrazu" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Prześlij plik obrazu dla tego produktu" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Obraz produktu" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Określa kolejność wyświetlania obrazów" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Priorytet wyświetlania" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Produkt, który przedstawia ten obraz" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Zdjęcia produktów" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Reprezentuje kampanię promocyjną dla produktów z rabatem. Ta klasa służy do " -"definiowania i zarządzania kampaniami promocyjnymi, które oferują procentowy " -"rabat na produkty. Klasa zawiera atrybuty do ustawiania stopy rabatu, " +"definiowania i zarządzania kampaniami promocyjnymi, które oferują procentowy" +" rabat na produkty. Klasa zawiera atrybuty do ustawiania stopy rabatu, " "dostarczania szczegółów na temat promocji i łączenia jej z odpowiednimi " "produktami. Integruje się z katalogiem produktów w celu określenia pozycji, " "których dotyczy kampania." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Rabat procentowy na wybrane produkty" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Procent rabatu" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Podaj unikalną nazwę tej promocji" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Nazwa promocji" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Opis promocji" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Wybierz produkty objęte promocją" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Dołączone produkty" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promocja" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2190,64 +2216,64 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" "Reprezentuje listę życzeń użytkownika do przechowywania i zarządzania " -"pożądanymi produktami. Klasa zapewnia funkcjonalność do zarządzania kolekcją " -"produktów, wspierając operacje takie jak dodawanie i usuwanie produktów, a " +"pożądanymi produktami. Klasa zapewnia funkcjonalność do zarządzania kolekcją" +" produktów, wspierając operacje takie jak dodawanie i usuwanie produktów, a " "także wspierając operacje dodawania i usuwania wielu produktów jednocześnie." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produkty, które użytkownik oznaczył jako poszukiwane" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Użytkownik posiadający tę listę życzeń" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Właściciel listy życzeń" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Lista życzeń" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Reprezentuje rekord dokumentu powiązany z produktem. Ta klasa służy do " -"przechowywania informacji o dokumentach związanych z określonymi produktami, " -"w tym przesyłanych plików i ich metadanych. Zawiera metody i właściwości do " -"obsługi typu pliku i ścieżki przechowywania plików dokumentów. Rozszerza " +"przechowywania informacji o dokumentach związanych z określonymi produktami," +" w tym przesyłanych plików i ich metadanych. Zawiera metody i właściwości do" +" obsługi typu pliku i ścieżki przechowywania plików dokumentów. Rozszerza " "funkcjonalność z określonych miksów i zapewnia dodatkowe niestandardowe " "funkcje." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Film dokumentalny" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Filmy dokumentalne" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Nierozwiązany" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Reprezentuje jednostkę adresu, która zawiera szczegóły lokalizacji i " "powiązania z użytkownikiem. Zapewnia funkcjonalność przechowywania danych " @@ -2255,64 +2281,64 @@ msgstr "" "Klasa ta została zaprojektowana do przechowywania szczegółowych informacji " "adresowych, w tym elementów takich jak ulica, miasto, region, kraj i " "geolokalizacja (długość i szerokość geograficzna). Obsługuje integrację z " -"interfejsami API geokodowania, umożliwiając przechowywanie nieprzetworzonych " -"odpowiedzi API do dalszego przetwarzania lub kontroli. Klasa umożliwia " +"interfejsami API geokodowania, umożliwiając przechowywanie nieprzetworzonych" +" odpowiedzi API do dalszego przetwarzania lub kontroli. Klasa umożliwia " "również powiązanie adresu z użytkownikiem, ułatwiając spersonalizowaną " "obsługę danych." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Linia adresu dla klienta" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Linia adresowa" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "ul." -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Okręg" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Miasto" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Kod pocztowy" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Kraj" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolocation Point(Longitude, Latitude)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Pełna odpowiedź JSON z geokodera dla tego adresu" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Przechowywana odpowiedź JSON z usługi geokodowania" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adres" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresy" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2329,73 +2355,73 @@ msgstr "" "Obejmuje funkcję sprawdzania poprawności i stosowania kodu promocyjnego do " "zamówienia, zapewniając jednocześnie spełnienie ograniczeń." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unikalny kod używany przez użytkownika do realizacji rabatu." -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identyfikator kodu promocyjnego" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Stała kwota rabatu stosowana, jeśli procent nie jest używany" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Stała kwota rabatu" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Rabat procentowy stosowany w przypadku niewykorzystania stałej kwoty" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Rabat procentowy" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Znacznik czasu wygaśnięcia kodu promocyjnego" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Końcowy czas ważności" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Znacznik czasu, od którego ten kod promocyjny jest ważny" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Czas rozpoczęcia ważności" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Znacznik czasu użycia kodu promocyjnego, pusty, jeśli nie został jeszcze " "użyty." -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Znacznik czasu użycia" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Użytkownik przypisany do tego kodu promocyjnego, jeśli dotyczy" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Przypisany użytkownik" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Kod promocyjny" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Kody promocyjne" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2403,21 +2429,21 @@ msgstr "" "Należy zdefiniować tylko jeden rodzaj rabatu (kwotowy lub procentowy), ale " "nie oba lub żaden z nich." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Kod promocyjny został już wykorzystany" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Nieprawidłowy typ rabatu dla kodu promocyjnego {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2429,142 +2455,143 @@ msgstr "" "Funkcjonalność wspiera również zarządzanie produktami w cyklu życia " "zamówienia." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Adres rozliczeniowy użyty dla tego zamówienia" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Opcjonalny kod promocyjny zastosowany do tego zamówienia" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Zastosowany kod promocyjny" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Adres wysyłki użyty dla tego zamówienia" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Adres wysyłki" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Aktualny status zamówienia w jego cyklu życia" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Status zamówienia" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Struktura JSON powiadomień do wyświetlenia użytkownikom, w interfejsie " "administratora używany jest widok tabeli" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Reprezentacja JSON atrybutów zamówienia dla tego zamówienia" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Użytkownik, który złożył zamówienie" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Użytkownik" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Znacznik czasu, kiedy zamówienie zostało sfinalizowane" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Kup czas" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Czytelny dla człowieka identyfikator zamówienia" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "Identyfikator czytelny dla człowieka" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Zamówienie" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" -msgstr "Użytkownik może mieć tylko jedno oczekujące zlecenie w danym momencie!" +msgstr "" +"Użytkownik może mieć tylko jedno oczekujące zlecenie w danym momencie!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Nie można dodać produktów do zamówienia, które nie jest zamówieniem " "oczekującym." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Nie można dodać nieaktywnych produktów do zamówienia" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Nie można dodać więcej produktów niż jest dostępnych w magazynie" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Nie można usunąć produktów z zamówienia, które nie jest zamówieniem " "oczekującym." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} nie istnieje z zapytaniem <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Kod promocyjny nie istnieje" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "Możesz kupować tylko produkty fizyczne z podanym adresem wysyłki!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adres nie istnieje" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "W tej chwili nie możesz dokonać zakupu, spróbuj ponownie za kilka minut." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Nieprawidłowa wartość siły" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Nie można kupić pustego zamówienia!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" "Nie można usunąć produktów z zamówienia, które nie jest zamówieniem " "oczekującym." -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Użytkownik bez salda nie może kupować za saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Niewystarczające środki do zrealizowania zamówienia" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2573,7 +2600,7 @@ msgstr "" "informacje: imię i nazwisko klienta, adres e-mail klienta, numer telefonu " "klienta." -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2581,7 +2608,7 @@ msgstr "" "Nieprawidłowa metoda płatności: {payment_method} z " "{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2594,36 +2621,37 @@ msgstr "" "temat konkretnych produktów, które zostały przez nich zakupione. Zawiera " "atrybuty do przechowywania komentarzy użytkowników, odniesienie do " "powiązanego produktu w zamówieniu oraz ocenę przypisaną przez użytkownika. " -"Klasa wykorzystuje pola bazy danych do efektywnego modelowania i zarządzania " -"danymi opinii." +"Klasa wykorzystuje pola bazy danych do efektywnego modelowania i zarządzania" +" danymi opinii." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Komentarze użytkowników na temat ich doświadczeń z produktem" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Komentarze zwrotne" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Odnosi się do konkretnego produktu w zamówieniu, którego dotyczy ta " "informacja zwrotna." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Powiązany produkt zamówienia" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Ocena produktu przypisana przez użytkownika" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Ocena produktu" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2637,126 +2665,127 @@ msgid "" msgstr "" "Reprezentuje produkty powiązane z zamówieniami i ich atrybutami. Model " "OrderProduct przechowuje informacje o produkcie, który jest częścią " -"zamówienia, w tym szczegóły, takie jak cena zakupu, ilość, atrybuty produktu " -"i status. Zarządza powiadomieniami dla użytkownika i administratorów oraz " -"obsługuje operacje, takie jak zwracanie salda produktu lub dodawanie opinii. " -"Model ten zapewnia również metody i właściwości, które obsługują logikę " +"zamówienia, w tym szczegóły, takie jak cena zakupu, ilość, atrybuty produktu" +" i status. Zarządza powiadomieniami dla użytkownika i administratorów oraz " +"obsługuje operacje, takie jak zwracanie salda produktu lub dodawanie opinii." +" Model ten zapewnia również metody i właściwości, które obsługują logikę " "biznesową, taką jak obliczanie całkowitej ceny lub generowanie adresu URL " -"pobierania dla produktów cyfrowych. Model ten integruje się z modelami Order " -"i Product i przechowuje odniesienia do nich." +"pobierania dla produktów cyfrowych. Model ten integruje się z modelami Order" +" i Product i przechowuje odniesienia do nich." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Cena zapłacona przez klienta za ten produkt w momencie zakupu." -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Cena zakupu w momencie zamówienia" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" -"Wewnętrzne komentarze dla administratorów dotyczące tego zamówionego produktu" +"Wewnętrzne komentarze dla administratorów dotyczące tego zamówionego " +"produktu" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Uwagi wewnętrzne" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Powiadomienia użytkownika" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Reprezentacja JSON atrybutów tego elementu" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Zamówione atrybuty produktu" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Odniesienie do zamówienia nadrzędnego zawierającego ten produkt" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Zamówienie nadrzędne" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Konkretny produkt powiązany z tą linią zamówienia" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Ilość tego konkretnego produktu w zamówieniu" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Ilość produktu" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Aktualny status tego produktu w zamówieniu" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status linii produktów" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct musi mieć powiązane zamówienie!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Nieprawidłowa akcja określona dla informacji zwrotnej: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" "Nie można usunąć produktów z zamówienia, które nie jest zamówieniem " "oczekującym." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nazwa" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "Adres URL integracji" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Dane uwierzytelniające" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Można mieć tylko jednego domyślnego dostawcę CRM" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Łącze CRM zamówienia" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Łącza CRM zamówień" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Reprezentuje funkcjonalność pobierania zasobów cyfrowych powiązanych z " "zamówieniami. Klasa DigitalAssetDownload zapewnia możliwość zarządzania i " @@ -2766,11 +2795,11 @@ msgstr "" "generowania adresu URL do pobrania zasobu, gdy powiązane zamówienie ma " "status ukończonego." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Pobierz" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Pliki do pobrania" @@ -2971,8 +3000,7 @@ msgstr "Witaj %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Dziękujemy za zamówienie #%(order.pk)s! Z przyjemnością informujemy, że " @@ -3031,8 +3059,8 @@ msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -"Pomyślnie przetworzyliśmy Twoje zamówienie №%(order_uuid)s! Poniżej znajdują " -"się szczegóły zamówienia:" +"Pomyślnie przetworzyliśmy Twoje zamówienie №%(order_uuid)s! Poniżej znajdują" +" się szczegóły zamówienia:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -3087,8 +3115,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Dziękujemy za zamówienie! Z przyjemnością potwierdzamy zakup. Poniżej " @@ -3178,8 +3205,8 @@ msgid "" "Content-Type header for XML." msgstr "" "Obsługuje szczegółową odpowiedź widoku dla mapy witryny. Ta funkcja " -"przetwarza żądanie, pobiera odpowiednią szczegółową odpowiedź mapy witryny i " -"ustawia nagłówek Content-Type dla XML." +"przetwarza żądanie, pobiera odpowiednią szczegółową odpowiedź mapy witryny i" +" ustawia nagłówek Content-Type dla XML." #: engine/core/views.py:155 msgid "" @@ -3221,14 +3248,10 @@ msgstr "Obsługuje logikę zakupu jako firma bez rejestracji." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Obsługuje pobieranie zasobu cyfrowego powiązanego z zamówieniem.\n" -"Ta funkcja próbuje obsłużyć plik zasobu cyfrowego znajdujący się w katalogu " -"przechowywania projektu. Jeśli plik nie zostanie znaleziony, zgłaszany jest " -"błąd HTTP 404 wskazujący, że zasób jest niedostępny." +"Ta funkcja próbuje obsłużyć plik zasobu cyfrowego znajdujący się w katalogu przechowywania projektu. Jeśli plik nie zostanie znaleziony, zgłaszany jest błąd HTTP 404 wskazujący, że zasób jest niedostępny." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3257,19 +3280,15 @@ msgstr "nie znaleziono favicon" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Obsługuje żądania favicon strony internetowej.\n" -"Ta funkcja próbuje obsłużyć plik favicon znajdujący się w katalogu " -"statycznym projektu. Jeśli plik favicon nie zostanie znaleziony, zgłaszany " -"jest błąd HTTP 404 wskazujący, że zasób jest niedostępny." +"Ta funkcja próbuje obsłużyć plik favicon znajdujący się w katalogu statycznym projektu. Jeśli plik favicon nie zostanie znaleziony, zgłaszany jest błąd HTTP 404 wskazujący, że zasób jest niedostępny." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Przekierowuje żądanie na stronę indeksu administratora. Funkcja obsługuje " @@ -3278,8 +3297,8 @@ msgstr "" "przekierowania HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Zwraca aktualną wersję aplikacji eVibes." +msgid "Returns current version of the Schon. " +msgstr "Zwraca aktualną wersję aplikacji Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3292,30 +3311,31 @@ msgstr "Zwraca zmienne niestandardowe dla Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definiuje zestaw widoków do zarządzania operacjami związanymi z Evibes. " -"Klasa EvibesViewSet dziedziczy z ModelViewSet i zapewnia funkcjonalność do " -"obsługi akcji i operacji na encjach Evibes. Obejmuje ona obsługę " -"dynamicznych klas serializatora w oparciu o bieżącą akcję, konfigurowalne " -"uprawnienia i formaty renderowania." +"Definiuje zestaw widoków do zarządzania operacjami związanymi z schon. Klasa" +" SchonViewSet dziedziczy z ModelViewSet i zapewnia funkcjonalność do obsługi" +" akcji i operacji na encjach schon. Obejmuje ona obsługę dynamicznych klas " +"serializatora w oparciu o bieżącą akcję, konfigurowalne uprawnienia i " +"formaty renderowania." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Reprezentuje zestaw widoków do zarządzania obiektami AttributeGroup. " "Obsługuje operacje związane z AttributeGroup, w tym filtrowanie, " "serializację i pobieranie danych. Klasa ta jest częścią warstwy API " -"aplikacji i zapewnia ustandaryzowany sposób przetwarzania żądań i odpowiedzi " -"dla danych AttributeGroup." +"aplikacji i zapewnia ustandaryzowany sposób przetwarzania żądań i odpowiedzi" +" dla danych AttributeGroup." #: engine/core/viewsets.py:179 msgid "" @@ -3338,14 +3358,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Zestaw widoków do zarządzania obiektami AttributeValue. Ten viewset zapewnia " -"funkcjonalność do listowania, pobierania, tworzenia, aktualizowania i " +"Zestaw widoków do zarządzania obiektami AttributeValue. Ten viewset zapewnia" +" funkcjonalność do listowania, pobierania, tworzenia, aktualizowania i " "usuwania obiektów AttributeValue. Integruje się z mechanizmami viewset " -"Django REST Framework i używa odpowiednich serializatorów dla różnych akcji. " -"Możliwości filtrowania są dostarczane przez DjangoFilterBackend." +"Django REST Framework i używa odpowiednich serializatorów dla różnych akcji." +" Możliwości filtrowania są dostarczane przez DjangoFilterBackend." #: engine/core/viewsets.py:217 msgid "" @@ -3356,8 +3376,8 @@ msgid "" "can access specific data." msgstr "" "Zarządza widokami dla operacji związanych z kategoriami. Klasa " -"CategoryViewSet jest odpowiedzialna za obsługę operacji związanych z modelem " -"kategorii w systemie. Obsługuje pobieranie, filtrowanie i serializowanie " +"CategoryViewSet jest odpowiedzialna za obsługę operacji związanych z modelem" +" kategorii w systemie. Obsługuje pobieranie, filtrowanie i serializowanie " "danych kategorii. Zestaw widoków wymusza również uprawnienia, aby zapewnić, " "że tylko autoryzowani użytkownicy mają dostęp do określonych danych." @@ -3378,7 +3398,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3386,9 +3406,9 @@ msgstr "" "Zarządza operacjami związanymi z modelem `Product` w systemie. Ta klasa " "zapewnia zestaw widoków do zarządzania produktami, w tym ich filtrowania, " "serializacji i operacji na konkretnych instancjach. Rozszerza się z " -"`EvibesViewSet`, aby używać wspólnej funkcjonalności i integruje się z " -"frameworkiem Django REST dla operacji RESTful API. Zawiera metody pobierania " -"szczegółów produktu, stosowania uprawnień i uzyskiwania dostępu do " +"`SchonViewSet`, aby używać wspólnej funkcjonalności i integruje się z " +"frameworkiem Django REST dla operacji RESTful API. Zawiera metody pobierania" +" szczegółów produktu, stosowania uprawnień i uzyskiwania dostępu do " "powiązanych informacji zwrotnych o produkcie." #: engine/core/viewsets.py:605 @@ -3401,8 +3421,8 @@ msgid "" msgstr "" "Reprezentuje zestaw widoków do zarządzania obiektami Vendor. Ten zestaw " "widoków umożliwia pobieranie, filtrowanie i serializowanie danych dostawcy. " -"Definiuje zestaw zapytań, konfiguracje filtrów i klasy serializatora używane " -"do obsługi różnych działań. Celem tej klasy jest zapewnienie usprawnionego " +"Definiuje zestaw zapytań, konfiguracje filtrów i klasy serializatora używane" +" do obsługi różnych działań. Celem tej klasy jest zapewnienie usprawnionego " "dostępu do zasobów związanych z Vendorem poprzez framework Django REST." #: engine/core/viewsets.py:625 @@ -3410,8 +3430,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentacja zestawu widoków obsługujących obiekty opinii. Ta klasa " @@ -3419,7 +3439,7 @@ msgstr "" "filtrowaniem i pobieraniem szczegółów. Celem tego zestawu widoków jest " "zapewnienie różnych serializatorów dla różnych akcji i zaimplementowanie " "opartej na uprawnieniach obsługi dostępnych obiektów opinii. Rozszerza " -"bazowy `EvibesViewSet` i wykorzystuje system filtrowania Django do " +"bazowy `SchonViewSet` i wykorzystuje system filtrowania Django do " "odpytywania danych." #: engine/core/viewsets.py:652 @@ -3427,9 +3447,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet do zarządzania zamówieniami i powiązanymi operacjami. Klasa ta " @@ -3445,8 +3465,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Udostępnia zestaw widoków do zarządzania jednostkami OrderProduct. Ten " @@ -3479,8 +3499,8 @@ msgstr "Obsługuje operacje związane z danymi Stock w systemie." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3504,8 +3524,8 @@ msgstr "" "Ta klasa zapewnia funkcjonalność zestawu widoków do zarządzania obiektami " "`Address`. Klasa AddressViewSet umożliwia operacje CRUD, filtrowanie i " "niestandardowe akcje związane z jednostkami adresowymi. Obejmuje ona " -"wyspecjalizowane zachowania dla różnych metod HTTP, zastępowanie serializera " -"i obsługę uprawnień w oparciu o kontekst żądania." +"wyspecjalizowane zachowania dla różnych metod HTTP, zastępowanie serializera" +" i obsługę uprawnień w oparciu o kontekst żądania." #: engine/core/viewsets.py:1254 #, python-brace-format diff --git a/engine/core/locale/pt_BR/LC_MESSAGES/django.mo b/engine/core/locale/pt_BR/LC_MESSAGES/django.mo index 08892ec2..fe8da408 100644 Binary files a/engine/core/locale/pt_BR/LC_MESSAGES/django.mo and b/engine/core/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/pt_BR/LC_MESSAGES/django.po b/engine/core/locale/pt_BR/LC_MESSAGES/django.po index 8b69c4f3..20472144 100644 --- a/engine/core/locale/pt_BR/LC_MESSAGES/django.po +++ b/engine/core/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Está ativo" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Se definido como false, esse objeto não poderá ser visto por usuários sem a " "permissão necessária" @@ -76,8 +77,8 @@ msgstr "Carimbos de data/hora" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Ativar o %(verbose_name_plural)s selecionado" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Ativar %(verbose_name_plural)s selecionado" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -85,21 +86,21 @@ msgstr "Os itens selecionados foram ativados!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Desativar o %(verbose_name_plural)s selecionado" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Desativar o selecionado %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Os itens selecionados foram desativados!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Valor do atributo" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Valores de atributos" @@ -119,12 +120,12 @@ msgstr "Estoque" msgid "stocks" msgstr "Ações" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Pedido de produto" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Solicitar produtos" @@ -132,7 +133,35 @@ msgstr "Solicitar produtos" msgid "children" msgstr "Crianças" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Tem imagens" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Exportar %(verbose_name_plural)s selecionado para feeds de mercados" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" +"Os arquivos selecionados %(verbose_name_plural)s foram marcados para " +"exportação." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Banir %(verbose_name_plural)s selecionado dos feeds dos mercados" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" +"Os produtos selecionados %(verbose_name_plural)s foram proibidos de " +"exportação." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Configuração" @@ -156,7 +185,8 @@ msgstr "Entregue" msgid "canceled" msgstr "Cancelado" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Falha" @@ -208,8 +238,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Aplicar somente uma chave para ler dados permitidos do cache.\n" -"Aplicar chave, dados e tempo limite com autenticação para gravar dados no " -"cache." +"Aplicar chave, dados e tempo limite com autenticação para gravar dados no cache." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -273,7 +302,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Reescrever um grupo de atributos existente salvando os não editáveis" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Reescreva alguns campos de um grupo de atributos existente salvando os não " "editáveis" @@ -324,7 +354,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Reescreva um valor de atributo existente salvando os não editáveis" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Reescreva alguns campos de um valor de atributo existente salvando os não " "editáveis" @@ -381,12 +412,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Pesquisa de substring sem distinção entre maiúsculas e minúsculas em " -"human_readable_id, order_products.product.name e order_products.product." -"partnumber" +"human_readable_id, order_products.product.name e " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -422,9 +453,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordene por uma das seguintes opções: uuid, human_readable_id, user_email, " "user, status, created, modified, buy_time, random. Prefixe com '-' para " @@ -580,7 +611,8 @@ msgstr "recuperar a lista de desejos pendente atual de um usuário" #: engine/core/docs/drf/viewsets.py:545 msgid "retrieves a current pending wishlist of an authenticated user" -msgstr "recupera uma lista de desejos pendente atual de um usuário autenticado" +msgstr "" +"recupera uma lista de desejos pendente atual de um usuário autenticado" #: engine/core/docs/drf/viewsets.py:555 msgid "add product to wishlist" @@ -625,28 +657,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrar por um ou mais pares de nome/valor de atributo. \n" "- **Sintaxe**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- Métodos** (o padrão é `icontains` se omitido): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- Digitação de valores**: JSON é tentado primeiro (para que você possa " -"passar listas/dicas), `true`/`false` para booleanos, inteiros, flutuantes; " -"caso contrário, é tratado como string. \n" -"- Base64**: prefixo com `b64-` para codificar o valor bruto com base64 de " -"forma segura para a URL. \n" +"- Métodos** (o padrão é `icontains` se omitido): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- Digitação de valores**: JSON é tentado primeiro (para que você possa passar listas/dicas), `true`/`false` para booleanos, inteiros, flutuantes; caso contrário, é tratado como string. \n" +"- Base64**: prefixo com `b64-` para codificar o valor bruto com base64 de forma segura para a URL. \n" "Exemplos: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -661,14 +683,11 @@ msgstr "UUID (exato) do produto" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Lista de campos separada por vírgulas para classificação. Prefixe com `-` " -"para classificação decrescente. \n" -"**Permitido:** uuid, classificação, nome, slug, criado, modificado, preço, " -"aleatório" +"Lista de campos separada por vírgulas para classificação. Prefixe com `-` para classificação decrescente. \n" +"**Permitido:** uuid, classificação, nome, slug, criado, modificado, preço, aleatório" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -896,7 +915,8 @@ msgstr "Delete a promo code" #: engine/core/docs/drf/viewsets.py:1196 msgid "rewrite an existing promo code saving non-editables" -msgstr "Reescreva um código promocional existente salvando itens não editáveis" +msgstr "" +"Reescreva um código promocional existente salvando itens não editáveis" #: engine/core/docs/drf/viewsets.py:1203 msgid "rewrite some fields of an existing promo code saving non-editables" @@ -1212,8 +1232,8 @@ msgstr "Comprar um pedido" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Envie os atributos como uma string formatada como attr1=value1,attr2=value2" @@ -1234,9 +1254,9 @@ msgstr "Orderproduct {order_product_uuid} não encontrado!" msgid "original address string provided by the user" msgstr "Cadeia de endereços original fornecida pelo usuário" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1252,8 +1272,8 @@ msgstr "ElasticSearch - funciona muito bem" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Atributos" @@ -1290,7 +1310,8 @@ msgstr "" "Quais atributos e valores podem ser usados para filtrar essa categoria." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "Preços mínimo e máximo dos produtos dessa categoria, se disponíveis." #: engine/core/graphene/object_types.py:234 @@ -1328,7 +1349,7 @@ msgid "represents feedback from a user." msgstr "Representa o feedback de um usuário." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notificações" @@ -1336,7 +1357,7 @@ msgstr "Notificações" msgid "download url for this order product if applicable" msgstr "URL de download para este produto do pedido, se aplicável" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1344,7 +1365,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "Uma lista dos produtos solicitados nesse pedido" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Endereço de cobrança" @@ -1372,7 +1393,7 @@ msgstr "Todos os produtos estão no pedido digital?" msgid "transactions for this order" msgstr "Transações para esta ordem" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Pedidos" @@ -1389,7 +1410,7 @@ msgstr "Imagens do produto" msgid "category" msgstr "Categoria" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Feedbacks" @@ -1430,7 +1451,7 @@ msgstr "Produtos disponíveis apenas para pedidos pessoais" msgid "discount price" msgstr "Preço com desconto" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produtos" @@ -1442,7 +1463,7 @@ msgstr "Códigos promocionais" msgid "products on sale" msgstr "Produtos à venda" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promoções" @@ -1450,7 +1471,7 @@ msgstr "Promoções" msgid "vendor" msgstr "Vendor" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1458,11 +1479,11 @@ msgstr "Vendor" msgid "product" msgstr "Produto" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produtos da lista de desejos" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Listas de desejos" @@ -1579,7 +1600,7 @@ msgstr "Grupo de atributos pai" msgid "attribute group's name" msgstr "Nome do grupo de atributos" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Grupo de atributos" @@ -1597,9 +1618,9 @@ msgstr "" "fornecedores externos e seus requisitos de interação. A classe Vendor é " "usada para definir e gerenciar informações relacionadas a um fornecedor " "externo. Ela armazena o nome do fornecedor, os detalhes de autenticação " -"necessários para a comunicação e a marcação percentual aplicada aos produtos " -"recuperados do fornecedor. Esse modelo também mantém metadados e restrições " -"adicionais, tornando-o adequado para uso em sistemas que interagem com " +"necessários para a comunicação e a marcação percentual aplicada aos produtos" +" recuperados do fornecedor. Esse modelo também mantém metadados e restrições" +" adicionais, tornando-o adequado para uso em sistemas que interagem com " "fornecedores terceirizados." #: engine/core/models.py:122 @@ -1770,13 +1791,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Representa um objeto de marca no sistema. Essa classe lida com informações e " -"atributos relacionados a uma marca, incluindo seu nome, logotipos, " +"Representa um objeto de marca no sistema. Essa classe lida com informações e" +" atributos relacionados a uma marca, incluindo seu nome, logotipos, " "descrição, categorias associadas, um slug exclusivo e ordem de prioridade. " -"Ela permite a organização e a representação de dados relacionados à marca no " -"aplicativo." +"Ela permite a organização e a representação de dados relacionados à marca no" +" aplicativo." #: engine/core/models.py:456 msgid "name of this brand" @@ -1820,8 +1842,8 @@ msgstr "Categorias" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1854,8 +1876,8 @@ msgstr "Preço de venda" msgid "the product associated with this stock entry" msgstr "O produto associado a essa entrada em estoque" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Produto associado" @@ -1915,8 +1937,8 @@ msgstr "" "utilitárias relacionadas para recuperar classificações, contagens de " "feedback, preço, quantidade e total de pedidos. Projetado para uso em um " "sistema que lida com comércio eletrônico ou gerenciamento de estoque. Essa " -"classe interage com modelos relacionados (como Category, Brand e ProductTag) " -"e gerencia o armazenamento em cache das propriedades acessadas com " +"classe interage com modelos relacionados (como Category, Brand e ProductTag)" +" e gerencia o armazenamento em cache das propriedades acessadas com " "frequência para melhorar o desempenho. É usada para definir e manipular " "dados de produtos e suas informações associadas em um aplicativo." @@ -1957,7 +1979,7 @@ msgstr "Fornecer um nome de identificação claro para o produto" msgid "product name" msgstr "Nome do produto" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Adicione uma descrição detalhada do produto" @@ -1977,156 +1999,165 @@ msgstr "Número da peça" msgid "stock keeping unit for this product" msgstr "Unidade de Manutenção de Estoque para este produto" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Se exportar este produto para mercados" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Exportar para mercados" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Representa um atributo no sistema. Essa classe é usada para definir e " "gerenciar atributos, que são partes personalizáveis de dados que podem ser " -"associadas a outras entidades. Os atributos têm categorias, grupos, tipos de " -"valores e nomes associados. O modelo é compatível com vários tipos de " +"associadas a outras entidades. Os atributos têm categorias, grupos, tipos de" +" valores e nomes associados. O modelo é compatível com vários tipos de " "valores, incluindo string, inteiro, float, booleano, matriz e objeto. Isso " "permite a estruturação dinâmica e flexível dos dados." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Grupo desse atributo" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Cordas" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Inteiro" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Flutuação" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Booleano" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Matriz" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objeto" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Tipo do valor do atributo" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Tipo de valor" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Nome desse atributo" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Nome do atributo" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "é filtrável" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Quais atributos e valores podem ser usados para filtrar essa categoria." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atributo" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Representa um valor específico para um atributo que está vinculado a um " -"produto. Ele vincula o \"atributo\" a um \"valor\" exclusivo, permitindo uma " -"melhor organização e representação dinâmica das características do produto." +"produto. Ele vincula o \"atributo\" a um \"valor\" exclusivo, permitindo uma" +" melhor organização e representação dinâmica das características do produto." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Atributo desse valor" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "O produto específico associado ao valor desse atributo" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "O valor específico para esse atributo" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Representa uma imagem de produto associada a um produto no sistema. Essa " "classe foi projetada para gerenciar imagens de produtos, incluindo a " "funcionalidade de carregar arquivos de imagem, associá-los a produtos " -"específicos e determinar sua ordem de exibição. Ela também inclui um recurso " -"de acessibilidade com texto alternativo para as imagens." +"específicos e determinar sua ordem de exibição. Ela também inclui um recurso" +" de acessibilidade com texto alternativo para as imagens." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" -msgstr "Forneça um texto alternativo para a imagem para fins de acessibilidade" +msgstr "" +"Forneça um texto alternativo para a imagem para fins de acessibilidade" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Texto alternativo da imagem" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Faça o upload do arquivo de imagem para este produto" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Imagem do produto" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Determina a ordem em que as imagens são exibidas" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioridade de exibição" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "O produto que esta imagem representa" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Imagens do produto" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Representa uma campanha promocional para produtos com desconto. Essa classe " "é usada para definir e gerenciar campanhas promocionais que oferecem um " @@ -2135,39 +2166,39 @@ msgstr "" "vinculá-la aos produtos aplicáveis. Ela se integra ao catálogo de produtos " "para determinar os itens afetados na campanha." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Desconto percentual para os produtos selecionados" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Porcentagem de desconto" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Forneça um nome exclusivo para essa promoção" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Nome da promoção" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Descrição da promoção" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Selecione quais produtos estão incluídos nessa promoção" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Produtos incluídos" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promoção" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2176,129 +2207,129 @@ msgid "" msgstr "" "Representa a lista de desejos de um usuário para armazenar e gerenciar os " "produtos desejados. A classe oferece funcionalidade para gerenciar uma " -"coleção de produtos, suportando operações como adicionar e remover produtos, " -"bem como operações de suporte para adicionar e remover vários produtos de " +"coleção de produtos, suportando operações como adicionar e remover produtos," +" bem como operações de suporte para adicionar e remover vários produtos de " "uma só vez." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produtos que o usuário marcou como desejados" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Usuário que possui esta lista de desejos" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Proprietário da lista de desejos" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Lista de desejos" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"Representa um registro de documentário vinculado a um produto. Essa classe é " -"usada para armazenar informações sobre documentários relacionados a produtos " -"específicos, incluindo uploads de arquivos e seus metadados. Ela contém " -"métodos e propriedades para lidar com o tipo de arquivo e o caminho de " -"armazenamento dos arquivos do documentário. Ela estende a funcionalidade de " -"mixins específicos e fornece recursos personalizados adicionais." +"Representa um registro de documentário vinculado a um produto. Essa classe é" +" usada para armazenar informações sobre documentários relacionados a " +"produtos específicos, incluindo uploads de arquivos e seus metadados. Ela " +"contém métodos e propriedades para lidar com o tipo de arquivo e o caminho " +"de armazenamento dos arquivos do documentário. Ela estende a funcionalidade " +"de mixins específicos e fornece recursos personalizados adicionais." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentário" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentários" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Não resolvido" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Representa uma entidade de endereço que inclui detalhes de localização e " "associações com um usuário. Fornece funcionalidade para armazenamento de " "dados geográficos e de endereço, bem como integração com serviços de " "geocodificação. Essa classe foi projetada para armazenar informações " -"detalhadas de endereço, incluindo componentes como rua, cidade, região, país " -"e geolocalização (longitude e latitude). Ela oferece suporte à integração " +"detalhadas de endereço, incluindo componentes como rua, cidade, região, país" +" e geolocalização (longitude e latitude). Ela oferece suporte à integração " "com APIs de geocodificação, permitindo o armazenamento de respostas brutas " "de API para processamento ou inspeção posterior. A classe também permite " "associar um endereço a um usuário, facilitando o tratamento personalizado " "dos dados." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Linha de endereço do cliente" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Linha de endereço" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Rua" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distrito" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Cidade" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Região" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Código postal" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "País" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Ponto de geolocalização (Longitude, Latitude)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Resposta JSON completa do geocodificador para este endereço" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Resposta JSON armazenada do serviço de geocodificação" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Endereço" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Endereços" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2315,96 +2346,96 @@ msgstr "" "funcionalidade para validar e aplicar o código promocional a um pedido, " "garantindo que as restrições sejam atendidas." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Código exclusivo usado por um usuário para resgatar um desconto" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identificador de código promocional" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Valor de desconto fixo aplicado se a porcentagem não for usada" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Valor do desconto fixo" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Desconto percentual aplicado se o valor fixo não for usado" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Desconto percentual" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Registro de data e hora em que o código promocional expira" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Tempo de validade final" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "" "Registro de data e hora a partir do qual esse código promocional é válido" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Hora de início da validade" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Registro de data e hora em que o código promocional foi usado, em branco se " "ainda não tiver sido usado" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Registro de data e hora de uso" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Usuário atribuído a esse código promocional, se aplicável" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Usuário atribuído" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Código promocional" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Códigos promocionais" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"Apenas um tipo de desconto deve ser definido (valor ou porcentagem), mas não " -"ambos ou nenhum." +"Apenas um tipo de desconto deve ser definido (valor ou porcentagem), mas não" +" ambos ou nenhum." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "O código promocional já foi usado" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Tipo de desconto inválido para o código promocional {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2416,138 +2447,139 @@ msgstr "" "atualizados. Da mesma forma, a funcionalidade suporta o gerenciamento dos " "produtos no ciclo de vida do pedido." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "O endereço de cobrança usado para esse pedido" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Código promocional opcional aplicado a este pedido" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Código promocional aplicado" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "O endereço de entrega usado para esse pedido" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Endereço de entrega" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Status atual do pedido em seu ciclo de vida" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Status do pedido" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Estrutura JSON de notificações a serem exibidas aos usuários; na interface " "do usuário do administrador, é usada a visualização de tabela" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Representação JSON dos atributos do pedido para esse pedido" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "O usuário que fez o pedido" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Usuário" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "O registro de data e hora em que o pedido foi finalizado" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Tempo de compra" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Um identificador legível por humanos para o pedido" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID legível por humanos" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Pedido" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Um usuário deve ter apenas uma ordem pendente por vez!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "Não é possível adicionar produtos a um pedido que não esteja pendente" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Não é possível adicionar produtos inativos ao pedido" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "" "Não é possível adicionar mais produtos do que os disponíveis em estoque" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "Não é possível remover produtos de um pedido que não esteja pendente" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} não existe com a consulta <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "O código promocional não existe" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" -"Você só pode comprar produtos físicos com o endereço de entrega especificado!" +"Você só pode comprar produtos físicos com o endereço de entrega " +"especificado!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "O endereço não existe" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "Não é possível comprar neste momento, tente novamente em alguns minutos." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Valor de força inválido" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Você não pode comprar um pedido vazio!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Não é possível comprar um pedido sem um usuário!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Um usuário sem saldo não pode comprar com saldo!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Fundos insuficientes para concluir o pedido" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2555,7 +2587,7 @@ msgstr "" "Não é possível comprar sem registro, forneça as seguintes informações: nome " "do cliente, e-mail do cliente, número de telefone do cliente" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2563,7 +2595,7 @@ msgstr "" "Método de pagamento inválido: {payment_method} de " "{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2572,40 +2604,41 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "Gerencia o feedback dos usuários sobre os produtos. Essa classe foi criada " -"para capturar e armazenar o feedback dos usuários sobre produtos específicos " -"que eles compraram. Ela contém atributos para armazenar comentários de " +"para capturar e armazenar o feedback dos usuários sobre produtos específicos" +" que eles compraram. Ela contém atributos para armazenar comentários de " "usuários, uma referência ao produto relacionado no pedido e uma " "classificação atribuída pelo usuário. A classe usa campos de banco de dados " "para modelar e gerenciar com eficiência os dados de feedback." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" "Comentários fornecidos pelo usuário sobre sua experiência com o produto" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Comentários de feedback" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Faz referência ao produto específico em um pedido sobre o qual se trata esse " -"feedback" +"Faz referência ao produto específico em um pedido sobre o qual se trata esse" +" feedback" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Produto de pedido relacionado" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Classificação atribuída pelo usuário ao produto" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Avaliação do produto" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2618,138 +2651,138 @@ msgid "" "Product models and stores a reference to them." msgstr "" "Representa produtos associados a pedidos e seus atributos. O modelo " -"OrderProduct mantém informações sobre um produto que faz parte de um pedido, " -"incluindo detalhes como preço de compra, quantidade, atributos do produto e " -"status. Ele gerencia as notificações para o usuário e os administradores e " +"OrderProduct mantém informações sobre um produto que faz parte de um pedido," +" incluindo detalhes como preço de compra, quantidade, atributos do produto e" +" status. Ele gerencia as notificações para o usuário e os administradores e " "trata de operações como devolver o saldo do produto ou adicionar feedback. " "Esse modelo também fornece métodos e propriedades que dão suporte à lógica " "comercial, como o cálculo do preço total ou a geração de um URL de download " "para produtos digitais. O modelo se integra aos modelos Order e Product e " "armazena uma referência a eles." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "O preço pago pelo cliente por esse produto no momento da compra" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Preço de compra no momento do pedido" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" "Comentários internos para administradores sobre este produto encomendado" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Comentários internos" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Notificações do usuário" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Representação JSON dos atributos desse item" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Atributos ordenados do produto" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Referência ao pedido pai que contém esse produto" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Ordem dos pais" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "O produto específico associado a essa linha de pedido" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Quantidade desse produto específico no pedido" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Quantidade do produto" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Status atual desse produto no pedido" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status da linha de produtos" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "O Orderproduct deve ter um pedido associado!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Ação incorreta especificada para o feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "você não pode dar feedback a um pedido que não foi recebido" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nome" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL da integração" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Credenciais de autenticação" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Você só pode ter um provedor de CRM padrão" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRMs" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Link do CRM do pedido" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Links de CRM dos pedidos" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Representa a funcionalidade de download de ativos digitais associados a " "pedidos. A classe DigitalAssetDownload oferece a capacidade de gerenciar e " -"acessar downloads relacionados a produtos de pedidos. Ela mantém informações " -"sobre o produto do pedido associado, o número de downloads e se o ativo está " -"visível publicamente. Ela inclui um método para gerar um URL para download " -"do ativo quando o pedido associado estiver em um status concluído." +"acessar downloads relacionados a produtos de pedidos. Ela mantém informações" +" sobre o produto do pedido associado, o número de downloads e se o ativo " +"está visível publicamente. Ela inclui um método para gerar um URL para " +"download do ativo quando o pedido associado estiver em um status concluído." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Baixar" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Downloads" @@ -2950,8 +2983,7 @@ msgstr "Olá %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Obrigado por seu pedido #%(order.pk)s! Temos o prazer de informá-lo de que " @@ -3065,8 +3097,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Obrigado por seu pedido! Temos o prazer de confirmar sua compra. Abaixo " @@ -3145,8 +3176,8 @@ msgid "" "ensures the response includes the appropriate content type header for XML." msgstr "" "Trata a solicitação do índice do mapa do site e retorna uma resposta XML. " -"Ele garante que a resposta inclua o cabeçalho de tipo de conteúdo apropriado " -"para XML." +"Ele garante que a resposta inclua o cabeçalho de tipo de conteúdo apropriado" +" para XML." #: engine/core/views.py:119 msgid "" @@ -3173,8 +3204,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Manipula operações de cache, como ler e definir dados de cache com uma chave " -"e um tempo limite especificados." +"Manipula operações de cache, como ler e definir dados de cache com uma chave" +" e um tempo limite especificados." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3199,14 +3230,10 @@ msgstr "Lida com a lógica de comprar como uma empresa sem registro." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Trata do download de um ativo digital associado a um pedido.\n" -"Essa função tenta servir o arquivo de ativo digital localizado no diretório " -"de armazenamento do projeto. Se o arquivo não for encontrado, será gerado um " -"erro HTTP 404 para indicar que o recurso não está disponível." +"Essa função tenta servir o arquivo de ativo digital localizado no diretório de armazenamento do projeto. Se o arquivo não for encontrado, será gerado um erro HTTP 404 para indicar que o recurso não está disponível." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3235,29 +3262,25 @@ msgstr "favicon não encontrado" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Trata as solicitações do favicon de um site.\n" -"Essa função tenta servir o arquivo favicon localizado no diretório estático " -"do projeto. Se o arquivo favicon não for encontrado, será gerado um erro " -"HTTP 404 para indicar que o recurso não está disponível." +"Essa função tenta servir o arquivo favicon localizado no diretório estático do projeto. Se o arquivo favicon não for encontrado, será gerado um erro HTTP 404 para indicar que o recurso não está disponível." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"Redireciona a solicitação para a página de índice do administrador. A função " -"lida com as solicitações HTTP recebidas e as redireciona para a página de " +"Redireciona a solicitação para a página de índice do administrador. A função" +" lida com as solicitações HTTP recebidas e as redireciona para a página de " "índice da interface de administração do Django. Ela usa a função `redirect` " "do Django para lidar com o redirecionamento HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Retorna a versão atual do eVibes." +msgid "Returns current version of the Schon. " +msgstr "Retorna a versão atual do Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3270,24 +3293,25 @@ msgstr "Retorna variáveis personalizadas para o Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Define um conjunto de visualizações para gerenciar operações relacionadas ao " -"Evibes. A classe EvibesViewSet é herdeira do ModelViewSet e oferece " -"funcionalidade para lidar com ações e operações em entidades Evibes. Ela " +"Define um conjunto de visualizações para gerenciar operações relacionadas ao" +" schon. A classe SchonViewSet é herdeira do ModelViewSet e oferece " +"funcionalidade para lidar com ações e operações em entidades schon. Ela " "inclui suporte para classes de serializadores dinâmicos com base na ação " "atual, permissões personalizáveis e formatos de renderização." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Representa um conjunto de visualizações para gerenciar objetos " "AttributeGroup. Trata das operações relacionadas ao AttributeGroup, " @@ -3304,11 +3328,11 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"Trata de operações relacionadas a objetos de atributo no aplicativo. Fornece " -"um conjunto de pontos de extremidade de API para interagir com dados de " +"Trata de operações relacionadas a objetos de atributo no aplicativo. Fornece" +" um conjunto de pontos de extremidade de API para interagir com dados de " "atributos. Essa classe gerencia a consulta, a filtragem e a serialização de " -"objetos Attribute, permitindo o controle dinâmico dos dados retornados, como " -"a filtragem por campos específicos ou a recuperação de informações " +"objetos Attribute, permitindo o controle dinâmico dos dados retornados, como" +" a filtragem por campos específicos ou a recuperação de informações " "detalhadas ou simplificadas, dependendo da solicitação." #: engine/core/viewsets.py:198 @@ -3316,8 +3340,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Um conjunto de exibições para gerenciar objetos AttributeValue. Esse " "conjunto de visualizações fornece funcionalidade para listar, recuperar, " @@ -3337,8 +3361,8 @@ msgstr "" "Gerencia as visualizações das operações relacionadas à categoria. A classe " "CategoryViewSet é responsável pelo tratamento das operações relacionadas ao " "modelo de categoria no sistema. Ela suporta a recuperação, a filtragem e a " -"serialização de dados de categoria. O conjunto de visualizações também impõe " -"permissões para garantir que somente usuários autorizados possam acessar " +"serialização de dados de categoria. O conjunto de visualizações também impõe" +" permissões para garantir que somente usuários autorizados possam acessar " "dados específicos." #: engine/core/viewsets.py:346 @@ -3348,8 +3372,8 @@ msgid "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"Representa um conjunto de visualizações para gerenciar instâncias de marcas. " -"Essa classe fornece funcionalidade para consulta, filtragem e serialização " +"Representa um conjunto de visualizações para gerenciar instâncias de marcas." +" Essa classe fornece funcionalidade para consulta, filtragem e serialização " "de objetos de marca. Ela usa a estrutura ViewSet do Django para simplificar " "a implementação de pontos de extremidade da API para objetos de marca." @@ -3358,15 +3382,15 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Gerencia as operações relacionadas ao modelo `Product` no sistema. Essa " "classe fornece um conjunto de visualizações para gerenciar produtos, " -"incluindo filtragem, serialização e operações em instâncias específicas. Ela " -"se estende do `EvibesViewSet` para usar a funcionalidade comum e se integra " +"incluindo filtragem, serialização e operações em instâncias específicas. Ela" +" se estende do `SchonViewSet` para usar a funcionalidade comum e se integra " "à estrutura Django REST para operações de API RESTful. Inclui métodos para " "recuperar detalhes do produto, aplicar permissões e acessar o feedback " "relacionado de um produto." @@ -3383,24 +3407,24 @@ msgstr "" "fornecedor. Esse conjunto de visualizações permite a busca, a filtragem e a " "serialização de dados do fornecedor. Ele define o conjunto de consultas, as " "configurações de filtro e as classes de serializador usadas para lidar com " -"diferentes ações. O objetivo dessa classe é fornecer acesso simplificado aos " -"recursos relacionados ao Vendor por meio da estrutura Django REST." +"diferentes ações. O objetivo dessa classe é fornecer acesso simplificado aos" +" recursos relacionados ao Vendor por meio da estrutura Django REST." #: engine/core/viewsets.py:625 msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representação de um conjunto de visualizações que manipula objetos de " -"feedback. Essa classe gerencia operações relacionadas a objetos de feedback, " -"incluindo listagem, filtragem e recuperação de detalhes. O objetivo desse " +"feedback. Essa classe gerencia operações relacionadas a objetos de feedback," +" incluindo listagem, filtragem e recuperação de detalhes. O objetivo desse " "conjunto de visualizações é fornecer serializadores diferentes para ações " "diferentes e implementar o manuseio baseado em permissão de objetos de " -"feedback acessíveis. Ela estende a base `EvibesViewSet` e faz uso do sistema " +"feedback acessíveis. Ela estende a base `schonViewSet` e faz uso do sistema " "de filtragem do Django para consultar dados." #: engine/core/viewsets.py:652 @@ -3408,14 +3432,14 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"ViewSet para gerenciar pedidos e operações relacionadas. Essa classe oferece " -"funcionalidade para recuperar, modificar e gerenciar objetos de pedido. Ela " -"inclui vários pontos de extremidade para lidar com operações de pedidos, " +"ViewSet para gerenciar pedidos e operações relacionadas. Essa classe oferece" +" funcionalidade para recuperar, modificar e gerenciar objetos de pedido. Ela" +" inclui vários pontos de extremidade para lidar com operações de pedidos, " "como adicionar ou remover produtos, realizar compras para usuários " "registrados e não registrados e recuperar os pedidos pendentes do usuário " "autenticado atual. O ViewSet usa vários serializadores com base na ação " @@ -3426,13 +3450,13 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Fornece um conjunto de visualizações para gerenciar entidades OrderProduct. " -"Esse conjunto de visualizações permite operações CRUD e ações personalizadas " -"específicas do modelo OrderProduct. Ele inclui filtragem, verificações de " +"Esse conjunto de visualizações permite operações CRUD e ações personalizadas" +" específicas do modelo OrderProduct. Ele inclui filtragem, verificações de " "permissão e troca de serializador com base na ação solicitada. Além disso, " "fornece uma ação detalhada para lidar com feedback sobre instâncias de " "OrderProduct" @@ -3461,8 +3485,8 @@ msgstr "Trata de operações relacionadas a dados de estoque no sistema." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3485,8 +3509,8 @@ msgid "" "on the request context." msgstr "" "Essa classe fornece a funcionalidade de conjunto de visualizações para " -"gerenciar objetos `Address`. A classe AddressViewSet permite operações CRUD, " -"filtragem e ações personalizadas relacionadas a entidades de endereço. Ela " +"gerenciar objetos `Address`. A classe AddressViewSet permite operações CRUD," +" filtragem e ações personalizadas relacionadas a entidades de endereço. Ela " "inclui comportamentos especializados para diferentes métodos HTTP, " "substituições de serializadores e tratamento de permissões com base no " "contexto da solicitação." diff --git a/engine/core/locale/ro_RO/LC_MESSAGES/django.mo b/engine/core/locale/ro_RO/LC_MESSAGES/django.mo index 2ea881b9..63988d56 100644 Binary files a/engine/core/locale/ro_RO/LC_MESSAGES/django.mo and b/engine/core/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/ro_RO/LC_MESSAGES/django.po b/engine/core/locale/ro_RO/LC_MESSAGES/django.po index 55637f3a..629d5abc 100644 --- a/engine/core/locale/ro_RO/LC_MESSAGES/django.po +++ b/engine/core/locale/ro_RO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,10 +29,11 @@ msgstr "Este activ" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" -"Dacă este setat la false, acest obiect nu poate fi văzut de utilizatori fără " -"permisiunea necesară" +"Dacă este setat la false, acest obiect nu poate fi văzut de utilizatori fără" +" permisiunea necesară" #: engine/core/abstract.py:26 engine/core/choices.py:18 msgid "created" @@ -76,7 +77,7 @@ msgstr "Timestamps" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Activați %(verbose_name_plural)s selectat" #: engine/core/admin.py:166 @@ -85,21 +86,21 @@ msgstr "Articolele selectate au fost activate!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Dezactivați %(verbose_name_plural)s selectat" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Dezactivează selectat %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Articolele selectate au fost dezactivate!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Atribut Valoare" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Valori ale atributului" @@ -119,12 +120,12 @@ msgstr "Stoc" msgid "stocks" msgstr "Stocuri" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Comanda Produs" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Comandați produse" @@ -132,7 +133,32 @@ msgstr "Comandați produse" msgid "children" msgstr "Copii" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Are imagini" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Exportați %(verbose_name_plural)s selectat în fluxurile piețelor" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "%(verbose_name_plural)s selectate au fost marcate pentru export." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Interziceți %(verbose_name_plural)s selectat din fluxurile piețelor" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "" +"Produsele selectate %(verbose_name_plural)s au fost interzise la export." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Configurare" @@ -156,7 +182,8 @@ msgstr "Livrat" msgid "canceled" msgstr "Anulată" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Eșuat" @@ -194,8 +221,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"Schema OpenApi3 pentru acest API. Formatul poate fi selectat prin negocierea " -"conținutului. Limba poate fi selectată atât cu Accept-Language, cât și cu " +"Schema OpenApi3 pentru acest API. Formatul poate fi selectat prin negocierea" +" conținutului. Limba poate fi selectată atât cu Accept-Language, cât și cu " "parametrul de interogare." #: engine/core/docs/drf/views.py:46 engine/core/graphene/mutations.py:36 @@ -208,8 +235,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Aplicați doar o cheie pentru a citi datele permise din cache.\n" -"Aplicați o cheie, date și timeout cu autentificare pentru a scrie date în " -"cache." +"Aplicați o cheie, date și timeout cu autentificare pentru a scrie date în cache." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -234,8 +260,8 @@ msgstr "Căutare între produse, categorii și mărci" #: engine/core/docs/drf/views.py:144 msgid "global search endpoint to query across project's tables" msgstr "" -"Punct final de căutare globală pentru a efectua interogări în toate tabelele " -"proiectului" +"Punct final de căutare globală pentru a efectua interogări în toate tabelele" +" proiectului" #: engine/core/docs/drf/views.py:153 msgid "purchase an order as a business" @@ -246,8 +272,8 @@ msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -"Achiziționați o comandă ca o afacere, utilizând `products` cu `product_uuid` " -"și `attributes` furnizate." +"Achiziționați o comandă ca o afacere, utilizând `products` cu `product_uuid`" +" și `attributes` furnizate." #: engine/core/docs/drf/views.py:180 msgid "download a digital asset from purchased digital order" @@ -272,10 +298,12 @@ msgstr "Ștergerea unui grup de atribute" #: engine/core/docs/drf/viewsets.py:99 msgid "rewrite an existing attribute group saving non-editables" msgstr "" -"Rescrierea unui grup de atribute existent cu salvarea elementelor needitabile" +"Rescrierea unui grup de atribute existent cu salvarea elementelor " +"needitabile" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rescrierea unor câmpuri ale unui grup de atribute existent, cu salvarea " "elementelor needitabile" @@ -328,7 +356,8 @@ msgstr "" "Rescrierea unei valori de atribut existente care salvează non-editabile" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rescrierea unor câmpuri ale unei valori de atribut existente salvând " "elementele needitabile" @@ -387,8 +416,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Căutare de substring insensibilă la majuscule în human_readable_id, " "order_products.product.name și order_products.product.partnumber" @@ -427,9 +456,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordonați după unul dintre: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Prefixați cu \"-\" pentru " @@ -634,29 +663,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrați după una sau mai multe perechi nume de atribut/valoare. \n" "- **Sintaxa**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- **Metode** (valoarea implicită este `icontains` dacă este omisă): " -"`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, " -"`istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, " -"`gt`, `gte`, `in`\n" -"- **Value typing**: JSON este încercat în primul rând (astfel încât să " -"puteți trece liste/dicte), `true`/`false` pentru booleeni, întregi, float; " -"în caz contrar tratat ca string. \n" -"- **Base64**: prefix cu `b64-` pentru a codifica valoarea brută în baza64 în " -"condiții de siguranță URL. \n" +"- **Metode** (valoarea implicită este `icontains` dacă este omisă): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Value typing**: JSON este încercat în primul rând (astfel încât să puteți trece liste/dicte), `true`/`false` pentru booleeni, întregi, float; în caz contrar tratat ca string. \n" +"- **Base64**: prefix cu `b64-` pentru a codifica valoarea brută în baza64 în condiții de siguranță URL. \n" "Exemple: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -671,12 +689,10 @@ msgstr "(exact) UUID al produsului" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Lista de câmpuri separate prin virgulă după care se face sortarea. Prefixați " -"cu `-` pentru descrescător. \n" +"Lista de câmpuri separate prin virgulă după care se face sortarea. Prefixați cu `-` pentru descrescător. \n" "**Autorizate:** uuid, rating, nume, slug, creat, modificat, preț, aleatoriu" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -748,8 +764,8 @@ msgstr "Autocompletare adresă de intrare" #: engine/core/docs/drf/viewsets.py:848 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -"docker compose exec app poetry run python manage.py deepl_translate -l en-gb " -"-l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " +"docker compose exec app poetry run python manage.py deepl_translate -l en-gb" +" -l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " "it-it -l ja-jp -l kk-kz -l nl-nl -l pl-pl -l pt-br -l ro-ro -l ru-ru -l zh-" "hans -a core -a geo -a plăți -a vibes_auth -a blog" @@ -833,7 +849,8 @@ msgstr "Ștergeți un brand" #: engine/core/docs/drf/viewsets.py:1032 msgid "rewrite an existing brand saving non-editables" -msgstr "Rescrierea unui brand existent care economisește materiale needitabile" +msgstr "" +"Rescrierea unui brand existent care economisește materiale needitabile" #: engine/core/docs/drf/viewsets.py:1039 msgid "rewrite some fields of an existing brand saving non-editables" @@ -885,7 +902,8 @@ msgstr "Ștergeți imaginea unui produs" #: engine/core/docs/drf/viewsets.py:1146 msgid "rewrite an existing product image saving non-editables" -msgstr "Rescrieți o imagine de produs existentă salvând elementele needitabile" +msgstr "" +"Rescrieți o imagine de produs existentă salvând elementele needitabile" #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" @@ -937,7 +955,8 @@ msgstr "Ștergeți o promovare" #: engine/core/docs/drf/viewsets.py:1244 msgid "rewrite an existing promotion saving non-editables" -msgstr "Rescrierea unei promoții existente cu salvarea elementelor needitabile" +msgstr "" +"Rescrierea unei promoții existente cu salvarea elementelor needitabile" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" @@ -1234,8 +1253,8 @@ msgstr "Cumpărați o comandă" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Vă rugăm să trimiteți atributele sub formă de șir format ca attr1=valoare1, " "attr2=valoare2" @@ -1257,9 +1276,9 @@ msgstr "Comandaprodus {order_product_uuid} nu a fost găsită!" msgid "original address string provided by the user" msgstr "Șirul de adrese original furnizat de utilizator" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1275,8 +1294,8 @@ msgstr "ElasticSearch - funcționează ca un farmec" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Atribute" @@ -1314,10 +1333,11 @@ msgstr "" "categorii." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" -"Prețurile minime și maxime pentru produsele din această categorie, dacă sunt " -"disponibile." +"Prețurile minime și maxime pentru produsele din această categorie, dacă sunt" +" disponibile." #: engine/core/graphene/object_types.py:234 msgid "tags for this category" @@ -1353,7 +1373,7 @@ msgid "represents feedback from a user." msgstr "Reprezintă feedback de la un utilizator." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Notificări" @@ -1361,7 +1381,7 @@ msgstr "Notificări" msgid "download url for this order product if applicable" msgstr "URL de descărcare pentru acest produs de comandă, dacă este cazul" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Feedback" @@ -1369,7 +1389,7 @@ msgstr "Feedback" msgid "a list of order products in this order" msgstr "O listă a produselor comandate în această comandă" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Adresa de facturare" @@ -1397,7 +1417,7 @@ msgstr "Sunt toate produsele din comanda digitală" msgid "transactions for this order" msgstr "Tranzacții pentru această comandă" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Ordine" @@ -1414,7 +1434,7 @@ msgstr "Imagini ale produsului" msgid "category" msgstr "Categorie" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Feedback-uri" @@ -1455,7 +1475,7 @@ msgstr "Produse disponibile numai pentru comenzi personale" msgid "discount price" msgstr "Preț redus" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produse" @@ -1467,7 +1487,7 @@ msgstr "Coduri promoționale" msgid "products on sale" msgstr "Produse scoase la vânzare" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promoții" @@ -1475,7 +1495,7 @@ msgstr "Promoții" msgid "vendor" msgstr "Furnizor" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1483,11 +1503,11 @@ msgstr "Furnizor" msgid "product" msgstr "Produs" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Produse dorite" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Liste de dorințe" @@ -1589,8 +1609,8 @@ msgid "" msgstr "" "Reprezintă un grup de atribute, care poate fi ierarhic. Această clasă este " "utilizată pentru gestionarea și organizarea grupurilor de atribute. Un grup " -"de atribute poate avea un grup părinte, formând o structură ierarhică. Acest " -"lucru poate fi util pentru clasificarea și gestionarea mai eficientă a " +"de atribute poate avea un grup părinte, formând o structură ierarhică. Acest" +" lucru poate fi util pentru clasificarea și gestionarea mai eficientă a " "atributelor în cadrul unui sistem complex." #: engine/core/models.py:88 @@ -1605,7 +1625,7 @@ msgstr "Grup de atribute părinte" msgid "attribute group's name" msgstr "Numele grupului de atribute" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Grup de atribute" @@ -1714,8 +1734,8 @@ msgid "" msgstr "" "Reprezintă o etichetă de categorie utilizată pentru produse. Această clasă " "modelează o etichetă de categorie care poate fi utilizată pentru asocierea " -"și clasificarea produselor. Aceasta include atribute pentru un identificator " -"intern al etichetei și un nume de afișare ușor de utilizat." +"și clasificarea produselor. Aceasta include atribute pentru un identificator" +" intern al etichetei și un nume de afișare ușor de utilizat." #: engine/core/models.py:249 msgid "category tag" @@ -1743,9 +1763,9 @@ msgstr "" "include câmpuri pentru metadate și reprezentare vizuală, care servesc drept " "bază pentru caracteristicile legate de categorie. Această clasă este " "utilizată de obicei pentru a defini și gestiona categoriile de produse sau " -"alte grupări similare în cadrul unei aplicații, permițând utilizatorilor sau " -"administratorilor să specifice numele, descrierea și ierarhia categoriilor, " -"precum și să atribuie atribute precum imagini, etichete sau prioritate." +"alte grupări similare în cadrul unei aplicații, permițând utilizatorilor sau" +" administratorilor să specifice numele, descrierea și ierarhia categoriilor," +" precum și să atribuie atribute precum imagini, etichete sau prioritate." #: engine/core/models.py:269 msgid "upload an image representing this category" @@ -1757,7 +1777,8 @@ msgstr "Categorie imagine" #: engine/core/models.py:277 msgid "define a markup percentage for products in this category" -msgstr "Definiți un procent de majorare pentru produsele din această categorie" +msgstr "" +"Definiți un procent de majorare pentru produsele din această categorie" #: engine/core/models.py:286 msgid "parent of this category to form a hierarchical structure" @@ -1796,10 +1817,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Reprezintă un obiect Brand în sistem. Această clasă gestionează informațiile " -"și atributele legate de o marcă, inclusiv numele acesteia, logo-urile, " +"Reprezintă un obiect Brand în sistem. Această clasă gestionează informațiile" +" și atributele legate de o marcă, inclusiv numele acesteia, logo-urile, " "descrierea, categoriile asociate, un slug unic și ordinea de prioritate. " "Aceasta permite organizarea și reprezentarea datelor legate de marcă în " "cadrul aplicației." @@ -1846,8 +1868,8 @@ msgstr "Categorii" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1880,8 +1902,8 @@ msgstr "Prețul de vânzare" msgid "the product associated with this stock entry" msgstr "Produsul asociat cu această intrare în stoc" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Produs asociat" @@ -1936,14 +1958,14 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"Reprezintă un produs cu atribute precum categoria, marca, etichetele, starea " -"digitală, numele, descrierea, numărul piesei și slug-ul. Oferă proprietăți " +"Reprezintă un produs cu atribute precum categoria, marca, etichetele, starea" +" digitală, numele, descrierea, numărul piesei și slug-ul. Oferă proprietăți " "utilitare conexe pentru a prelua evaluări, numărul de comentarii, prețul, " "cantitatea și comenzile totale. Concepută pentru a fi utilizată într-un " "sistem care gestionează comerțul electronic sau inventarul. Această clasă " "interacționează cu modele conexe (cum ar fi Category, Brand și ProductTag) " -"și gestionează memoria cache pentru proprietățile accesate frecvent pentru a " -"îmbunătăți performanța. Este utilizată pentru a defini și manipula datele " +"și gestionează memoria cache pentru proprietățile accesate frecvent pentru a" +" îmbunătăți performanța. Este utilizată pentru a defini și manipula datele " "despre produse și informațiile asociate acestora în cadrul unei aplicații." #: engine/core/models.py:595 @@ -1983,7 +2005,7 @@ msgstr "Furnizați o denumire clară de identificare a produsului" msgid "product name" msgstr "Denumirea produsului" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Adăugați o descriere detaliată a produsului" @@ -2003,108 +2025,116 @@ msgstr "Numărul piesei" msgid "stock keeping unit for this product" msgstr "Stock Keeping Unit pentru acest produs" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Dacă să exportați acest produs pe piețele comerciale" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Export către piețe" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Reprezintă un atribut în sistem. Această clasă este utilizată pentru " "definirea și gestionarea atributelor, care sunt elemente de date " "personalizabile care pot fi asociate cu alte entități. Atributele au " "asociate categorii, grupuri, tipuri de valori și nume. Modelul acceptă mai " -"multe tipuri de valori, inclusiv șir, număr întreg, float, boolean, array și " -"obiect. Acest lucru permite structurarea dinamică și flexibilă a datelor." +"multe tipuri de valori, inclusiv șir, număr întreg, float, boolean, array și" +" obiect. Acest lucru permite structurarea dinamică și flexibilă a datelor." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Grupul acestui atribut" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Șir de caractere" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Număr întreg" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Float" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Obiect" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Tipul valorii atributului" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Tipul de valoare" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Denumirea acestui atribut" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Numele atributului" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "este filtrabil" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Atributele și valorile care pot fi utilizate pentru filtrarea acestei " "categorii." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Atribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Reprezintă o valoare specifică pentru un atribut care este legat de un " "produs. Leagă \"atributul\" de o \"valoare\" unică, permițând o mai bună " "organizare și reprezentare dinamică a caracteristicilor produsului." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Atributul acestei valori" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Produsul specific asociat cu valoarea acestui atribut" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Valoarea specifică pentru acest atribut" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2115,46 +2145,46 @@ msgstr "" "asemenea, include o funcție de accesibilitate cu text alternativ pentru " "imagini." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Furnizați text alternativ pentru imagine pentru accesibilitate" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Textul alt al imaginii" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Încărcați fișierul de imagine pentru acest produs" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Imaginea produsului" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Determină ordinea în care sunt afișate imaginile" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioritatea afișării" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Produsul pe care îl reprezintă această imagine" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Imagini ale produsului" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Reprezintă o campanie promoțională pentru produse cu o reducere. Această " "clasă este utilizată pentru a defini și gestiona campanii promoționale care " @@ -2163,75 +2193,75 @@ msgstr "" "asocierea acesteia la produsele aplicabile. Se integrează cu catalogul de " "produse pentru a determina articolele afectate în cadrul campaniei." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Procentul de reducere pentru produsele selectate" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Procent de reducere" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Furnizați un nume unic pentru această promoție" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Numele promoției" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Descrierea promoției" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Selectați ce produse sunt incluse în această promoție" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Produse incluse" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promovare" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"Reprezintă lista de dorințe a unui utilizator pentru stocarea și gestionarea " -"produselor dorite. Clasa oferă funcționalitatea de a gestiona o colecție de " -"produse, suportând operațiuni precum adăugarea și eliminarea de produse, " +"Reprezintă lista de dorințe a unui utilizator pentru stocarea și gestionarea" +" produselor dorite. Clasa oferă funcționalitatea de a gestiona o colecție de" +" produse, suportând operațiuni precum adăugarea și eliminarea de produse, " "precum și operațiuni pentru adăugarea și eliminarea mai multor produse " "simultan." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produse pe care utilizatorul le-a marcat ca fiind dorite" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Utilizatorul care deține această listă de dorințe" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Proprietarul listei de dorințe" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Lista dorințelor" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Reprezintă o înregistrare documentară legată de un produs. Această clasă " "este utilizată pentru a stoca informații despre documentarele legate de " @@ -2241,28 +2271,28 @@ msgstr "" "funcționalitatea mixinilor specifici și oferă caracteristici personalizate " "suplimentare." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Documentar" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Documentare" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Nerezolvat" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Reprezintă o entitate de adresă care include detalii despre locație și " "asocieri cu un utilizator. Oferă funcționalitate pentru stocarea datelor " @@ -2272,61 +2302,62 @@ msgstr "" "geolocalizarea (longitudine și latitudine). Aceasta suportă integrarea cu " "API-urile de geocodare, permițând stocarea răspunsurilor API brute pentru " "procesare sau inspecție ulterioară. De asemenea, clasa permite asocierea " -"unei adrese cu un utilizator, facilitând gestionarea personalizată a datelor." +"unei adrese cu un utilizator, facilitând gestionarea personalizată a " +"datelor." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Linia de adresă pentru client" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Linia de adresă" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Strada" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Districtul" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Oraș" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Regiunea" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Cod poștal" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Țara" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Punct de geolocație (longitudine, latitudine)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Răspuns JSON complet de la geocoder pentru această adresă" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Răspuns JSON stocat de la serviciul de geocodare" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adresă" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adrese" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2340,77 +2371,77 @@ msgstr "" "PromoCode stochează detalii despre un cod promoțional, inclusiv " "identificatorul său unic, proprietățile de reducere (sumă sau procent), " "perioada de valabilitate, utilizatorul asociat (dacă există) și starea " -"utilizării acestuia. Aceasta include funcționalități de validare și aplicare " -"a codului promoțional la o comandă, asigurându-se în același timp că sunt " +"utilizării acestuia. Aceasta include funcționalități de validare și aplicare" +" a codului promoțional la o comandă, asigurându-se în același timp că sunt " "respectate constrângerile." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Cod unic utilizat de un utilizator pentru a răscumpăra o reducere" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Cod promoțional de identificare" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Valoarea fixă a reducerii aplicate dacă procentul nu este utilizat" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Valoarea fixă a reducerii" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentul de reducere aplicat dacă suma fixă nu este utilizată" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Reducere procentuală" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Data la care expiră codul promoțional" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Timpul final de valabilitate" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Timestamp de la care acest cod promoțional este valabil" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Ora de începere a valabilității" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Momentul în care codul promoțional a fost utilizat, gol dacă nu a fost " "utilizat încă" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Timestamp de utilizare" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Utilizatorul atribuit acestui cod promoțional, dacă este cazul" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Utilizator atribuit" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Cod promoțional" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Coduri promoționale" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2418,167 +2449,167 @@ msgstr "" "Trebuie definit un singur tip de reducere (sumă sau procent), dar nu ambele " "sau niciuna." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Codul promoțional a fost deja utilizat" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Tip de reducere invalid pentru codul promoțional {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Reprezintă o comandă plasată de un utilizator. Această clasă modelează o " "comandă în cadrul aplicației, inclusiv diferitele sale atribute, cum ar fi " -"informațiile privind facturarea și expedierea, starea, utilizatorul asociat, " -"notificările și operațiunile conexe. Comenzile pot avea produse asociate, se " -"pot aplica promoții, se pot stabili adrese și se pot actualiza detaliile de " -"expediere sau de facturare. În egală măsură, funcționalitatea sprijină " +"informațiile privind facturarea și expedierea, starea, utilizatorul asociat," +" notificările și operațiunile conexe. Comenzile pot avea produse asociate, " +"se pot aplica promoții, se pot stabili adrese și se pot actualiza detaliile " +"de expediere sau de facturare. În egală măsură, funcționalitatea sprijină " "gestionarea produselor în ciclul de viață al comenzii." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Adresa de facturare utilizată pentru această comandă" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Cod promoțional opțional aplicat la această comandă" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Cod promoțional aplicat" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Adresa de expediere utilizată pentru această comandă" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Adresa de expediere" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Stadiul actual al comenzii în ciclul său de viață" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Stadiul comenzii" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Structura JSON a notificărilor care urmează să fie afișate utilizatorilor, " "în interfața de administrare este utilizată vizualizarea tabelară" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Reprezentarea JSON a atributelor comenzii pentru această comandă" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Utilizatorul care a plasat comanda" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Utilizator" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Momentul în care comanda a fost finalizată" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Cumpărați timp" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Un identificator ușor de citit pentru comandă" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID lizibil de către om" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Comandă" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" "Un utilizator trebuie să aibă un singur ordin în așteptare la un moment dat!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "Nu puteți adăuga produse la o comandă care nu este în așteptare" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Nu puteți adăuga produse inactive la comandă" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Nu puteți adăuga mai multe produse decât cele disponibile în stoc" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Nu puteți elimina produse dintr-o comandă care nu este o comandă în curs" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} nu există cu interogarea <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Codul promoțional nu există" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Puteți cumpăra numai produse fizice cu adresa de expediere specificată!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adresa nu există" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "Nu puteți achiziționa în acest moment, vă rugăm să încercați din nou în " "câteva minute." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Valoare forță invalidă" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Nu puteți achiziționa o comandă goală!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "" "Nu puteți elimina produse dintr-o comandă care nu este o comandă în curs" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Un utilizator fără sold nu poate cumpăra cu sold!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Insuficiența fondurilor pentru finalizarea comenzii" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2586,14 +2617,15 @@ msgstr "" "nu puteți cumpăra fără înregistrare, vă rugăm să furnizați următoarele " "informații: nume client, e-mail client, număr de telefon client" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -"Metodă de plată invalidă: {payment_method} de la {available_payment_methods}!" +"Metodă de plată invalidă: {payment_method} de la " +"{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2608,34 +2640,35 @@ msgstr "" "un rating atribuit de utilizator. Clasa utilizează câmpuri din baza de date " "pentru a modela și gestiona în mod eficient datele de feedback." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" "Comentarii furnizate de utilizatori cu privire la experiența lor cu produsul" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Comentarii de feedback" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Face referire la produsul specific dintr-o comandă despre care este vorba în " -"acest feedback" +"Face referire la produsul specific dintr-o comandă despre care este vorba în" +" acest feedback" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Produs aferent comenzii" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Rating atribuit de utilizator pentru produs" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Evaluarea produsului" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2649,8 +2682,8 @@ msgid "" msgstr "" "Reprezintă produsele asociate comenzilor și atributele acestora. Modelul " "OrderProduct păstrează informații despre un produs care face parte dintr-o " -"comandă, inclusiv detalii precum prețul de achiziție, cantitatea, atributele " -"produsului și starea acestuia. Acesta gestionează notificările pentru " +"comandă, inclusiv detalii precum prețul de achiziție, cantitatea, atributele" +" produsului și starea acestuia. Acesta gestionează notificările pentru " "utilizator și administratori și se ocupă de operațiuni precum returnarea " "soldului produsului sau adăugarea de feedback. Acest model oferă, de " "asemenea, metode și proprietăți care susțin logica de afaceri, cum ar fi " @@ -2658,131 +2691,131 @@ msgstr "" "produsele digitale. Modelul se integrează cu modelele Order și Product și " "stochează o referință la acestea." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Prețul plătit de client pentru acest produs la momentul achiziției" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Prețul de achiziție la momentul comenzii" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "" "Comentarii interne pentru administratori cu privire la acest produs comandat" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Observații interne" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Notificări pentru utilizatori" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Reprezentarea JSON a atributelor acestui element" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Atribute de produs ordonate" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Trimitere la comanda mamă care conține acest produs" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Ordinul părinților" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Produsul specific asociat cu această linie de comandă" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Cantitatea acestui produs specific din comandă" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Cantitatea produsului" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Starea actuală a acestui produs în comandă" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Starea liniei de produse" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Comandaprodusul trebuie să aibă o comandă asociată!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Acțiune greșită specificată pentru feedback: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "" "Nu puteți elimina produse dintr-o comandă care nu este o comandă în curs" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Nume și prenume" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "Adresa URL a integrării" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Acreditări de autentificare" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Puteți avea un singur furnizor CRM implicit" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM-uri" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Legătura CRM a comenzii" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Legături CRM pentru comenzi" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Reprezintă funcționalitatea de descărcare pentru activele digitale asociate " "comenzilor. Clasa DigitalAssetDownload oferă posibilitatea de a gestiona și " "de a accesa descărcările legate de produsele de comandă. Aceasta păstrează " -"informații despre produsul de comandă asociat, numărul de descărcări și dacă " -"activul este vizibil public. Aceasta include o metodă de generare a unei " -"adrese URL pentru descărcarea activului atunci când comanda asociată este în " -"stare finalizată." +"informații despre produsul de comandă asociat, numărul de descărcări și dacă" +" activul este vizibil public. Aceasta include o metodă de generare a unei " +"adrese URL pentru descărcarea activului atunci când comanda asociată este în" +" stare finalizată." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Descărcare" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Descărcări" @@ -2790,8 +2823,8 @@ msgstr "Descărcări" msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -"trebuie să furnizați un comentariu, un rating și uuid-ul produsului comandat " -"pentru a adăuga feedback." +"trebuie să furnizați un comentariu, un rating și uuid-ul produsului comandat" +" pentru a adăuga feedback." #: engine/core/sitemaps.py:25 msgid "Home" @@ -2983,8 +3016,7 @@ msgstr "Bună ziua %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Vă mulțumim pentru comanda dvs. #%(order.pk)s! Suntem încântați să vă " @@ -3099,12 +3131,11 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" -"Vă mulțumim pentru comanda dvs.! Suntem încântați să vă confirmăm achiziția. " -"Mai jos sunt detaliile comenzii dvs:" +"Vă mulțumim pentru comanda dvs.! Suntem încântați să vă confirmăm achiziția." +" Mai jos sunt detaliile comenzii dvs:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3189,8 +3220,8 @@ msgid "" "Content-Type header for XML." msgstr "" "Gestionează răspunsul de vizualizare detaliată pentru o hartă a site-ului. " -"Această funcție procesează cererea, extrage răspunsul detaliat corespunzător " -"al hărții site-ului și stabilește antetul Content-Type pentru XML." +"Această funcție procesează cererea, extrage răspunsul detaliat corespunzător" +" al hărții site-ului și stabilește antetul Content-Type pentru XML." #: engine/core/views.py:155 msgid "" @@ -3207,8 +3238,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Gestionează operațiunile din cache, cum ar fi citirea și setarea datelor din " -"cache cu o cheie și un timeout specificate." +"Gestionează operațiunile din cache, cum ar fi citirea și setarea datelor din" +" cache cu o cheie și un timeout specificate." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3219,8 +3250,8 @@ msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"Gestionează cererile de procesare și validare a URL-urilor din cererile POST " -"primite." +"Gestionează cererile de procesare și validare a URL-urilor din cererile POST" +" primite." #: engine/core/views.py:273 msgid "Handles global search queries." @@ -3233,15 +3264,10 @@ msgstr "Gestionează logica cumpărării ca o afacere fără înregistrare." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestionează descărcarea unui bun digital asociat cu o comandă.\n" -"Această funcție încearcă să servească fișierul activului digital situat în " -"directorul de stocare al proiectului. Dacă fișierul nu este găsit, este " -"generată o eroare HTTP 404 pentru a indica faptul că resursa nu este " -"disponibilă." +"Această funcție încearcă să servească fișierul activului digital situat în directorul de stocare al proiectului. Dacă fișierul nu este găsit, este generată o eroare HTTP 404 pentru a indica faptul că resursa nu este disponibilă." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3270,29 +3296,25 @@ msgstr "favicon nu a fost găsit" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestionează cererile pentru favicon-ul unui site web.\n" -"Această funcție încearcă să servească fișierul favicon situat în directorul " -"static al proiectului. Dacă fișierul favicon nu este găsit, este generată o " -"eroare HTTP 404 pentru a indica faptul că resursa nu este disponibilă." +"Această funcție încearcă să servească fișierul favicon situat în directorul static al proiectului. Dacă fișierul favicon nu este găsit, este generată o eroare HTTP 404 pentru a indica faptul că resursa nu este disponibilă." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Redirecționează solicitarea către pagina de index a administratorului. " -"Funcția gestionează cererile HTTP primite și le redirecționează către pagina " -"index a interfeței de administrare Django. Aceasta utilizează funcția " +"Funcția gestionează cererile HTTP primite și le redirecționează către pagina" +" index a interfeței de administrare Django. Aceasta utilizează funcția " "`redirect` din Django pentru gestionarea redirecționării HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Returnează versiunea curentă a eVibes." +msgid "Returns current version of the Schon. " +msgstr "Returnează versiunea curentă a Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3305,25 +3327,26 @@ msgstr "Returnează variabilele personalizate pentru tabloul de bord." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" "Definește un set de vizualizări pentru gestionarea operațiunilor legate de " -"Evibes. Clasa EvibesViewSet moștenește din ModelViewSet și oferă " +"schon. Clasa SchonViewSet moștenește din ModelViewSet și oferă " "funcționalitate pentru gestionarea acțiunilor și operațiunilor asupra " -"entităților Evibes. Aceasta include suport pentru clase de serializare " +"entităților schon. Aceasta include suport pentru clase de serializare " "dinamice în funcție de acțiunea curentă, permisiuni personalizabile și " "formate de redare." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Reprezintă un set de vizualizări pentru gestionarea obiectelor " "AttributeGroup. Gestionează operațiunile legate de AttributeGroup, inclusiv " @@ -3340,20 +3363,20 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"Gestionează operațiunile legate de obiectele Attribute în cadrul aplicației. " -"Oferă un set de puncte finale API pentru a interacționa cu datele Attribute. " -"Această clasă gestionează interogarea, filtrarea și serializarea obiectelor " -"Attribute, permițând controlul dinamic asupra datelor returnate, cum ar fi " -"filtrarea după câmpuri specifice sau recuperarea de informații detaliate sau " -"simplificate în funcție de cerere." +"Gestionează operațiunile legate de obiectele Attribute în cadrul aplicației." +" Oferă un set de puncte finale API pentru a interacționa cu datele " +"Attribute. Această clasă gestionează interogarea, filtrarea și serializarea " +"obiectelor Attribute, permițând controlul dinamic asupra datelor returnate, " +"cum ar fi filtrarea după câmpuri specifice sau recuperarea de informații " +"detaliate sau simplificate în funcție de cerere." #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Un set de vizualizări pentru gestionarea obiectelor AttributeValue. Acest " "set de vizualizări oferă funcționalități pentru listarea, extragerea, " @@ -3394,15 +3417,15 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Gestionează operațiunile legate de modelul `Product` din sistem. Această " "clasă oferă un set de vizualizări pentru gestionarea produselor, inclusiv " -"filtrarea lor, serializarea și operațiunile asupra instanțelor specifice. Se " -"extinde de la `EvibesViewSet` pentru a utiliza funcționalități comune și se " +"filtrarea lor, serializarea și operațiunile asupra instanțelor specifice. Se" +" extinde de la `SchonViewSet` pentru a utiliza funcționalități comune și se " "integrează cu cadrul REST Django pentru operațiuni API RESTful. Include " "metode pentru recuperarea detaliilor produsului, aplicarea permisiunilor și " "accesarea feedback-ului aferent unui produs." @@ -3415,8 +3438,8 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Reprezintă un set de vizualizări pentru gestionarea obiectelor Vendor. Acest " -"set de vizualizare permite preluarea, filtrarea și serializarea datelor " +"Reprezintă un set de vizualizări pentru gestionarea obiectelor Vendor. Acest" +" set de vizualizare permite preluarea, filtrarea și serializarea datelor " "furnizorului. Aceasta definește queryset-ul, configurațiile de filtrare și " "clasele de serializare utilizate pentru a gestiona diferite acțiuni. Scopul " "acestei clase este de a oferi acces simplificat la resursele legate de " @@ -3427,16 +3450,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentarea unui set de vizualizări care gestionează obiecte Feedback. " "Această clasă gestionează operațiunile legate de obiectele Feedback, " -"inclusiv listarea, filtrarea și extragerea detaliilor. Scopul acestui set de " -"vizualizări este de a furniza serializatoare diferite pentru acțiuni " +"inclusiv listarea, filtrarea și extragerea detaliilor. Scopul acestui set de" +" vizualizări este de a furniza serializatoare diferite pentru acțiuni " "diferite și de a implementa gestionarea pe bază de permisiuni a obiectelor " -"Feedback accesibile. Aceasta extinde clasa de bază `EvibesViewSet` și " +"Feedback accesibile. Aceasta extinde clasa de bază `schonViewSet` și " "utilizează sistemul de filtrare Django pentru interogarea datelor." #: engine/core/viewsets.py:652 @@ -3444,9 +3467,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet pentru gestionarea comenzilor și a operațiunilor conexe. Această " @@ -3463,8 +3486,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Oferă un set de vizualizări pentru gestionarea entităților OrderProduct. " @@ -3476,7 +3499,8 @@ msgstr "" #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " -msgstr "Gestionează operațiunile legate de imaginile produselor din aplicație." +msgstr "" +"Gestionează operațiunile legate de imaginile produselor din aplicație." #: engine/core/viewsets.py:988 msgid "" @@ -3499,8 +3523,8 @@ msgstr "" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3523,8 +3547,8 @@ msgid "" "on the request context." msgstr "" "Această clasă oferă funcționalități de tip viewset pentru gestionarea " -"obiectelor `Address`. Clasa AddressViewSet permite operațiuni CRUD, filtrare " -"și acțiuni personalizate legate de entitățile adresă. Aceasta include " +"obiectelor `Address`. Clasa AddressViewSet permite operațiuni CRUD, filtrare" +" și acțiuni personalizate legate de entitățile adresă. Aceasta include " "comportamente specializate pentru diferite metode HTTP, înlocuiri ale " "serializatorului și gestionarea permisiunilor în funcție de contextul " "cererii." diff --git a/engine/core/locale/ru_RU/LC_MESSAGES/django.mo b/engine/core/locale/ru_RU/LC_MESSAGES/django.mo index b8f02c6c..38d361d9 100644 Binary files a/engine/core/locale/ru_RU/LC_MESSAGES/django.mo and b/engine/core/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/ru_RU/LC_MESSAGES/django.po b/engine/core/locale/ru_RU/LC_MESSAGES/django.po index 6ace69d7..3bbff2e9 100644 --- a/engine/core/locale/ru_RU/LC_MESSAGES/django.po +++ b/engine/core/locale/ru_RU/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Активен" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Если установлено значение false, этот объект не может быть виден " "пользователям без необходимого разрешения" @@ -76,8 +77,8 @@ msgstr "Временные метки" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Активировать выбранный %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Активировать выбранные %(verbose_name_plural)s" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -85,21 +86,21 @@ msgstr "Выбранные сущности активированы!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Деактивировать выбранный %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Деактивировать выбранные %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Выбранные сущности были деактивированы!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Значение атрибута" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Значения атрибутов" @@ -119,12 +120,12 @@ msgstr "Наличие" msgid "stocks" msgstr "Наличия" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Заказанный товар" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Заказанные товары" @@ -132,7 +133,32 @@ msgstr "Заказанные товары" msgid "children" msgstr "Дети" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Имеет изображения" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Экспорт выбранного %(verbose_name_plural)s в фиды торговых площадок" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Выбранные %(verbose_name_plural)s помечены для экспорта." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" +"Запретить отображение %(verbose_name_plural)s в фидах торговых площадок" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Выбранные %(verbose_name_plural)s были запрещены к экспорту." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Конфигурация" @@ -156,7 +182,8 @@ msgstr "Доставлено" msgid "canceled" msgstr "Отменено" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Не удалось" @@ -274,7 +301,8 @@ msgstr "" "элементов" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Переписывание некоторых полей существующей группы атрибутов с сохранением " "нередактируемых полей" @@ -328,7 +356,8 @@ msgstr "" "значений" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Переписывание некоторых полей существующего значения атрибута с сохранением " "нередактируемых значений" @@ -388,11 +417,11 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Поиск подстроки с учетом регистра в human_readable_id, order_products." -"product.name и order_products.product.partnumber" +"Поиск подстроки с учетом регистра в human_readable_id, " +"order_products.product.name и order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -428,9 +457,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Упорядочивайте по одному из следующих признаков: uuid, human_readable_id, " "user_email, user, status, created, modified, buy_time, random. Префикс '-' " @@ -518,8 +547,8 @@ msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"Добавляет список товаров в заказ, используя предоставленные `product_uuid` и " -"`attributes`." +"Добавляет список товаров в заказ, используя предоставленные `product_uuid` и" +" `attributes`." #: engine/core/docs/drf/viewsets.py:472 msgid "remove product from order" @@ -542,8 +571,8 @@ msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -"Удаляет список товаров из заказа, используя предоставленные `product_uuid` и " -"`attributes`." +"Удаляет список товаров из заказа, используя предоставленные `product_uuid` и" +" `attributes`." #: engine/core/docs/drf/viewsets.py:497 msgid "list all wishlists (simple view)" @@ -633,29 +662,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Фильтр по одной или нескольким парам имя/значение атрибута. \n" "- **Синтаксис**: `attr_name=method-value[;attr2=method2-value2]...`.\n" -"- **Методы** (по умолчанию используется `icontains`, если опущено): " -"`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, " -"`istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, " -"`gt`, `gte`, `in`.\n" -"- **Типизация значений**: JSON сначала пытается принять значение (так что вы " -"можете передавать списки/дискреты), `true`/`false` для булевых, целых чисел, " -"плавающих; в противном случае обрабатывается как строка. \n" -"- **Base64**: префикс `b64-` для безопасного для URL base64-кодирования " -"исходного значения. \n" +"- **Методы** (по умолчанию используется `icontains`, если опущено): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- **Типизация значений**: JSON сначала пытается принять значение (так что вы можете передавать списки/дискреты), `true`/`false` для булевых, целых чисел, плавающих; в противном случае обрабатывается как строка. \n" +"- **Base64**: префикс `b64-` для безопасного для URL base64-кодирования исходного значения. \n" "Примеры: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." @@ -670,14 +688,11 @@ msgstr "(точный) UUID продукта" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Список полей для сортировки, разделенных запятыми. Для сортировки по " -"убыванию используйте префикс `-`. \n" -"**Разрешенные:** uuid, рейтинг, название, slug, created, modified, price, " -"random" +"Список полей для сортировки, разделенных запятыми. Для сортировки по убыванию используйте префикс `-`. \n" +"**Разрешенные:** uuid, рейтинг, название, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -1238,8 +1253,8 @@ msgstr "Купить заказ" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Пожалуйста, отправьте атрибуты в виде строки, отформатированной как " "attr1=value1,attr2=value2" @@ -1261,9 +1276,9 @@ msgstr "Заказ товара {order_product_uuid} не найден!" msgid "original address string provided by the user" msgstr "Оригинальная строка адреса, предоставленная пользователем" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1279,8 +1294,8 @@ msgstr "ElasticSearch - работает как шарм" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Атрибуты" @@ -1317,7 +1332,8 @@ msgstr "" "Какие атрибуты и значения можно использовать для фильтрации этой категории." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Минимальные и максимальные цены на товары в этой категории, если они " "доступны." @@ -1357,7 +1373,7 @@ msgid "represents feedback from a user." msgstr "Представляет собой отзыв пользователя." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Уведомления" @@ -1365,7 +1381,7 @@ msgstr "Уведомления" msgid "download url for this order product if applicable" msgstr "Если применимо, загрузите url для этого продукта заказа" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Обратная связь" @@ -1373,7 +1389,7 @@ msgstr "Обратная связь" msgid "a list of order products in this order" msgstr "Список товаров, заказанных в этом заказе" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Адрес для выставления счетов" @@ -1401,7 +1417,7 @@ msgstr "Все ли товары в заказе представлены в ц msgid "transactions for this order" msgstr "Операции для этого заказа" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Заказы" @@ -1418,7 +1434,7 @@ msgstr "Изображения товара" msgid "category" msgstr "Категория" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Отзывы" @@ -1459,7 +1475,7 @@ msgstr "Продукты доступны только для личных за msgid "discount price" msgstr "Цена со скидкой" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Товары" @@ -1471,7 +1487,7 @@ msgstr "Промокоды" msgid "products on sale" msgstr "Продукты в продаже" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Промоакции" @@ -1479,7 +1495,7 @@ msgstr "Промоакции" msgid "vendor" msgstr "Поставщик" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1487,11 +1503,11 @@ msgstr "Поставщик" msgid "product" msgstr "Товар" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Продукты из списка желаний" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Списки желаний" @@ -1609,7 +1625,7 @@ msgstr "Родительская группа атрибутов" msgid "attribute group's name" msgstr "Имя группы атрибутов" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Группа атрибутов" @@ -1635,8 +1651,8 @@ msgstr "" #: engine/core/models.py:122 msgid "stores credentials and endpoints required for vendor communication" msgstr "" -"Хранит учетные данные и конечные точки, необходимые для взаимодействия с API " -"поставщика." +"Хранит учетные данные и конечные точки, необходимые для взаимодействия с API" +" поставщика." #: engine/core/models.py:124 msgid "authentication info" @@ -1684,8 +1700,8 @@ msgid "" msgstr "" "Представляет тег продукта, используемый для классификации или идентификации " "продуктов. Класс ProductTag предназначен для уникальной идентификации и " -"классификации продуктов с помощью комбинации внутреннего идентификатора тега " -"и удобного для пользователя отображаемого имени. Он поддерживает операции, " +"классификации продуктов с помощью комбинации внутреннего идентификатора тега" +" и удобного для пользователя отображаемого имени. Он поддерживает операции, " "экспортируемые через миксины, и обеспечивает настройку метаданных для " "административных целей." @@ -1717,8 +1733,8 @@ msgid "" msgstr "" "Представляет тег категории, используемый для продуктов. Этот класс " "моделирует тег категории, который может быть использован для ассоциации и " -"классификации продуктов. Он включает атрибуты для внутреннего идентификатора " -"тега и удобного для пользователя отображаемого имени." +"классификации продуктов. Он включает атрибуты для внутреннего идентификатора" +" тега и удобного для пользователя отображаемого имени." #: engine/core/models.py:249 msgid "category tag" @@ -1742,8 +1758,8 @@ msgid "" msgstr "" "Представляет собой объект категории для организации и группировки связанных " "элементов в иерархическую структуру. Категории могут иметь иерархические " -"отношения с другими категориями, поддерживая отношения \"родитель-ребенок\". " -"Класс включает поля для метаданных и визуального представления, которые " +"отношения с другими категориями, поддерживая отношения \"родитель-ребенок\"." +" Класс включает поля для метаданных и визуального представления, которые " "служат основой для функций, связанных с категориями. Этот класс обычно " "используется для определения и управления категориями товаров или другими " "подобными группировками в приложении, позволяя пользователям или " @@ -1799,7 +1815,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Представляет объект Brand в системе. Этот класс обрабатывает информацию и " "атрибуты, связанные с брендом, включая его название, логотипы, описание, " @@ -1848,8 +1865,8 @@ msgstr "Категории" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1882,8 +1899,8 @@ msgstr "Цена продажи" msgid "the product associated with this stock entry" msgstr "Продукт, связанный с этой складской записью" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Сопутствующий товар" @@ -1942,8 +1959,8 @@ msgstr "" "цифровой статус, название, описание, номер детали и метка. Предоставляет " "связанные с ним полезные свойства для получения оценок, количества отзывов, " "цены, количества и общего числа заказов. Предназначен для использования в " -"системе, которая занимается электронной коммерцией или управлением запасами. " -"Этот класс взаимодействует со связанными моделями (такими как Category, " +"системе, которая занимается электронной коммерцией или управлением запасами." +" Этот класс взаимодействует со связанными моделями (такими как Category, " "Brand и ProductTag) и управляет кэшированием часто используемых свойств для " "повышения производительности. Он используется для определения и " "манипулирования данными о товаре и связанной с ним информацией в приложении." @@ -1970,7 +1987,8 @@ msgstr "Является ли продукт цифровым" #: engine/core/models.py:623 msgid "indicates whether this product should be updated from periodic task" -msgstr "указывает, следует ли обновлять этот продукт из периодического задания" +msgstr "" +"указывает, следует ли обновлять этот продукт из периодического задания" #: engine/core/models.py:625 msgid "is product updatable" @@ -1984,7 +2002,7 @@ msgstr "Обеспечьте четкое идентификационное н msgid "product name" msgstr "Название продукта" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Добавьте подробное описание продукта" @@ -2004,13 +2022,21 @@ msgstr "Парт. номер" msgid "stock keeping unit for this product" msgstr "Единица складского учета для данного продукта" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Экспортировать ли этот продукт на торговые площадки" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Экспорт на торговые площадки" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Представляет атрибут в системе. Этот класс используется для определения и " @@ -2021,91 +2047,91 @@ msgstr "" "плавающую форму, булевую форму, массив и объект. Это позволяет динамично и " "гибко структурировать данные." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Группа этого атрибута" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Строка" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Целое число" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Поплавок" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Булево" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Массив" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Объект" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Тип значения атрибута" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Тип значения" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Имя этого атрибута" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Имя атрибута" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "поддается фильтрации" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Какие атрибуты и значения можно использовать для фильтрации этой категории." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Атрибут" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Представляет собой конкретное значение для атрибута, связанного с продуктом. " -"Он связывает \"атрибут\" с уникальным \"значением\", позволяя лучше " +"Представляет собой конкретное значение для атрибута, связанного с продуктом." +" Он связывает \"атрибут\" с уникальным \"значением\", позволяя лучше " "организовать и динамически представить характеристики продукта." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Атрибут этого значения" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Конкретный продукт, связанный со значением этого атрибута" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Конкретное значение для этого атрибута" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2115,48 +2141,48 @@ msgstr "" "товарам и определения порядка их отображения. Он также включает функцию " "доступности с альтернативным текстом для изображений." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "" "Предоставьте альтернативный текст для изображения, чтобы обеспечить " "доступность" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Альтовый текст изображения" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Загрузите файл изображения для этого продукта" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Изображение продукта" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Определяет порядок отображения изображений" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Приоритет отображения" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Продукт, который представлен на этом изображении" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Изображения товаров" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Представляет рекламную кампанию для товаров со скидкой. Этот класс " "используется для определения и управления рекламными кампаниями, " @@ -2165,39 +2191,39 @@ msgstr "" "акции и привязки ее к соответствующим товарам. Он интегрируется с каталогом " "товаров для определения товаров, на которые распространяется акция." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Процентная скидка на выбранные продукты" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Процент скидки" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Укажите уникальное имя для этой акции" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Название акции" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Описание акции" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Выберите, какие продукты участвуют в этой акции" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Включенные продукты" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Продвижение" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2210,60 +2236,60 @@ msgstr "" "товаров, а также поддерживая операции добавления и удаления нескольких " "товаров одновременно." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Продукты, которые пользователь отметил как желаемые" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Пользователь, владеющий этим списком желаний" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Владелец вишлиста" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Список желаний" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Представляет документальную запись, связанную с продуктом. Этот класс " "используется для хранения информации о документальных записях, связанных с " "конкретными продуктами, включая загруженные файлы и их метаданные. Он " "содержит методы и свойства для обработки типа файла и пути хранения " -"документальных файлов. Он расширяет функциональность определенных миксинов и " -"предоставляет дополнительные пользовательские возможности." +"документальных файлов. Он расширяет функциональность определенных миксинов и" +" предоставляет дополнительные пользовательские возможности." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Документальный фильм" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Документальные фильмы" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Неразрешенные" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Представляет адресную сущность, включающую сведения о местоположении и " "ассоциации с пользователем. Обеспечивает функциональность для хранения " @@ -2275,59 +2301,59 @@ msgstr "" "обработки или проверки. Класс также позволяет ассоциировать адрес с " "пользователем, что облегчает работу с персонализированными данными." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Адресная строка для клиента" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Адресная строка" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Улица" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Округ" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Город" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Регион" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Почтовый индекс" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Страна" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Геолокационная точка(долгота, широта)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Полный JSON-ответ от геокодера для этого адреса" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Сохраненный JSON-ответ от сервиса геокодирования" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Адрес" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Адреса" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2339,244 +2365,245 @@ msgstr "" "Представляет промокод, который можно использовать для получения скидки, " "управляя его сроком действия, типом скидки и применением. Класс PromoCode " "хранит информацию о промокоде, включая его уникальный идентификатор, " -"свойства скидки (размер или процент), срок действия, связанного пользователя " -"(если таковой имеется) и статус его использования. Он включает в себя " +"свойства скидки (размер или процент), срок действия, связанного пользователя" +" (если таковой имеется) и статус его использования. Он включает в себя " "функциональность для проверки и применения промокода к заказу, обеспечивая " "при этом соблюдение ограничений." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Уникальный код, используемый пользователем для получения скидки" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Идентификатор промо-кода" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Фиксированная сумма скидки, применяемая, если процент не используется" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Фиксированная сумма скидки" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" "Процентная скидка, применяемая, если фиксированная сумма не используется" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Процентная скидка" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Временная метка, когда истекает срок действия промокода" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Время окончания срока действия" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Время, с которого действует этот промокод" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Время начала действия" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Временная метка, когда был использован промокод, пустая, если он еще не " "использовался" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Временная метка использования" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Пользователь, назначенный на этот промокод, если применимо" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Назначенный пользователь" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Промокод" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Промокоды" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"Следует определить только один тип скидки (сумма или процент), но не оба или " -"ни один из них." +"Следует определить только один тип скидки (сумма или процент), но не оба или" +" ни один из них." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Промокоды" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Неверный тип скидки для промокода {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"Представляет заказ, оформленный пользователем. Этот класс моделирует заказ в " -"приложении, включая его различные атрибуты, такие как информация о " +"Представляет заказ, оформленный пользователем. Этот класс моделирует заказ в" +" приложении, включая его различные атрибуты, такие как информация о " "выставлении счета и доставке, статус, связанный пользователь, уведомления и " "связанные операции. Заказы могут иметь связанные продукты, к ним можно " "применять рекламные акции, устанавливать адреса и обновлять данные о " "доставке или выставлении счета. Кроме того, функциональность поддерживает " "управление продуктами в жизненном цикле заказа." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Адрес для выставления счетов, используемый для данного заказа" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Дополнительный промокод, применяемый к этому заказу" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Примененный промокод" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Адрес доставки, используемый для данного заказа" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Адрес доставки" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Текущий статус заказа в его жизненном цикле" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Статус заказа" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" -"JSON-структура уведомлений для отображения пользователям, в административном " -"интерфейсе используется табличный вид" +"JSON-структура уведомлений для отображения пользователям, в административном" +" интерфейсе используется табличный вид" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON-представление атрибутов заказа для этого заказа" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Пользователь, разместивший заказ" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Пользователь" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Временная метка, когда заказ был завершен" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Время покупки" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Человекочитаемый идентификатор для заказа" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "человекочитаемый идентификатор" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Заказ" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Пользователь может одновременно иметь только один отложенный ордер!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "Вы не можете добавить товары в заказ, который не является отложенным." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Вы не можете добавить неактивные товары в заказ" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Вы не можете добавить больше товаров, чем есть на складе" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" -msgstr "Вы не можете удалить товары из заказа, который не является отложенным." +msgstr "" +"Вы не можете удалить товары из заказа, который не является отложенным." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} не существует с запросом <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Промокод не существует" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Вы можете купить физические товары только с указанным адресом доставки!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Адрес не существует" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "" "В данный момент вы не можете совершить покупку, пожалуйста, повторите " "попытку через несколько минут." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Недопустимое значение силы" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Вы не можете приобрести пустой заказ!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Вы не можете купить заказ без пользователя!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Пользователь без баланса не может покупать с балансом!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Недостаточно средств для выполнения заказа" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2584,14 +2611,14 @@ msgstr "" "Вы не можете купить без регистрации, пожалуйста, предоставьте следующую " "информацию: имя клиента, электронная почта клиента, номер телефона клиента" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Неверный способ оплаты: {payment_method} от {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2606,32 +2633,33 @@ msgstr "" "пользователем. Класс использует поля базы данных для эффективного " "моделирования и управления данными отзывов." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Комментарии пользователей об их опыте использования продукта" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Комментарии к отзывам" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Ссылка на конкретный продукт в заказе, о котором идет речь в этом отзыве" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Сопутствующий товар для заказа" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Присвоенный пользователем рейтинг продукта" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Рейтинг продукции" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2653,128 +2681,129 @@ msgstr "" "для цифровых продуктов. Модель интегрируется с моделями Order и Product и " "хранит ссылки на них." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Цена, уплаченная клиентом за данный продукт на момент покупки" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Покупная цена на момент заказа" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" -msgstr "Внутренние комментарии для администраторов об этом заказанном продукте" +msgstr "" +"Внутренние комментарии для администраторов об этом заказанном продукте" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Внутренние комментарии" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Уведомления пользователей" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON-представление атрибутов этого элемента" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Атрибуты заказанного продукта" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Ссылка на родительский заказ, содержащий данный продукт" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Родительский приказ" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Конкретный продукт, связанный с этой линией заказа" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Количество данного товара в заказе" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Количество продукта" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Текущий статус этого продукта в заказе" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Состояние продуктовой линейки" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "У заказанного продукта должен быть связанный с ним заказ!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Для обратной связи указано неверное действие: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "Вы не можете отозвать заказ, который не был получен" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Имя" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL-адрес интеграции" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Учетные данные для аутентификации" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "У вас может быть только один поставщик CRM по умолчанию" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Ссылка на CRM заказа" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Ссылки на CRM заказов" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Представляет функциональность загрузки цифровых активов, связанных с " "заказами. Класс DigitalAssetDownload предоставляет возможность управления и " "доступа к загрузкам, связанным с продуктами заказа. Он хранит информацию о " -"связанном с заказом продукте, количестве загрузок и о том, является ли актив " -"общедоступным. Он включает метод для генерации URL-адреса для загрузки " +"связанном с заказом продукте, количестве загрузок и о том, является ли актив" +" общедоступным. Он включает метод для генерации URL-адреса для загрузки " "актива, когда связанный заказ находится в состоянии завершения." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Скачать" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Скачать" @@ -2836,7 +2865,7 @@ msgstr "Брутто" #: engine/core/templates/admin/dashboard/_header.html:3 msgid "Dashboard" -msgstr "Приборная панель" +msgstr "Панель" #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" @@ -2975,12 +3004,11 @@ msgstr "Привет %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Благодарим вас за заказ #%(order.pk)s! Мы рады сообщить Вам, что приняли Ваш " -"заказ в работу. Ниже приведены детали вашего заказа:" +"Благодарим вас за заказ #%(order.pk)s! Мы рады сообщить Вам, что приняли Ваш" +" заказ в работу. Ниже приведены детали вашего заказа:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -3090,8 +3118,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Спасибо за ваш заказ! Мы рады подтвердить вашу покупку. Ниже приведены " @@ -3164,7 +3191,8 @@ msgstr "Параметр NOMINATIM_URL должен быть настроен!" #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -"Размеры изображения не должны превышать w{max_width} x h{max_height} пикселей" +"Размеры изображения не должны превышать w{max_width} x h{max_height} " +"пикселей" #: engine/core/views.py:104 msgid "" @@ -3182,8 +3210,8 @@ msgid "" "Content-Type header for XML." msgstr "" "Обрабатывает подробный ответ на просмотр карты сайта. Эта функция " -"обрабатывает запрос, извлекает соответствующий подробный ответ карты сайта и " -"устанавливает заголовок Content-Type для XML." +"обрабатывает запрос, извлекает соответствующий подробный ответ карты сайта и" +" устанавливает заголовок Content-Type для XML." #: engine/core/views.py:155 msgid "" @@ -3225,14 +3253,10 @@ msgstr "Работает с логикой покупки как бизнеса #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Обрабатывает загрузку цифрового актива, связанного с заказом.\n" -"Эта функция пытается обслужить файл цифрового актива, расположенный в " -"каталоге хранения проекта. Если файл не найден, выдается ошибка HTTP 404, " -"указывающая на недоступность ресурса." +"Эта функция пытается обслужить файл цифрового актива, расположенный в каталоге хранения проекта. Если файл не найден, выдается ошибка HTTP 404, указывающая на недоступность ресурса." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3261,19 +3285,15 @@ msgstr "favicon не найден" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Обрабатывает запросы на фавикон веб-сайта.\n" -"Эта функция пытается обслужить файл favicon, расположенный в статической " -"директории проекта. Если файл favicon не найден, выдается ошибка HTTP 404, " -"указывающая на недоступность ресурса." +"Эта функция пытается обслужить файл favicon, расположенный в статической директории проекта. Если файл favicon не найден, выдается ошибка HTTP 404, указывающая на недоступность ресурса." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Перенаправляет запрос на индексную страницу админки. Функция обрабатывает " @@ -3282,8 +3302,8 @@ msgstr "" "функция Django `redirect`." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Возвращает текущую версию eVibes." +msgid "Returns current version of the Schon. " +msgstr "Возвращает текущую версию Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3296,24 +3316,25 @@ msgstr "Возвращает пользовательские переменны #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" "Определяет набор представлений для управления операциями, связанными с " -"Evibes. Класс EvibesViewSet наследует от ModelViewSet и предоставляет " -"функциональность для обработки действий и операций над сущностями Evibes. Он " +"schon. Класс SchonViewSet наследует от ModelViewSet и предоставляет " +"функциональность для обработки действий и операций над сущностями schon. Он " "включает в себя поддержку динамических классов сериализаторов в зависимости " "от текущего действия, настраиваемые разрешения и форматы рендеринга." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Представляет собой набор представлений для управления объектами " "AttributeGroup. Обрабатывает операции, связанные с AttributeGroup, включая " @@ -3342,15 +3363,15 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Набор представлений для управления объектами AttributeValue. Этот набор " "представлений предоставляет функциональность для перечисления, извлечения, " "создания, обновления и удаления объектов AttributeValue. Он интегрируется с " "механизмами наборов представлений Django REST Framework и использует " -"соответствующие сериализаторы для различных действий. Возможности фильтрации " -"предоставляются через DjangoFilterBackend." +"соответствующие сериализаторы для различных действий. Возможности фильтрации" +" предоставляются через DjangoFilterBackend." #: engine/core/viewsets.py:217 msgid "" @@ -3361,8 +3382,8 @@ msgid "" "can access specific data." msgstr "" "Управляет представлениями для операций, связанных с категорией. Класс " -"CategoryViewSet отвечает за обработку операций, связанных с моделью Category " -"в системе. Он поддерживает получение, фильтрацию и сериализацию данных " +"CategoryViewSet отвечает за обработку операций, связанных с моделью Category" +" в системе. Он поддерживает получение, фильтрацию и сериализацию данных " "категории. Набор представлений также обеспечивает соблюдение прав доступа, " "чтобы только авторизованные пользователи могли получить доступ к " "определенным данным." @@ -3384,7 +3405,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3392,7 +3413,7 @@ msgstr "" "Управляет операциями, связанными с моделью `Product` в системе. Этот класс " "предоставляет набор представлений для управления продуктами, включая их " "фильтрацию, сериализацию и операции над конкретными экземплярами. Он " -"расширяется от `EvibesViewSet` для использования общей функциональности и " +"расширяется от `SchonViewSet` для использования общей функциональности и " "интегрируется с фреймворком Django REST для операций RESTful API. Включает " "методы для получения информации о продукте, применения разрешений и доступа " "к связанным отзывам о продукте." @@ -3405,10 +3426,10 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Представляет собой набор представлений для управления объектами Vendor. Этот " -"набор представлений позволяет получать, фильтровать и сериализовать данные о " -"поставщиках. Он определяет наборы запросов, конфигурации фильтров и классы " -"сериализаторов, используемые для выполнения различных действий. Цель этого " +"Представляет собой набор представлений для управления объектами Vendor. Этот" +" набор представлений позволяет получать, фильтровать и сериализовать данные " +"о поставщиках. Он определяет наборы запросов, конфигурации фильтров и классы" +" сериализаторов, используемые для выполнения различных действий. Цель этого " "класса - обеспечить упрощенный доступ к ресурсам, связанным с Vendor, через " "фреймворк Django REST." @@ -3417,8 +3438,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Представление набора представлений, обрабатывающих объекты Feedback. Этот " @@ -3426,43 +3447,44 @@ msgstr "" "составление списка, фильтрацию и получение подробной информации. Цель этого " "набора представлений - предоставить различные сериализаторы для различных " "действий и реализовать обработку доступных объектов Feedback на основе прав " -"доступа. Он расширяет базовый `EvibesViewSet` и использует систему " -"фильтрации Django для запроса данных." +"доступа. Он расширяет базовый `schonViewSet` и использует систему фильтрации" +" Django для запроса данных." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet для управления заказами и связанными с ними операциями. Этот класс " "предоставляет функциональность для получения, изменения и управления " -"объектами заказов. Он включает в себя различные конечные точки для обработки " -"операций с заказами, таких как добавление или удаление продуктов, выполнение " -"покупок для зарегистрированных и незарегистрированных пользователей, а также " -"получение информации о текущих заказах аутентифицированного пользователя. " -"ViewSet использует несколько сериализаторов в зависимости от конкретного " -"выполняемого действия и соответствующим образом устанавливает разрешения при " -"взаимодействии с данными заказа." +"объектами заказов. Он включает в себя различные конечные точки для обработки" +" операций с заказами, таких как добавление или удаление продуктов, " +"выполнение покупок для зарегистрированных и незарегистрированных " +"пользователей, а также получение информации о текущих заказах " +"аутентифицированного пользователя. ViewSet использует несколько " +"сериализаторов в зависимости от конкретного выполняемого действия и " +"соответствующим образом устанавливает разрешения при взаимодействии с " +"данными заказа." #: engine/core/viewsets.py:914 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Предоставляет набор представлений для управления сущностями OrderProduct. " "Этот набор представлений позволяет выполнять CRUD-операции и " "пользовательские действия, специфичные для модели OrderProduct. Он включает " -"фильтрацию, проверку прав доступа и переключение сериализатора в зависимости " -"от запрашиваемого действия. Кроме того, он предоставляет подробное действие " -"для обработки отзывов об экземплярах OrderProduct" +"фильтрацию, проверку прав доступа и переключение сериализатора в зависимости" +" от запрашиваемого действия. Кроме того, он предоставляет подробное действие" +" для обработки отзывов об экземплярах OrderProduct" #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " @@ -3490,8 +3512,8 @@ msgstr "Выполняет операции, связанные с данным msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3532,8 +3554,8 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"Обрабатывает операции, связанные с тегами продуктов в приложении. Этот класс " -"предоставляет функциональность для получения, фильтрации и сериализации " +"Обрабатывает операции, связанные с тегами продуктов в приложении. Этот класс" +" предоставляет функциональность для получения, фильтрации и сериализации " "объектов Product Tag. Он поддерживает гибкую фильтрацию по определенным " "атрибутам с помощью указанного бэкэнда фильтрации и динамически использует " "различные сериализаторы в зависимости от выполняемого действия." diff --git a/engine/core/locale/sv_SE/LC_MESSAGES/django.mo b/engine/core/locale/sv_SE/LC_MESSAGES/django.mo index f6436ad2..f569663e 100644 Binary files a/engine/core/locale/sv_SE/LC_MESSAGES/django.mo and b/engine/core/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/sv_SE/LC_MESSAGES/django.po b/engine/core/locale/sv_SE/LC_MESSAGES/django.po index 181590cd..790455ac 100644 --- a/engine/core/locale/sv_SE/LC_MESSAGES/django.po +++ b/engine/core/locale/sv_SE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "Är aktiv" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Om det är inställt på false kan objektet inte ses av användare utan " "nödvändigt tillstånd" @@ -74,8 +75,8 @@ msgstr "Tidsstämplar" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Aktivera vald %(verbose_name_plural)s." +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Aktivera valt %(verbose_name_plural)s" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -83,21 +84,21 @@ msgstr "Valda artiklar har aktiverats!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Avaktivera vald %(verbose_name_plural)s." +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Inaktivera vald %(verbose_name_plural)s" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Valda objekt har avaktiverats!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Attributvärde" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Attributets värden" @@ -117,12 +118,12 @@ msgstr "Stock" msgid "stocks" msgstr "Stocks" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Beställ produkt" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Beställ produkter" @@ -130,7 +131,32 @@ msgstr "Beställ produkter" msgid "children" msgstr "Barn och ungdomar" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Har bilder" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "Exportera vald %(verbose_name_plural)s till marknadsplatsernas flöden" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Valda %(verbose_name_plural)s har markerats för export." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" +"Förbjud utvalda %(verbose_name_plural)s från marknadsplatsernas flöden" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Vissa %(verbose_name_plural)s har förbjudits för export." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfig" @@ -154,7 +180,8 @@ msgstr "Levereras" msgid "canceled" msgstr "Annullerad" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Misslyckades" @@ -205,8 +232,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Använd endast en nyckel för att läsa tillåtna data från cacheminnet.\n" -"Använd nyckel, data och timeout med autentisering för att skriva data till " -"cacheminnet." +"Använd nyckel, data och timeout med autentisering för att skriva data till cacheminnet." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -270,7 +296,8 @@ msgstr "" "Skriva om en befintlig attributgrupp och spara icke-redigerbara attribut" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Skriv om vissa fält i en befintlig attributgrupp och spara icke-redigerbara " "fält" @@ -298,7 +325,8 @@ msgstr "Skriva om ett befintligt attribut och spara icke-redigerbara" #: engine/core/docs/drf/viewsets.py:156 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Skriv om vissa fält i ett befintligt attribut och spara icke-redigerbara fält" +"Skriv om vissa fält i ett befintligt attribut och spara icke-redigerbara " +"fält" #: engine/core/docs/drf/viewsets.py:166 msgid "list all attribute values (simple view)" @@ -321,7 +349,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Skriva om ett befintligt attributvärde som sparar icke-redigerbara" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Skriva om vissa fält i ett befintligt attributvärde och spara icke-" "redigerbara fält" @@ -378,8 +407,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Substringsökning utan skiftlägeskänslighet över human_readable_id, " "order_products.product.name och order_products.product.partnumber" @@ -403,7 +432,8 @@ msgstr "Filtrera efter exakt mänskligt läsbart order-ID" #: engine/core/docs/drf/viewsets.py:336 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -"Filtrera efter användarens e-post (exakt matchning utan skiftlägeskänslighet)" +"Filtrera efter användarens e-post (exakt matchning utan " +"skiftlägeskänslighet)" #: engine/core/docs/drf/viewsets.py:341 msgid "Filter by user's UUID" @@ -415,9 +445,9 @@ msgstr "Filtrera efter orderstatus (skiftlägeskänslig matchning av delsträng) #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordna efter en av följande: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Prefix med \"-\" för fallande " @@ -513,8 +543,8 @@ msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"Tar bort en produkt från en order med hjälp av de angivna `product_uuid` och " -"`attributen`." +"Tar bort en produkt från en order med hjälp av de angivna `product_uuid` och" +" `attributen`." #: engine/core/docs/drf/viewsets.py:483 msgid "remove product from order, quantities will not count" @@ -535,7 +565,8 @@ msgstr "Lista alla attribut (enkel vy)" #: engine/core/docs/drf/viewsets.py:498 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -"För användare som inte är anställda returneras endast deras egna önskelistor." +"För användare som inte är anställda returneras endast deras egna " +"önskelistor." #: engine/core/docs/drf/viewsets.py:508 msgid "retrieve a single wishlist (detailed view)" @@ -560,7 +591,8 @@ msgstr "Skriva om ett befintligt attribut och spara icke-redigerbara" #: engine/core/docs/drf/viewsets.py:537 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Skriv om vissa fält i ett befintligt attribut och spara icke-redigerbara fält" +"Skriv om vissa fält i ett befintligt attribut och spara icke-redigerbara " +"fält" #: engine/core/docs/drf/viewsets.py:544 msgid "retrieve current pending wishlist of a user" @@ -615,26 +647,17 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrera efter ett eller flera attributnamn/värdepar. \n" "- **Syntax**: `attr_namn=metod-värde[;attr2=metod2-värde2]...`\n" -"- **Metoder** (standard är `icontains` om den utelämnas): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- **Värde typning**: JSON prövas först (så att du kan skicka listor/dikter), " -"`true`/`false` för booleaner, heltal, flottörer; annars behandlas som " -"sträng. \n" +"- **Metoder** (standard är `icontains` om den utelämnas): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Värde typning**: JSON prövas först (så att du kan skicka listor/dikter), `true`/`false` för booleaner, heltal, flottörer; annars behandlas som sträng. \n" "- **Base64**: prefix med `b64-` för URL-säker base64-kodning av råvärdet. \n" "Exempel på detta: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" @@ -650,12 +673,10 @@ msgstr "(exakt) UUID för produkt" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Kommaseparerad lista över fält att sortera efter. Prefix med `-` för " -"fallande. \n" +"Kommaseparerad lista över fält att sortera efter. Prefix med `-` för fallande. \n" "**Tillåtna:** uuid, betyg, namn, slug, skapad, modifierad, pris, slumpmässig" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 @@ -1148,7 +1169,8 @@ msgstr "Köpa en order" #: engine/core/graphene/mutations.py:220 engine/core/graphene/mutations.py:282 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" -"Vänligen ange antingen order_uuid eller order_hr_id - ömsesidigt uteslutande!" +"Vänligen ange antingen order_uuid eller order_hr_id - ömsesidigt " +"uteslutande!" #: engine/core/graphene/mutations.py:249 engine/core/graphene/mutations.py:524 #: engine/core/graphene/mutations.py:573 engine/core/viewsets.py:753 @@ -1204,8 +1226,8 @@ msgstr "Köpa en order" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Skicka attributen som en sträng formaterad som attr1=värde1,attr2=värde2" @@ -1226,9 +1248,9 @@ msgstr "Orderprodukt {order_product_uuid} hittades inte!" msgid "original address string provided by the user" msgstr "Originaladresssträng som tillhandahålls av användaren" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1244,8 +1266,8 @@ msgstr "ElasticSearch - fungerar som en smäck" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Attribut" @@ -1282,7 +1304,8 @@ msgstr "" "Vilka attribut och värden som kan användas för att filtrera denna kategori." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minsta och högsta pris för produkter i denna kategori, om tillgängligt." @@ -1320,7 +1343,7 @@ msgid "represents feedback from a user." msgstr "Representerar feedback från en användare." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Meddelanden" @@ -1328,7 +1351,7 @@ msgstr "Meddelanden" msgid "download url for this order product if applicable" msgstr "Nedladdningsadress för denna orderprodukt om tillämpligt" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Återkoppling" @@ -1336,7 +1359,7 @@ msgstr "Återkoppling" msgid "a list of order products in this order" msgstr "En lista över orderprodukter i den här ordern" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Faktureringsadress" @@ -1364,7 +1387,7 @@ msgstr "Är alla produkter i beställningen digitala" msgid "transactions for this order" msgstr "Transaktioner för denna order" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Beställningar" @@ -1381,7 +1404,7 @@ msgstr "Produktens bilder" msgid "category" msgstr "Kategori" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Återkoppling" @@ -1422,7 +1445,7 @@ msgstr "Produkter endast tillgängliga för personliga beställningar" msgid "discount price" msgstr "Rabatterat pris" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Produkter" @@ -1434,7 +1457,7 @@ msgstr "Promokoder" msgid "products on sale" msgstr "Produkter på rea" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Kampanjer" @@ -1442,7 +1465,7 @@ msgstr "Kampanjer" msgid "vendor" msgstr "Leverantör" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1450,11 +1473,11 @@ msgstr "Leverantör" msgid "product" msgstr "Produkt" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Önskelistade produkter" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Önskelistor" @@ -1493,8 +1516,7 @@ msgstr "Företagets telefonnummer" #: engine/core/graphene/object_types.py:761 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"\"email from\", ibland måste det användas istället för host user-värdet" +msgstr "\"email from\", ibland måste det användas istället för host user-värdet" #: engine/core/graphene/object_types.py:764 msgid "email host user" @@ -1554,8 +1576,8 @@ msgid "" "categorizing and managing attributes more effectively in acomplex system." msgstr "" "Representerar en grupp av attribut, som kan vara hierarkiska. Denna klass " -"används för att hantera och organisera attributgrupper. En attributgrupp kan " -"ha en överordnad grupp som bildar en hierarkisk struktur. Detta kan vara " +"används för att hantera och organisera attributgrupper. En attributgrupp kan" +" ha en överordnad grupp som bildar en hierarkisk struktur. Detta kan vara " "användbart för att kategorisera och hantera attribut på ett mer effektivt " "sätt i ett komplext system." @@ -1571,7 +1593,7 @@ msgstr "Överordnad attributgrupp" msgid "attribute group's name" msgstr "Attributgruppens namn" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Attributgrupp" @@ -1588,10 +1610,10 @@ msgstr "" "Representerar en vendor-enhet som kan lagra information om externa " "leverantörer och deras interaktionskrav. Klassen Vendor används för att " "definiera och hantera information som är relaterad till en extern " -"leverantör. Den lagrar leverantörens namn, autentiseringsuppgifter som krävs " -"för kommunikation och den procentuella markering som tillämpas på produkter " -"som hämtas från leverantören. Modellen innehåller också ytterligare metadata " -"och begränsningar, vilket gör den lämplig att använda i system som " +"leverantör. Den lagrar leverantörens namn, autentiseringsuppgifter som krävs" +" för kommunikation och den procentuella markering som tillämpas på produkter" +" som hämtas från leverantören. Modellen innehåller också ytterligare " +"metadata och begränsningar, vilket gör den lämplig att använda i system som " "interagerar med tredjepartsleverantörer." #: engine/core/models.py:122 @@ -1649,8 +1671,8 @@ msgstr "" "identifiera produkter. Klassen ProductTag är utformad för att unikt " "identifiera och klassificera produkter genom en kombination av en intern " "taggidentifierare och ett användarvänligt visningsnamn. Den stöder " -"operationer som exporteras via mixins och tillhandahåller metadataanpassning " -"för administrativa ändamål." +"operationer som exporteras via mixins och tillhandahåller metadataanpassning" +" för administrativa ändamål." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1709,8 +1731,8 @@ msgstr "" "innehåller fält för metadata och visuell representation, som utgör grunden " "för kategorirelaterade funktioner. Den här klassen används vanligtvis för " "att definiera och hantera produktkategorier eller andra liknande " -"grupperingar inom en applikation, så att användare eller administratörer kan " -"ange namn, beskrivning och hierarki för kategorier samt tilldela attribut " +"grupperingar inom en applikation, så att användare eller administratörer kan" +" ange namn, beskrivning och hierarki för kategorier samt tilldela attribut " "som bilder, taggar eller prioritet." #: engine/core/models.py:269 @@ -1762,7 +1784,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Representerar ett Brand-objekt i systemet. Klassen hanterar information och " "attribut som är relaterade till ett varumärke, inklusive dess namn, " @@ -1812,8 +1835,8 @@ msgstr "Kategorier" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1846,8 +1869,8 @@ msgstr "Försäljningspris" msgid "the product associated with this stock entry" msgstr "Produkten som är associerad med denna lagerpost" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Tillhörande produkt" @@ -1905,8 +1928,8 @@ msgstr "" "Representerar en produkt med attribut som kategori, varumärke, taggar, " "digital status, namn, beskrivning, artikelnummer och slug. Tillhandahåller " "relaterade verktygsegenskaper för att hämta betyg, feedbackräkning, pris, " -"kvantitet och totala beställningar. Utformad för användning i ett system som " -"hanterar e-handel eller lagerhantering. Klassen interagerar med relaterade " +"kvantitet och totala beställningar. Utformad för användning i ett system som" +" hanterar e-handel eller lagerhantering. Klassen interagerar med relaterade " "modeller (t.ex. Category, Brand och ProductTag) och hanterar cachelagring " "för egenskaper som används ofta för att förbättra prestandan. Den används " "för att definiera och manipulera produktdata och tillhörande information i " @@ -1948,7 +1971,7 @@ msgstr "Tillhandahålla ett tydligt identifierande namn för produkten" msgid "product name" msgstr "Produktens namn" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Lägg till en detaljerad beskrivning av produkten" @@ -1968,108 +1991,116 @@ msgstr "Artikelnummer" msgid "stock keeping unit for this product" msgstr "Lagerhållningsenhet för denna produkt" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Om denna produkt ska exporteras till marknadsplatser" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Exportera till marknadsplatser" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"Representerar ett attribut i systemet. Denna klass används för att definiera " -"och hantera attribut, som är anpassningsbara bitar av data som kan " +"Representerar ett attribut i systemet. Denna klass används för att definiera" +" och hantera attribut, som är anpassningsbara bitar av data som kan " "associeras med andra enheter. Attribut har associerade kategorier, grupper, " "värdetyper och namn. Modellen stöder flera typer av värden, inklusive " -"sträng, heltal, flottör, boolean, array och objekt. Detta ger möjlighet till " -"dynamisk och flexibel datastrukturering." +"sträng, heltal, flottör, boolean, array och objekt. Detta ger möjlighet till" +" dynamisk och flexibel datastrukturering." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Grupp av detta attribut" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Sträng" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Heltal" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Flottör" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Array" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Objekt" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Typ av attributets värde" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Typ av värde" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Namn på detta attribut" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Attributets namn" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "är filtrerbar" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Vilka attribut och värden som kan användas för att filtrera denna kategori." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Attribut" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Representerar ett specifikt värde för ett attribut som är kopplat till en " "produkt. Det kopplar \"attributet\" till ett unikt \"värde\", vilket " "möjliggör bättre organisation och dynamisk representation av " "produktegenskaper." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Attribut för detta värde" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Den specifika produkt som är associerad med detta attributs värde" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Det specifika värdet för detta attribut" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2079,46 +2110,46 @@ msgstr "" "produkter och bestämma deras visningsordning. Den innehåller också en " "tillgänglighetsfunktion med alternativ text för bilderna." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Tillhandahåll alternativ text för bilden för tillgänglighet" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Alt-text för bild" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Ladda upp bildfilen för den här produkten" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Produktbild" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Bestämmer i vilken ordning bilderna ska visas" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Prioritet för visning" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Den produkt som denna bild representerar" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Produktbilder" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Representerar en kampanj för produkter med rabatt. Den här klassen används " "för att definiera och hantera kampanjer som erbjuder en procentbaserad " @@ -2127,39 +2158,39 @@ msgstr "" "tillämpliga produkterna. Den integreras med produktkatalogen för att " "fastställa vilka artiklar som påverkas av kampanjen." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Procentuell rabatt för de valda produkterna" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Rabattprocent" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Ange ett unikt namn för denna kampanj" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Kampanjens namn" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Beskrivning av kampanjen" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Välj vilka produkter som ingår i denna kampanj" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Inkluderade produkter" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Marknadsföring" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2167,129 +2198,129 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" "Representerar en användares önskelista för lagring och hantering av önskade " -"produkter. Klassen tillhandahåller funktionalitet för att hantera en samling " -"produkter, med stöd för operationer som att lägga till och ta bort " +"produkter. Klassen tillhandahåller funktionalitet för att hantera en samling" +" produkter, med stöd för operationer som att lägga till och ta bort " "produkter, samt stöd för operationer för att lägga till och ta bort flera " "produkter samtidigt." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Produkter som användaren har markerat som önskade" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Användare som äger denna önskelista" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Wishlist's ägare" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Önskelista" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Representerar en dokumentärpost som är knuten till en produkt. Denna klass " "används för att lagra information om dokumentärer som är relaterade till " "specifika produkter, inklusive filuppladdningar och deras metadata. Den " "innehåller metoder och egenskaper för att hantera filtyp och lagringssökväg " -"för dokumentärfilerna. Den utökar funktionaliteten från specifika mixins och " -"tillhandahåller ytterligare anpassade funktioner." +"för dokumentärfilerna. Den utökar funktionaliteten från specifika mixins och" +" tillhandahåller ytterligare anpassade funktioner." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Dokumentärfilm" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Dokumentärer" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Olöst" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Representerar en adressentitet som innehåller platsinformation och " "associationer med en användare. Tillhandahåller funktionalitet för lagring " -"av geografiska data och adressdata samt integration med geokodningstjänster. " -"Denna klass är utformad för att lagra detaljerad adressinformation inklusive " -"komponenter som gata, stad, region, land och geolokalisering (longitud och " -"latitud). Den stöder integration med API:er för geokodning, vilket möjliggör " -"lagring av råa API-svar för vidare bearbetning eller inspektion. Klassen gör " -"det också möjligt att associera en adress med en användare, vilket " -"underlättar personlig datahantering." +"av geografiska data och adressdata samt integration med geokodningstjänster." +" Denna klass är utformad för att lagra detaljerad adressinformation " +"inklusive komponenter som gata, stad, region, land och geolokalisering " +"(longitud och latitud). Den stöder integration med API:er för geokodning, " +"vilket möjliggör lagring av råa API-svar för vidare bearbetning eller " +"inspektion. Klassen gör det också möjligt att associera en adress med en " +"användare, vilket underlättar personlig datahantering." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Adressrad till kunden" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adresslinje" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Gata" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Distrikt" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Stad" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Region" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Postnummer" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Land" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Geolokaliseringspunkt (longitud, latitud)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Fullständigt JSON-svar från geokodaren för denna adress" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Lagrad JSON-svar från geokodningstjänsten" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adress" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresser" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2306,94 +2337,94 @@ msgstr "" "funktioner för att validera och tillämpa kampanjkoden på en order och " "samtidigt säkerställa att begränsningarna uppfylls." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Unik kod som används av en användare för att lösa in en rabatt" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Identifierare för kampanjkod" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Fast rabattbelopp tillämpas om procent inte används" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Fast diskonteringsbelopp" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Procentuell rabatt som tillämpas om fast belopp inte används" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Procentuell rabatt" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Tidsstämpel när kampanjkoden upphör att gälla" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Slutgiltig giltighetstid" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Tidsstämpel från vilken denna promokod är giltig" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Start giltighetstid" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Tidsstämpel när kampanjkoden användes, tom om den inte har använts ännu" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Tidsstämpel för användning" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Användare som tilldelats denna promokod om tillämpligt" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Tilldelad användare" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Kampanjkod" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Kampanjkoder" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"Endast en typ av rabatt ska definieras (belopp eller procent), men inte båda " -"eller ingendera." +"Endast en typ av rabatt ska definieras (belopp eller procent), men inte båda" +" eller ingendera." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promokoden har redan använts" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Ogiltig rabattyp för promokod {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2405,137 +2436,137 @@ msgstr "" "faktureringsuppgifter kan uppdateras. På samma sätt stöder funktionaliteten " "hanteringen av produkterna i orderns livscykel." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Den faktureringsadress som används för denna order" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Valfri kampanjkod tillämpas på denna beställning" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Tillämpad kampanjkod" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Den leveransadress som används för denna order" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Leveransadress" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Aktuell status för ordern i dess livscykel" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Orderstatus" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "JSON-struktur för meddelanden som ska visas för användare, i admin UI " "används tabellvyn" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "JSON-representation av orderattribut för denna order" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Användaren som gjorde beställningen" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Användare" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Tidsstämpel när ordern slutfördes" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Köp tid" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "En mänskligt läsbar identifierare för ordern" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "mänskligt läsbart ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Beställning" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "En användare får bara ha en väntande order åt gången!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Du kan inte lägga till produkter i en order som inte är en pågående order" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Du kan inte lägga till inaktiva produkter i ordern" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Du kan inte lägga till fler produkter än vad som finns i lager" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" "Du kan inte ta bort produkter från en order som inte är en pågående order" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} finns inte med frågan <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promokoden finns inte" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "Du kan bara köpa fysiska produkter med angiven leveransadress!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adressen finns inte" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "Du kan inte köpa just nu, vänligen försök igen om några minuter." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Ogiltigt kraftvärde" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Du kan inte köpa en tom order!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Du kan inte köpa en order utan en användare!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "En användare utan balans kan inte köpa med balans!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Otillräckliga medel för att slutföra ordern" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2543,14 +2574,14 @@ msgstr "" "du kan inte köpa utan registrering, vänligen ange följande information: " "kundens namn, kundens e-post, kundens telefonnummer" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Ogiltig betalningsmetod: {payment_method} från {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2561,37 +2592,38 @@ msgstr "" "Hanterar feedback från användare för produkter. Den här klassen är utformad " "för att fånga upp och lagra feedback från användare om specifika produkter " "som de har köpt. Den innehåller attribut för att lagra användarkommentarer, " -"en referens till den relaterade produkten i ordern och ett användartilldelat " -"betyg. Klassen använder databasfält för att effektivt modellera och hantera " -"feedbackdata." +"en referens till den relaterade produkten i ordern och ett användartilldelat" +" betyg. Klassen använder databasfält för att effektivt modellera och hantera" +" feedbackdata." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "Kommentarer från användare om deras erfarenhet av produkten" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Återkoppling av kommentarer" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Refererar till den specifika produkten i en order som denna feedback handlar " -"om" +"Refererar till den specifika produkten i en order som denna feedback handlar" +" om" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Relaterad order produkt" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Användartilldelat betyg för produkten" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Produktbetyg" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2607,135 +2639,135 @@ msgstr "" "OrderProduct-modellen innehåller information om en produkt som ingår i en " "order, inklusive detaljer som inköpspris, kvantitet, produktattribut och " "status. Den hanterar meddelanden till användaren och administratörer och " -"hanterar åtgärder som att returnera produktsaldot eller lägga till feedback. " -"Modellen innehåller också metoder och egenskaper som stöder affärslogik, t." -"ex. beräkning av totalpriset eller generering av en URL för nedladdning av " -"digitala produkter. Modellen integreras med Order- och Product-modellerna " +"hanterar åtgärder som att returnera produktsaldot eller lägga till feedback." +" Modellen innehåller också metoder och egenskaper som stöder affärslogik, " +"t.ex. beräkning av totalpriset eller generering av en URL för nedladdning av" +" digitala produkter. Modellen integreras med Order- och Product-modellerna " "och lagrar en referens till dem." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Det pris som kunden betalade för denna produkt vid inköpstillfället" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Inköpspris vid ordertillfället" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Interna kommentarer för administratörer om denna beställda produkt" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Interna kommentarer" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Meddelanden till användare" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "JSON-representation av detta objekts attribut" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Sorterade produktattribut" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Referens till den överordnade order som innehåller denna produkt" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Föräldraorder" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Den specifika produkt som är kopplad till denna orderrad" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Antal av denna specifika produkt i ordern" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Produktens kvantitet" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Aktuell status för denna produkt i ordern" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Status för produktlinje" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderprodukt måste ha en tillhörande order!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Fel åtgärd angiven för återkoppling: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "du kan inte återkoppla en order som inte mottagits" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Namn" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL för integrationen" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Autentiseringsuppgifter" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Du kan bara ha en CRM-leverantör som standard" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM-system" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Beställningens CRM-länk" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Beställningarnas CRM-länkar" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"Representerar nedladdningsfunktionen för digitala tillgångar som är kopplade " -"till order. Klassen DigitalAssetDownload ger möjlighet att hantera och komma " -"åt nedladdningar som är relaterade till orderprodukter. Den upprätthåller " -"information om den associerade orderprodukten, antalet nedladdningar och om " -"tillgången är offentligt synlig. Den innehåller en metod för att generera en " -"URL för nedladdning av tillgången när den associerade ordern har statusen " -"slutförd." +"Representerar nedladdningsfunktionen för digitala tillgångar som är kopplade" +" till order. Klassen DigitalAssetDownload ger möjlighet att hantera och " +"komma åt nedladdningar som är relaterade till orderprodukter. Den " +"upprätthåller information om den associerade orderprodukten, antalet " +"nedladdningar och om tillgången är offentligt synlig. Den innehåller en " +"metod för att generera en URL för nedladdning av tillgången när den " +"associerade ordern har statusen slutförd." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Nedladdningar" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Nedladdningar" @@ -2743,8 +2775,8 @@ msgstr "Nedladdningar" msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -"du måste ge en kommentar, betyg och beställa produkt uuid för att lägga till " -"feedback." +"du måste ge en kommentar, betyg och beställa produkt uuid för att lägga till" +" feedback." #: engine/core/sitemaps.py:25 msgid "Home" @@ -2936,8 +2968,7 @@ msgstr "Hej %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Tack för din beställning #%(order.pk)s! Vi är glada att kunna informera dig " @@ -3052,8 +3083,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Tack för din beställning! Vi är glada att kunna bekräfta ditt köp. Nedan " @@ -3183,14 +3213,10 @@ msgstr "Hanterar logiken i att köpa som ett företag utan registrering." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Hanterar nedladdning av en digital tillgång som är kopplad till en order.\n" -"Denna funktion försöker servera den digitala tillgångsfilen som finns i " -"lagringskatalogen för projektet. Om filen inte hittas visas ett HTTP 404-fel " -"som indikerar att resursen inte är tillgänglig." +"Denna funktion försöker servera den digitala tillgångsfilen som finns i lagringskatalogen för projektet. Om filen inte hittas visas ett HTTP 404-fel som indikerar att resursen inte är tillgänglig." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3219,19 +3245,15 @@ msgstr "favicon hittades inte" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Hanterar förfrågningar om favicon på en webbplats.\n" -"Denna funktion försöker servera favicon-filen som finns i den statiska " -"katalogen i projektet. Om favicon-filen inte hittas visas ett HTTP 404-fel " -"som anger att resursen inte är tillgänglig." +"Denna funktion försöker servera favicon-filen som finns i den statiska katalogen i projektet. Om favicon-filen inte hittas visas ett HTTP 404-fel som anger att resursen inte är tillgänglig." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Omdirigerar begäran till indexsidan för admin. Funktionen hanterar " @@ -3240,8 +3262,8 @@ msgstr "" "HTTP-omdirigeringen." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Returnerar aktuell version av eVibes." +msgid "Returns current version of the Schon. " +msgstr "Returnerar aktuell version av Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3254,30 +3276,31 @@ msgstr "Returnerar anpassade variabler för Dashboard." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Definierar en vy för hantering av Evibes-relaterade operationer. Klassen " -"EvibesViewSet ärver från ModelViewSet och tillhandahåller funktionalitet för " -"att hantera åtgärder och operationer på Evibes-entiteter. Den innehåller " -"stöd för dynamiska serializerklasser baserat på den aktuella åtgärden, " +"Definierar en vy för hantering av schon-relaterade operationer. Klassen " +"SchonViewSet ärver från ModelViewSet och tillhandahåller funktionalitet för " +"att hantera åtgärder och operationer på schon-entiteter. Den innehåller stöd" +" för dynamiska serializerklasser baserat på den aktuella åtgärden, " "anpassningsbara behörigheter och renderingsformat." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Representerar en vy för hantering av AttributeGroup-objekt. Hanterar " -"åtgärder relaterade till AttributeGroup, inklusive filtrering, serialisering " -"och hämtning av data. Denna klass är en del av applikationens API-lager och " -"tillhandahåller ett standardiserat sätt att behandla förfrågningar och svar " -"för AttributeGroup-data." +"åtgärder relaterade till AttributeGroup, inklusive filtrering, serialisering" +" och hämtning av data. Denna klass är en del av applikationens API-lager och" +" tillhandahåller ett standardiserat sätt att behandla förfrågningar och svar" +" för AttributeGroup-data." #: engine/core/viewsets.py:179 msgid "" @@ -3300,8 +3323,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Ett viewset för hantering av AttributeValue-objekt. Denna viewset " "tillhandahåller funktionalitet för att lista, hämta, skapa, uppdatera och " @@ -3331,8 +3354,8 @@ msgid "" "endpoints for Brand objects." msgstr "" "Representerar en vy för hantering av varumärkesinstanser. Denna klass " -"tillhandahåller funktionalitet för att fråga, filtrera och serialisera Brand-" -"objekt. Den använder Djangos ViewSet-ramverk för att förenkla " +"tillhandahåller funktionalitet för att fråga, filtrera och serialisera " +"Brand-objekt. Den använder Djangos ViewSet-ramverk för att förenkla " "implementeringen av API-slutpunkter för varumärkesobjekt." #: engine/core/viewsets.py:458 @@ -3340,15 +3363,15 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Hanterar operationer relaterade till modellen `Product` i systemet. Denna " -"klass tillhandahåller en vy för att hantera produkter, inklusive filtrering, " -"serialisering och operationer på specifika instanser. Den utökar från " -"`EvibesViewSet` för att använda gemensam funktionalitet och integreras med " +"klass tillhandahåller en vy för att hantera produkter, inklusive filtrering," +" serialisering och operationer på specifika instanser. Den utökar från " +"`SchonViewSet` för att använda gemensam funktionalitet och integreras med " "Django REST-ramverket för RESTful API-operationer. Innehåller metoder för " "att hämta produktinformation, tillämpa behörigheter och få tillgång till " "relaterad feedback för en produkt." @@ -3361,8 +3384,8 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Representerar en vy för hantering av Vendor-objekt. Denna vy gör det möjligt " -"att hämta, filtrera och serialisera Vendor-data. Den definierar queryset, " +"Representerar en vy för hantering av Vendor-objekt. Denna vy gör det möjligt" +" att hämta, filtrera och serialisera Vendor-data. Den definierar queryset, " "filterkonfigurationer och serializer-klasser som används för att hantera " "olika åtgärder. Syftet med denna klass är att ge strömlinjeformad åtkomst " "till Vendor-relaterade resurser genom Django REST-ramverket." @@ -3372,16 +3395,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"Representation av en vyuppsättning som hanterar Feedback-objekt. Denna klass " -"hanterar åtgärder relaterade till Feedback-objekt, inklusive listning, " +"Representation av en vyuppsättning som hanterar Feedback-objekt. Denna klass" +" hanterar åtgärder relaterade till Feedback-objekt, inklusive listning, " "filtrering och hämtning av detaljer. Syftet med denna vyuppsättning är att " "tillhandahålla olika serializers för olika åtgärder och implementera " "behörighetsbaserad hantering av tillgängliga Feedback-objekt. Den utökar " -"basen `EvibesViewSet` och använder Djangos filtreringssystem för att fråga " +"basen `SchonViewSet` och använder Djangos filtreringssystem för att fråga " "data." #: engine/core/viewsets.py:652 @@ -3389,15 +3412,15 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet för hantering av order och relaterade operationer. Den här klassen " "innehåller funktioner för att hämta, ändra och hantera orderobjekt. Den " -"innehåller olika slutpunkter för hantering av orderoperationer som att lägga " -"till eller ta bort produkter, utföra inköp för registrerade och " +"innehåller olika slutpunkter för hantering av orderoperationer som att lägga" +" till eller ta bort produkter, utföra inköp för registrerade och " "oregistrerade användare och hämta den aktuella autentiserade användarens " "pågående order. ViewSet använder flera serializers baserat på den specifika " "åtgärd som utförs och verkställer behörigheter i enlighet med detta vid " @@ -3407,8 +3430,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Tillhandahåller en vy för hantering av OrderProduct-enheter. Denna " @@ -3442,8 +3465,8 @@ msgstr "Hanterar åtgärder relaterade till lagerdata i systemet." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3486,5 +3509,5 @@ msgstr "" "Hanterar operationer relaterade till Product Tags inom applikationen. " "Klassen tillhandahåller funktionalitet för att hämta, filtrera och " "serialisera Product Tag-objekt. Den stöder flexibel filtrering på specifika " -"attribut med hjälp av det angivna filterbackend och använder dynamiskt olika " -"serializers baserat på den åtgärd som utförs." +"attribut med hjälp av det angivna filterbackend och använder dynamiskt olika" +" serializers baserat på den åtgärd som utförs." diff --git a/engine/core/locale/th_TH/LC_MESSAGES/django.mo b/engine/core/locale/th_TH/LC_MESSAGES/django.mo index 9ffd93cb..5b480144 100644 Binary files a/engine/core/locale/th_TH/LC_MESSAGES/django.mo and b/engine/core/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/th_TH/LC_MESSAGES/django.po b/engine/core/locale/th_TH/LC_MESSAGES/django.po index 1c22cb7b..839fbc3b 100644 --- a/engine/core/locale/th_TH/LC_MESSAGES/django.po +++ b/engine/core/locale/th_TH/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,8 +27,11 @@ msgstr "กำลังใช้งานอยู่" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" -msgstr "หากตั้งค่าเป็น false, วัตถุนี้ไม่สามารถมองเห็นได้โดยผู้ใช้ที่ไม่มีสิทธิ์ที่ต้องการ" +"if set to false, this object can't be seen by users without needed " +"permission" +msgstr "" +"หากตั้งค่าเป็น false, " +"วัตถุนี้ไม่สามารถมองเห็นได้โดยผู้ใช้ที่ไม่มีสิทธิ์ที่ต้องการ" #: engine/core/abstract.py:26 engine/core/choices.py:18 msgid "created" @@ -72,7 +75,7 @@ msgstr "เวลาที่บันทึก" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "เปิดใช้งานที่เลือกไว้ %(verbose_name_plural)s" #: engine/core/admin.py:166 @@ -81,7 +84,7 @@ msgstr "รายการที่เลือกไว้ได้รับก #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "ยกเลิกการใช้งานที่เลือกไว้ %(verbose_name_plural)s" #: engine/core/admin.py:184 @@ -89,13 +92,13 @@ msgid "selected items have been deactivated." msgstr "รายการที่เลือกถูกยกเลิกการใช้งานแล้ว!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "ค่าคุณสมบัติ" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "ค่าของแอตทริบิวต์" @@ -115,12 +118,12 @@ msgstr "สต็อก" msgid "stocks" msgstr "หุ้น" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "สั่งซื้อสินค้า" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "สั่งซื้อสินค้า" @@ -128,7 +131,31 @@ msgstr "สั่งซื้อสินค้า" msgid "children" msgstr "เด็ก" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "มีรูปภาพ" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "ส่งออก %(verbose_name_plural)s ที่เลือกไปยังฟีดของตลาด" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "%(verbose_name_plural)s ที่เลือกไว้ได้รับการทำเครื่องหมายเพื่อส่งออก" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "Ban ได้เลือก %(verbose_name_plural)s จากฟีดของตลาด" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "%(verbose_name_plural)s ที่เลือกไว้ถูกห้ามส่งออก" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "การกำหนดค่า" @@ -152,7 +179,8 @@ msgstr "ส่งมอบแล้ว" msgid "canceled" msgstr "ยกเลิก" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "ล้มเหลว" @@ -202,8 +230,8 @@ msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." msgstr "" -"ใช้เฉพาะคีย์เพื่ออ่านข้อมูลที่ได้รับอนุญาตจากแคช ใช้คีย์ ข้อมูล และระยะเวลาหมดอายุ " -"พร้อมการยืนยันตัวตนเพื่อเขียนข้อมูลลงในแคช" +"ใช้เฉพาะคีย์เพื่ออ่านข้อมูลที่ได้รับอนุญาตจากแคช ใช้คีย์ ข้อมูล " +"และระยะเวลาหมดอายุ พร้อมการยืนยันตัวตนเพื่อเขียนข้อมูลลงในแคช" #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -238,7 +266,8 @@ msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -"ซื้อสินค้าในฐานะธุรกิจ โดยใช้ `products` ที่ให้มาพร้อมกับ `product_uuid` และ `attributes`" +"ซื้อสินค้าในฐานะธุรกิจ โดยใช้ `products` ที่ให้มาพร้อมกับ `product_uuid` และ" +" `attributes`" #: engine/core/docs/drf/views.py:180 msgid "download a digital asset from purchased digital order" @@ -262,11 +291,15 @@ msgstr "ลบกลุ่มแอตทริบิวต์" #: engine/core/docs/drf/viewsets.py:99 msgid "rewrite an existing attribute group saving non-editables" -msgstr "เขียนกลุ่มคุณลักษณะที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนกลุ่มคุณลักษณะที่มีอยู่ใหม่โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของกลุ่มแอตทริบิวต์ที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" +msgstr "" +"เขียนฟิลด์บางส่วนของกลุ่มแอตทริบิวต์ที่มีอยู่ใหม่ " +"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:118 msgid "list all attributes (simple view)" @@ -290,7 +323,9 @@ msgstr "เขียนแอตทริบิวต์ที่มีอยู #: engine/core/docs/drf/viewsets.py:156 msgid "rewrite some fields of an existing attribute saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" +msgstr "" +"เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ " +"โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" #: engine/core/docs/drf/viewsets.py:166 msgid "list all attribute values (simple view)" @@ -313,8 +348,11 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "เขียนค่าแอตทริบิวต์ที่มีอยู่ใหม่โดยเก็บค่าที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของค่าแอตทริบิวต์ที่มีอยู่ใหม่ โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" +msgstr "" +"เขียนฟิลด์บางส่วนของค่าแอตทริบิวต์ที่มีอยู่ใหม่ " +"โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -342,7 +380,9 @@ msgstr "เขียนหมวดหมู่ที่มีอยู่ให #: engine/core/docs/drf/viewsets.py:270 engine/core/docs/drf/viewsets.py:272 msgid "rewrite some fields of an existing category saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ " +"โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:280 engine/core/docs/drf/viewsets.py:757 #: engine/core/docs/drf/viewsets.py:1046 @@ -366,11 +406,11 @@ msgstr "สำหรับผู้ใช้ที่ไม่ใช่พนั #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"การค้นหาส่วนย่อยโดยไม่คำนึงถึงตัวพิมพ์เล็กหรือใหญ่ใน human_readable_id, order_products." -"product.name และ order_products.product.partnumber" +"การค้นหาส่วนย่อยโดยไม่คำนึงถึงตัวพิมพ์เล็กหรือใหญ่ใน human_readable_id, " +"order_products.product.name และ order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -390,7 +430,8 @@ msgstr "กรองตามหมายเลขคำสั่งซื้อ #: engine/core/docs/drf/viewsets.py:336 msgid "Filter by user's email (case-insensitive exact match)" -msgstr "กรองตามอีเมลของผู้ใช้ (ตรงตามตัวอักษรโดยไม่คำนึงถึงตัวพิมพ์ใหญ่หรือเล็ก)" +msgstr "" +"กรองตามอีเมลของผู้ใช้ (ตรงตามตัวอักษรโดยไม่คำนึงถึงตัวพิมพ์ใหญ่หรือเล็ก)" #: engine/core/docs/drf/viewsets.py:341 msgid "Filter by user's UUID" @@ -398,17 +439,18 @@ msgstr "กรองตาม UUID ของผู้ใช้" #: engine/core/docs/drf/viewsets.py:347 msgid "Filter by order status (case-insensitive substring match)" -msgstr "กรองตามสถานะคำสั่งซื้อ (การจับคู่สตริงย่อยโดยไม่คำนึงตัวพิมพ์ใหญ่/เล็ก)" +msgstr "" +"กรองตามสถานะคำสั่งซื้อ (การจับคู่สตริงย่อยโดยไม่คำนึงตัวพิมพ์ใหญ่/เล็ก)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "เรียงลำดับโดยหนึ่งใน: uuid, human_readable_id, user_email, user, status, " -"created, modified, buy_time, random. นำหน้าด้วย '-' สำหรับเรียงลำดับจากมากไปน้อย " -"(เช่น '-buy_time')." +"created, modified, buy_time, random. นำหน้าด้วย '-' " +"สำหรับเรียงลำดับจากมากไปน้อย (เช่น '-buy_time')." #: engine/core/docs/drf/viewsets.py:366 msgid "retrieve a single order (detailed view)" @@ -436,7 +478,9 @@ msgstr "เขียนหมวดหมู่ที่มีอยู่ให #: engine/core/docs/drf/viewsets.py:403 msgid "rewrite some fields of an existing order saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนฟิลด์บางส่วนของหมวดหมู่ที่มีอยู่แล้วใหม่ " +"โดยบันทึกเฉพาะข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:410 msgid "purchase an order" @@ -449,8 +493,8 @@ msgid "" "transaction is initiated." msgstr "" "สรุปการสั่งซื้อสินค้า หากใช้ `force_balance` " -"การสั่งซื้อจะเสร็จสมบูรณ์โดยใช้ยอดเงินคงเหลือของผู้ใช้ หากใช้ `force_payment` " -"จะเริ่มการทำธุรกรรม" +"การสั่งซื้อจะเสร็จสมบูรณ์โดยใช้ยอดเงินคงเหลือของผู้ใช้ หากใช้ " +"`force_payment` จะเริ่มการทำธุรกรรม" #: engine/core/docs/drf/viewsets.py:427 msgid "retrieve current pending order of a user" @@ -476,7 +520,8 @@ msgstr "เพิ่มสินค้าในคำสั่งซื้อ" msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "เพิ่มสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" +msgstr "" +"เพิ่มสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" #: engine/core/docs/drf/viewsets.py:461 msgid "add a list of products to order, quantities will not count" @@ -486,7 +531,9 @@ msgstr "เพิ่มรายการสินค้าที่ต้อง msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "เพิ่มรายการสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" +msgstr "" +"เพิ่มรายการสินค้าไปยังคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` " +"ที่ให้มา" #: engine/core/docs/drf/viewsets.py:472 msgid "remove product from order" @@ -496,7 +543,8 @@ msgstr "ลบสินค้าออกจากคำสั่งซื้อ msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "ลบผลิตภัณฑ์ออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" +msgstr "" +"ลบผลิตภัณฑ์ออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" #: engine/core/docs/drf/viewsets.py:483 msgid "remove product from order, quantities will not count" @@ -506,7 +554,9 @@ msgstr "นำสินค้าออกจากคำสั่งซื้อ msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "ลบรายการสินค้าออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` ที่ให้มา" +msgstr "" +"ลบรายการสินค้าออกจากคำสั่งซื้อโดยใช้ `product_uuid` และ `attributes` " +"ที่ให้มา" #: engine/core/docs/drf/viewsets.py:497 msgid "list all wishlists (simple view)" @@ -514,7 +564,9 @@ msgstr "แสดงรายการคุณลักษณะทั้งห #: engine/core/docs/drf/viewsets.py:498 msgid "for non-staff users, only their own wishlists are returned." -msgstr "สำหรับผู้ใช้ที่ไม่ใช่บุคลากร จะแสดงเฉพาะรายการที่อยู่ในรายการสิ่งที่ต้องการของตนเองเท่านั้น" +msgstr "" +"สำหรับผู้ใช้ที่ไม่ใช่บุคลากร " +"จะแสดงเฉพาะรายการที่อยู่ในรายการสิ่งที่ต้องการของตนเองเท่านั้น" #: engine/core/docs/drf/viewsets.py:508 msgid "retrieve a single wishlist (detailed view)" @@ -538,7 +590,9 @@ msgstr "เขียนแอตทริบิวต์ที่มีอยู #: engine/core/docs/drf/viewsets.py:537 msgid "rewrite some fields of an existing wishlist saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" +msgstr "" +"เขียนฟิลด์บางส่วนของแอตทริบิวต์ที่มีอยู่ใหม่ " +"โดยบันทึกเฉพาะข้อมูลที่ไม่มีการแก้ไข" #: engine/core/docs/drf/viewsets.py:544 msgid "retrieve current pending wishlist of a user" @@ -546,7 +600,8 @@ msgstr "ดึงรายการสินค้าที่ผู้ใช้ #: engine/core/docs/drf/viewsets.py:545 msgid "retrieves a current pending wishlist of an authenticated user" -msgstr "ดึงรายการความปรารถนาที่รอดำเนินการในปัจจุบันของผู้ใช้ที่ผ่านการยืนยันแล้ว" +msgstr "" +"ดึงรายการความปรารถนาที่รอดำเนินการในปัจจุบันของผู้ใช้ที่ผ่านการยืนยันแล้ว" #: engine/core/docs/drf/viewsets.py:555 msgid "add product to wishlist" @@ -570,7 +625,9 @@ msgstr "เพิ่มสินค้าหลายรายการลงใ #: engine/core/docs/drf/viewsets.py:579 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "เพิ่มสินค้าหลายรายการลงในรายการสินค้าที่ต้องการโดยใช้ `product_uuids` ที่ให้มา" +msgstr "" +"เพิ่มสินค้าหลายรายการลงในรายการสินค้าที่ต้องการโดยใช้ `product_uuids` " +"ที่ให้มา" #: engine/core/docs/drf/viewsets.py:588 msgid "remove many products from wishlist" @@ -579,34 +636,22 @@ msgstr "ลบสินค้าออกจากคำสั่งซื้อ #: engine/core/docs/drf/viewsets.py:590 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "ลบผลิตภัณฑ์หลายรายการออกจากรายการที่ต้องการโดยใช้ `product_uuids` ที่ให้มา" +msgstr "" +"ลบผลิตภัณฑ์หลายรายการออกจากรายการที่ต้องการโดยใช้ `product_uuids` ที่ให้มา" #: engine/core/docs/drf/viewsets.py:598 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -"กรองตามชื่อ/ค่าของแอตทริบิวต์หนึ่งรายการหรือมากกว่า • **ไวยากรณ์**: `attr_name=method-" -"value[;attr2=method2-value2]…` •**วิธีการ** (ค่าเริ่มต้นคือ `icontains` " -"หากไม่ได้ระบุ): `iexact`, `exact`, `icontains`, `contains`, `isnull`, " -"`startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, " -"`lt`, `lte`, `gt`, `gte`, `in` •**การกำหนดประเภทข้อมูล**: JSON " -"จะถูกพยายามแปลงก่อน (ดังนั้นคุณสามารถส่งรายการ/ดิคชันนารีได้), `true`/`false` สำหรับบูลีน, " -"จำนวนเต็ม, จำนวนทศนิยม; มิฉะนั้นจะถือว่าเป็นสตริง. • **Base64**: นำหน้าด้วย `b64-` " -"เพื่อเข้ารหัส base64 ที่ปลอดภัยสำหรับ URL ของค่าดิบ. \n" -"ตัวอย่าง: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" +"กรองตามชื่อ/ค่าของแอตทริบิวต์หนึ่งรายการหรือมากกว่า • **ไวยากรณ์**: `attr_name=method-value[;attr2=method2-value2]…` •**วิธีการ** (ค่าเริ่มต้นคือ `icontains` หากไม่ได้ระบุ): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` •**การกำหนดประเภทข้อมูล**: JSON จะถูกพยายามแปลงก่อน (ดังนั้นคุณสามารถส่งรายการ/ดิคชันนารีได้), `true`/`false` สำหรับบูลีน, จำนวนเต็ม, จำนวนทศนิยม; มิฉะนั้นจะถือว่าเป็นสตริง. • **Base64**: นำหน้าด้วย `b64-` เพื่อเข้ารหัส base64 ที่ปลอดภัยสำหรับ URL ของค่าดิบ. \n" +"ตัวอย่าง: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 msgid "list all products (simple view)" @@ -618,13 +663,12 @@ msgstr "(exact) รหัส UUID ของผลิตภัณฑ์" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"รายการฟิลด์ที่คั่นด้วยเครื่องหมายจุลภาคเพื่อเรียงลำดับ โดยให้ขึ้นต้นด้วย `-` " -"สำหรับการเรียงลำดับจากน้อยไปมาก **ที่อนุญาต:** uuid, rating, name, slug, created, " -"modified, price, random" +"รายการฟิลด์ที่คั่นด้วยเครื่องหมายจุลภาคเพื่อเรียงลำดับ โดยให้ขึ้นต้นด้วย `-`" +" สำหรับการเรียงลำดับจากน้อยไปมาก **ที่อนุญาต:** uuid, rating, name, slug, " +"created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -647,7 +691,8 @@ msgstr "เขียนใหม่ผลิตภัณฑ์ที่มีอ #: engine/core/docs/drf/viewsets.py:697 engine/core/docs/drf/viewsets.py:700 msgid "" "update some fields of an existing product, preserving non-editable fields" -msgstr "อัปเดตบางฟิลด์ของสินค้าที่มีอยู่แล้ว โดยคงฟิลด์ที่ไม่สามารถแก้ไขได้ไว้" +msgstr "" +"อัปเดตบางฟิลด์ของสินค้าที่มีอยู่แล้ว โดยคงฟิลด์ที่ไม่สามารถแก้ไขได้ไว้" #: engine/core/docs/drf/viewsets.py:719 engine/core/docs/drf/viewsets.py:720 msgid "delete a product" @@ -719,7 +764,9 @@ msgstr "เขียนใหม่ข้อเสนอแนะที่มี #: engine/core/docs/drf/viewsets.py:909 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "เขียนข้อมูลบางส่วนของฟิลด์ในข้อเสนอแนะที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนข้อมูลบางส่วนของฟิลด์ในข้อเสนอแนะที่มีอยู่ใหม่ " +"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:919 msgid "list all order–product relations (simple view)" @@ -727,7 +774,9 @@ msgstr "แสดงความสัมพันธ์ระหว่างค #: engine/core/docs/drf/viewsets.py:929 msgid "retrieve a single order–product relation (detailed view)" -msgstr "ดึงความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์เพียงรายการเดียว (มุมมองรายละเอียด)" +msgstr "" +"ดึงความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์เพียงรายการเดียว " +"(มุมมองรายละเอียด)" #: engine/core/docs/drf/viewsets.py:939 msgid "create a new order–product relation" @@ -747,7 +796,8 @@ msgstr "ลบความสัมพันธ์ระหว่างคำส #: engine/core/docs/drf/viewsets.py:979 msgid "add or remove feedback on an order–product relation" -msgstr "เพิ่มหรือลบความคิดเห็นเกี่ยวกับความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์" +msgstr "" +"เพิ่มหรือลบความคิดเห็นเกี่ยวกับความสัมพันธ์ระหว่างคำสั่งซื้อและผลิตภัณฑ์" #: engine/core/docs/drf/viewsets.py:996 msgid "list all brands (simple view)" @@ -775,7 +825,9 @@ msgstr "เขียนใหม่แบรนด์ที่มีอยู่ #: engine/core/docs/drf/viewsets.py:1039 msgid "rewrite some fields of an existing brand saving non-editables" -msgstr "เขียนข้อมูลในบางช่องของแบรนด์ที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนข้อมูลในบางช่องของแบรนด์ที่มีอยู่ใหม่ " +"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:1064 msgid "list all vendors (simple view)" @@ -799,7 +851,9 @@ msgstr "เขียนใหม่ผู้ขายที่มีอยู่ #: engine/core/docs/drf/viewsets.py:1102 msgid "rewrite some fields of an existing vendor saving non-editables" -msgstr "เขียนข้อมูลในบางช่องของซัพพลายเออร์ที่มีอยู่แล้วใหม่ โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" +msgstr "" +"เขียนข้อมูลในบางช่องของซัพพลายเออร์ที่มีอยู่แล้วใหม่ " +"โดยเก็บค่าที่ไม่สามารถแก้ไขได้ไว้" #: engine/core/docs/drf/viewsets.py:1112 msgid "list all product images (simple view)" @@ -823,7 +877,9 @@ msgstr "เขียนภาพสินค้าที่มีอยู่ใ #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" -msgstr "เขียนข้อมูลบางส่วนของภาพสินค้าที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนข้อมูลบางส่วนของภาพสินค้าที่มีอยู่ใหม่ " +"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:1165 msgid "list all promo codes (simple view)" @@ -847,7 +903,9 @@ msgstr "เขียนโค้ดโปรโมชั่นใหม่โด #: engine/core/docs/drf/viewsets.py:1203 msgid "rewrite some fields of an existing promo code saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของรหัสโปรโมชั่นที่มีอยู่ใหม่ โดยคงค่าที่ไม่สามารถแก้ไขได้ไว้" +msgstr "" +"เขียนฟิลด์บางส่วนของรหัสโปรโมชั่นที่มีอยู่ใหม่ " +"โดยคงค่าที่ไม่สามารถแก้ไขได้ไว้" #: engine/core/docs/drf/viewsets.py:1213 msgid "list all promotions (simple view)" @@ -871,7 +929,9 @@ msgstr "เขียนโปรโมชั่นใหม่โดยคงส #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" -msgstr "เขียนข้อมูลบางส่วนของโปรโมชั่นที่มีอยู่ใหม่ โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนข้อมูลบางส่วนของโปรโมชั่นที่มีอยู่ใหม่ " +"โดยเก็บรักษาข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:1261 msgid "list all stocks (simple view)" @@ -895,7 +955,9 @@ msgstr "เขียนบันทึกสต็อกที่มีอยู #: engine/core/docs/drf/viewsets.py:1297 msgid "rewrite some fields of an existing stock record saving non-editables" -msgstr "เขียนฟิลด์บางส่วนของบันทึกสต็อกที่มีอยู่ใหม่ โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนฟิลด์บางส่วนของบันทึกสต็อกที่มีอยู่ใหม่ " +"โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/docs/drf/viewsets.py:1308 msgid "list all product tags (simple view)" @@ -919,7 +981,9 @@ msgstr "เขียนแท็กสินค้าที่มีอยู่ #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "เขียนข้อมูลบางส่วนของแท็กสินค้าที่มีอยู่แล้วใหม่ โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" +msgstr "" +"เขียนข้อมูลบางส่วนของแท็กสินค้าที่มีอยู่แล้วใหม่ " +"โดยบันทึกข้อมูลที่ไม่สามารถแก้ไขได้" #: engine/core/elasticsearch/__init__.py:128 #: engine/core/elasticsearch/__init__.py:629 @@ -1097,7 +1161,8 @@ msgstr "ซื้อคำสั่ง" #: engine/core/graphene/mutations.py:220 engine/core/graphene/mutations.py:282 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" -msgstr "กรุณาให้ order_uuid หรือ order_hr_id - ต้องเลือกอย่างใดอย่างหนึ่งเท่านั้น!" +msgstr "" +"กรุณาให้ order_uuid หรือ order_hr_id - ต้องเลือกอย่างใดอย่างหนึ่งเท่านั้น!" #: engine/core/graphene/mutations.py:249 engine/core/graphene/mutations.py:524 #: engine/core/graphene/mutations.py:573 engine/core/viewsets.py:753 @@ -1153,9 +1218,10 @@ msgstr "ซื้อคำสั่ง" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" -msgstr "กรุณาส่งแอตทริบิวต์ในรูปแบบสตริงที่จัดรูปแบบดังนี้ attr1=value1,attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" +msgstr "" +"กรุณาส่งแอตทริบิวต์ในรูปแบบสตริงที่จัดรูปแบบดังนี้ attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:580 msgid "add or delete a feedback for orderproduct" @@ -1174,9 +1240,9 @@ msgstr "ไม่พบคำสั่งซื้อสินค้า {order_p msgid "original address string provided by the user" msgstr "สตริงที่อยู่ต้นฉบับที่ผู้ใช้ให้มา" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1192,8 +1258,8 @@ msgstr "ElasticSearch - ทำงานได้อย่างยอดเย #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "คุณลักษณะ" @@ -1229,7 +1295,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "คุณลักษณะและคุณค่าใดที่สามารถใช้สำหรับกรองหมวดหมู่นี้ได้" #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "ราคาต่ำสุดและราคาสูงสุดสำหรับสินค้าในหมวดนี้ (หากมี)" #: engine/core/graphene/object_types.py:234 @@ -1266,7 +1333,7 @@ msgid "represents feedback from a user." msgstr "แสดงความคิดเห็นจากผู้ใช้" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "การแจ้งเตือน" @@ -1274,7 +1341,7 @@ msgstr "การแจ้งเตือน" msgid "download url for this order product if applicable" msgstr "ดาวน์โหลด url สำหรับคำสั่งซื้อสินค้านี้ หากมี" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "ข้อเสนอแนะ" @@ -1282,7 +1349,7 @@ msgstr "ข้อเสนอแนะ" msgid "a list of order products in this order" msgstr "รายการสินค้าที่สั่งซื้อในคำสั่งซื้อนี้" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "ที่อยู่สำหรับออกใบแจ้งหนี้" @@ -1310,7 +1377,7 @@ msgstr "สินค้าทั้งหมดในคำสั่งซื้ msgid "transactions for this order" msgstr "รายการธุรกรรมสำหรับคำสั่งนี้" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "คำสั่ง" @@ -1327,7 +1394,7 @@ msgstr "รูปภาพของสินค้า" msgid "category" msgstr "หมวดหมู่" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "ข้อเสนอแนะ" @@ -1368,7 +1435,7 @@ msgstr "สินค้าที่มีจำหน่ายเฉพาะก msgid "discount price" msgstr "ราคาลดพิเศษ" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "ผลิตภัณฑ์" @@ -1380,7 +1447,7 @@ msgstr "รหัสส่งเสริมการขาย" msgid "products on sale" msgstr "สินค้าลดราคา" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "โปรโมชั่น" @@ -1388,7 +1455,7 @@ msgstr "โปรโมชั่น" msgid "vendor" msgstr "ผู้ขาย" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1396,11 +1463,11 @@ msgstr "ผู้ขาย" msgid "product" msgstr "สินค้า" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "สินค้าที่อยู่ในรายการต้องการ" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "รายการสิ่งที่ต้องการ" @@ -1498,7 +1565,8 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"แทนกลุ่มของแอตทริบิวต์ ซึ่งสามารถมีลำดับชั้นได้ คลาสนี้ใช้เพื่อจัดการและจัดระเบียบกลุ่มแอตทริบิวต์ " +"แทนกลุ่มของแอตทริบิวต์ ซึ่งสามารถมีลำดับชั้นได้ " +"คลาสนี้ใช้เพื่อจัดการและจัดระเบียบกลุ่มแอตทริบิวต์ " "กลุ่มแอตทริบิวต์สามารถมีกลุ่มแม่ได้ ทำให้เกิดโครงสร้างลำดับชั้น " "ซึ่งสามารถมีประโยชน์ในการจัดหมวดหมู่และจัดการแอตทริบิวต์ได้อย่างมีประสิทธิภาพมากขึ้นในระบบที่ซับซ้อน" @@ -1514,7 +1582,7 @@ msgstr "กลุ่มแอตทริบิวต์ของพ่อแม msgid "attribute group's name" msgstr "ชื่อกลุ่มคุณสมบัติ" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "กลุ่มคุณลักษณะ" @@ -1528,16 +1596,17 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"แทนหน่วยงานผู้ขายที่สามารถจัดเก็บข้อมูลเกี่ยวกับผู้ขายภายนอกและข้อกำหนดในการโต้ตอบของพวกเขาได้ " -"คลาสผู้ขายถูกใช้เพื่อกำหนดและจัดการข้อมูลที่เกี่ยวข้องกับผู้ขายภายนอก มันจัดเก็บชื่อผู้ขาย " -"รายละเอียดการตรวจสอบสิทธิ์ที่จำเป็นสำหรับการสื่อสาร " +"แทนหน่วยงานผู้ขายที่สามารถจัดเก็บข้อมูลเกี่ยวกับผู้ขายภายนอกและข้อกำหนดในการโต้ตอบของพวกเขาได้" +" คลาสผู้ขายถูกใช้เพื่อกำหนดและจัดการข้อมูลที่เกี่ยวข้องกับผู้ขายภายนอก " +"มันจัดเก็บชื่อผู้ขาย รายละเอียดการตรวจสอบสิทธิ์ที่จำเป็นสำหรับการสื่อสาร " "และเปอร์เซ็นต์การเพิ่มราคาที่นำไปใช้กับสินค้าที่นำมาจากผู้ขาย " "โมเดลนี้ยังรักษาข้อมูลเมตาเพิ่มเติมและข้อจำกัด " "ทำให้เหมาะสำหรับการใช้งานในระบบที่มีการโต้ตอบกับผู้ขายภายนอก" #: engine/core/models.py:122 msgid "stores credentials and endpoints required for vendor communication" -msgstr "เก็บรักษาข้อมูลประจำตัวและจุดสิ้นสุดที่จำเป็นสำหรับการสื่อสาร API ของผู้ขาย" +msgstr "" +"เก็บรักษาข้อมูลประจำตัวและจุดสิ้นสุดที่จำเป็นสำหรับการสื่อสาร API ของผู้ขาย" #: engine/core/models.py:124 msgid "authentication info" @@ -1584,8 +1653,8 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "แทนแท็กผลิตภัณฑ์ที่ใช้ในการจัดประเภทหรือระบุผลิตภัณฑ์ คลาส ProductTag " -"ถูกออกแบบมาเพื่อระบุและจัดประเภทผลิตภัณฑ์อย่างเป็นเอกลักษณ์ผ่านการรวมกันของตัวระบุแท็กภายในและชื่อแสดงผลที่ใช้งานง่าย " -"รองรับการดำเนินการที่ส่งออกผ่าน mixins " +"ถูกออกแบบมาเพื่อระบุและจัดประเภทผลิตภัณฑ์อย่างเป็นเอกลักษณ์ผ่านการรวมกันของตัวระบุแท็กภายในและชื่อแสดงผลที่ใช้งานง่าย" +" รองรับการดำเนินการที่ส่งออกผ่าน mixins " "และให้การปรับแต่งเมตาดาต้าสำหรับวัตถุประสงค์ในการบริหารจัดการ" #: engine/core/models.py:204 engine/core/models.py:235 @@ -1638,13 +1707,13 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"แทนถึงเอนทิตีประเภทเพื่อจัดระเบียบและจัดกลุ่มรายการที่เกี่ยวข้องในโครงสร้างลำดับชั้น " -"หมวดหมู่สามารถมีความสัมพันธ์ลำดับชั้นกับหมวดหมู่อื่น ๆ ได้ ซึ่งสนับสนุนความสัมพันธ์แบบพ่อแม่-" -"ลูกคลาสนี้ประกอบด้วยฟิลด์สำหรับข้อมูลเมตาและตัวแทนภาพ " -"ซึ่งทำหน้าที่เป็นพื้นฐานสำหรับคุณสมบัติที่เกี่ยวข้องกับหมวดหมู่ " -"คลาสนี้มักใช้เพื่อกำหนดและจัดการหมวดหมู่สินค้าหรือการจัดกลุ่มที่คล้ายกันภายในแอปพลิเคชัน " -"ช่วยให้ผู้ใช้หรือผู้ดูแลระบบสามารถระบุชื่อ คำอธิบาย และลำดับชั้นของหมวดหมู่ " -"รวมถึงกำหนดคุณลักษณะต่างๆ เช่น รูปภาพ แท็ก หรือความสำคัญ" +"แทนถึงเอนทิตีประเภทเพื่อจัดระเบียบและจัดกลุ่มรายการที่เกี่ยวข้องในโครงสร้างลำดับชั้น" +" หมวดหมู่สามารถมีความสัมพันธ์ลำดับชั้นกับหมวดหมู่อื่น ๆ ได้ " +"ซึ่งสนับสนุนความสัมพันธ์แบบพ่อแม่-ลูกคลาสนี้ประกอบด้วยฟิลด์สำหรับข้อมูลเมตาและตัวแทนภาพ" +" ซึ่งทำหน้าที่เป็นพื้นฐานสำหรับคุณสมบัติที่เกี่ยวข้องกับหมวดหมู่ " +"คลาสนี้มักใช้เพื่อกำหนดและจัดการหมวดหมู่สินค้าหรือการจัดกลุ่มที่คล้ายกันภายในแอปพลิเคชัน" +" ช่วยให้ผู้ใช้หรือผู้ดูแลระบบสามารถระบุชื่อ คำอธิบาย และลำดับชั้นของหมวดหมู่" +" รวมถึงกำหนดคุณลักษณะต่างๆ เช่น รูปภาพ แท็ก หรือความสำคัญ" #: engine/core/models.py:269 msgid "upload an image representing this category" @@ -1695,10 +1764,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"แทนวัตถุแบรนด์ในระบบ คลาสนี้จัดการข้อมูลและคุณลักษณะที่เกี่ยวข้องกับแบรนด์ รวมถึงชื่อ โลโก้ " -"คำอธิบาย หมวดหมู่ที่เกี่ยวข้อง สลักเฉพาะ และลำดับความสำคัญ " +"แทนวัตถุแบรนด์ในระบบ คลาสนี้จัดการข้อมูลและคุณลักษณะที่เกี่ยวข้องกับแบรนด์ " +"รวมถึงชื่อ โลโก้ คำอธิบาย หมวดหมู่ที่เกี่ยวข้อง สลักเฉพาะ และลำดับความสำคัญ " "ช่วยให้สามารถจัดระเบียบและแสดงข้อมูลที่เกี่ยวข้องกับแบรนด์ภายในแอปพลิเคชันได้" #: engine/core/models.py:456 @@ -1743,18 +1813,19 @@ msgstr "หมวดหมู่" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"แสดงถึงสต็อกของสินค้าที่จัดการในระบบ คลาสนี้ให้รายละเอียดเกี่ยวกับความสัมพันธ์ระหว่างผู้จำหน่าย, " -"สินค้า, และข้อมูลสต็อกของพวกเขา รวมถึงคุณสมบัติที่เกี่ยวข้องกับสินค้าคงคลัง เช่น ราคา, ราคาซื้อ, " -"จำนวน, รหัสสินค้า (SKU), และสินทรัพย์ดิจิทัล " -"เป็นส่วนหนึ่งของระบบการจัดการสินค้าคงคลังเพื่อให้สามารถติดตามและประเมินสินค้าที่มีจากผู้จำหน่ายต่างๆ " -"ได้" +"แสดงถึงสต็อกของสินค้าที่จัดการในระบบ " +"คลาสนี้ให้รายละเอียดเกี่ยวกับความสัมพันธ์ระหว่างผู้จำหน่าย, สินค้า, " +"และข้อมูลสต็อกของพวกเขา รวมถึงคุณสมบัติที่เกี่ยวข้องกับสินค้าคงคลัง เช่น " +"ราคา, ราคาซื้อ, จำนวน, รหัสสินค้า (SKU), และสินทรัพย์ดิจิทัล " +"เป็นส่วนหนึ่งของระบบการจัดการสินค้าคงคลังเพื่อให้สามารถติดตามและประเมินสินค้าที่มีจากผู้จำหน่ายต่างๆ" +" ได้" #: engine/core/models.py:528 msgid "the vendor supplying this product stock" @@ -1776,8 +1847,8 @@ msgstr "ราคาขาย" msgid "the product associated with this stock entry" msgstr "สินค้าที่เกี่ยวข้องกับรายการสินค้าคงคลังนี้" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "ผลิตภัณฑ์ที่เกี่ยวข้อง" @@ -1832,11 +1903,13 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"แสดงถึงผลิตภัณฑ์ที่มีคุณลักษณะต่างๆ เช่น หมวดหมู่, แบรนด์, แท็ก, สถานะดิจิทัล, ชื่อ, คำอธิบาย, " -"หมายเลขชิ้นส่วน, และ slug ให้คุณสมบัติประโยชน์ที่เกี่ยวข้องเพื่อดึงคะแนน, จำนวนความคิดเห็น, " -"ราคา, จำนวนสินค้า, และยอดสั่งซื้อทั้งหมด " +"แสดงถึงผลิตภัณฑ์ที่มีคุณลักษณะต่างๆ เช่น หมวดหมู่, แบรนด์, แท็ก, " +"สถานะดิจิทัล, ชื่อ, คำอธิบาย, หมายเลขชิ้นส่วน, และ slug " +"ให้คุณสมบัติประโยชน์ที่เกี่ยวข้องเพื่อดึงคะแนน, จำนวนความคิดเห็น, ราคา, " +"จำนวนสินค้า, และยอดสั่งซื้อทั้งหมด " "ออกแบบมาเพื่อใช้ในระบบที่จัดการอีคอมเมิร์ซหรือการจัดการสินค้าคงคลัง " -"คลาสนี้โต้ตอบกับโมเดลที่เกี่ยวข้อง (เช่น หมวดหมู่, แบรนด์, และแท็กผลิตภัณฑ์) " +"คลาสนี้โต้ตอบกับโมเดลที่เกี่ยวข้อง (เช่น หมวดหมู่, แบรนด์, และแท็กผลิตภัณฑ์)" +" " "และจัดการการแคชสำหรับคุณสมบัติที่เข้าถึงบ่อยเพื่อปรับปรุงประสิทธิภาพใช้เพื่อกำหนดและจัดการข้อมูลผลิตภัณฑ์และข้อมูลที่เกี่ยวข้องภายในแอปพลิเคชัน" #: engine/core/models.py:595 @@ -1875,7 +1948,7 @@ msgstr "ระบุชื่อที่ชัดเจนสำหรับผ msgid "product name" msgstr "ชื่อสินค้า" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "เพิ่มคำอธิบายรายละเอียดของสินค้า" @@ -1895,318 +1968,333 @@ msgstr "หมายเลขชิ้นส่วน" msgid "stock keeping unit for this product" msgstr "หน่วยเก็บสินค้าสำหรับสินค้านี้" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "ว่าจะส่งออกสินค้านี้ไปยังตลาดหรือไม่" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "ส่งออกสู่ตลาดออนไลน์" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "แทนคุณสมบัติในระบบ. คลาสนี้ใช้เพื่อกำหนดและจัดการคุณสมบัติ " -"ซึ่งเป็นข้อมูลที่สามารถปรับแต่งได้ซึ่งสามารถเชื่อมโยงกับเอนทิตีอื่น ๆ ได้. คุณสมบัติมีหมวดหมู่, กลุ่ม, " -"ประเภทค่า, และชื่อที่เกี่ยวข้อง. แบบจำลองรองรับหลายประเภทของค่า รวมถึงสตริง, จำนวนเต็ม, " -"จำนวนทศนิยม, บูลีน, อาร์เรย์, และออบเจ็กต์. " +"ซึ่งเป็นข้อมูลที่สามารถปรับแต่งได้ซึ่งสามารถเชื่อมโยงกับเอนทิตีอื่น ๆ ได้. " +"คุณสมบัติมีหมวดหมู่, กลุ่ม, ประเภทค่า, และชื่อที่เกี่ยวข้อง. " +"แบบจำลองรองรับหลายประเภทของค่า รวมถึงสตริง, จำนวนเต็ม, จำนวนทศนิยม, บูลีน, " +"อาร์เรย์, และออบเจ็กต์. " "ซึ่งช่วยให้สามารถจัดโครงสร้างข้อมูลได้ไดนามิกและยืดหยุ่น." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "กลุ่มของแอตทริบิวต์นี้" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "สตริง" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "ความซื่อสัตย์" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "ลอย" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "บูลีน" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "อาร์เรย์" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "วัตถุ" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "ประเภทของค่าของแอตทริบิวต์" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "ประเภทของค่า" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "ชื่อของแอตทริบิวต์นี้" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "ชื่อของแอตทริบิวต์" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "สามารถกรองได้" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "กำหนดว่าแอตทริบิวต์นี้สามารถใช้สำหรับการกรองหรือไม่" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "คุณสมบัติ" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"แทนค่าเฉพาะสำหรับคุณลักษณะที่เชื่อมโยงกับผลิตภัณฑ์ มันเชื่อมโยง 'คุณลักษณะ' กับ 'ค่า' ที่ไม่ซ้ำกัน " +"แทนค่าเฉพาะสำหรับคุณลักษณะที่เชื่อมโยงกับผลิตภัณฑ์ มันเชื่อมโยง 'คุณลักษณะ' " +"กับ 'ค่า' ที่ไม่ซ้ำกัน " "ทำให้การจัดระเบียบและการแสดงลักษณะของผลิตภัณฑ์เป็นไปอย่างมีประสิทธิภาพและยืดหยุ่นมากขึ้น" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "คุณลักษณะของค่านี้" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "ผลิตภัณฑ์เฉพาะที่เกี่ยวข้องกับค่าของแอตทริบิวต์นี้" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "ค่าเฉพาะสำหรับคุณสมบัตินี้" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"แสดงภาพสินค้าที่เกี่ยวข้องกับสินค้าในระบบ. คลาสนี้ออกแบบมาเพื่อจัดการภาพสำหรับสินค้า " +"แสดงภาพสินค้าที่เกี่ยวข้องกับสินค้าในระบบ. " +"คลาสนี้ออกแบบมาเพื่อจัดการภาพสำหรับสินค้า " "รวมถึงฟังก์ชันสำหรับการอัปโหลดไฟล์ภาพ, การเชื่อมโยงกับสินค้าเฉพาะ, " -"และการกำหนดลำดับการแสดงผล. นอกจากนี้ยังมีคุณสมบัติการเข้าถึงสำหรับผู้ใช้ที่มีความต้องการพิเศษ " +"และการกำหนดลำดับการแสดงผล. " +"นอกจากนี้ยังมีคุณสมบัติการเข้าถึงสำหรับผู้ใช้ที่มีความต้องการพิเศษ " "โดยให้ข้อความทางเลือกสำหรับภาพ." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "ให้ข้อความทางเลือกสำหรับภาพเพื่อการเข้าถึง" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "ข้อความแสดงแทนภาพ" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "อัปโหลดไฟล์รูปภาพสำหรับสินค้านี้" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "รูปภาพสินค้า" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "กำหนดลำดับการแสดงผลของภาพ" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "ลำดับความสำคัญในการแสดงผล" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "สินค้าที่ภาพนี้แทน" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "รูปภาพสินค้า" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "แสดงถึงแคมเปญส่งเสริมการขายสำหรับสินค้าที่มีส่วนลด. " -"คลาสนี้ใช้เพื่อกำหนดและจัดการแคมเปญส่งเสริมการขายที่มอบส่วนลดเป็นเปอร์เซ็นต์สำหรับสินค้า. " -"คลาสนี้ประกอบด้วยคุณสมบัติสำหรับการตั้งค่าอัตราส่วนลด, ให้รายละเอียดเกี่ยวกับโปรโมชั่น, " -"และเชื่อมโยงกับสินค้าที่เกี่ยวข้อง. " +"คลาสนี้ใช้เพื่อกำหนดและจัดการแคมเปญส่งเสริมการขายที่มอบส่วนลดเป็นเปอร์เซ็นต์สำหรับสินค้า." +" คลาสนี้ประกอบด้วยคุณสมบัติสำหรับการตั้งค่าอัตราส่วนลด, " +"ให้รายละเอียดเกี่ยวกับโปรโมชั่น, และเชื่อมโยงกับสินค้าที่เกี่ยวข้อง. " "คลาสนี้ผสานการทำงานกับแคตตาล็อกสินค้าเพื่อกำหนดสินค้าที่ได้รับผลกระทบในแคมเปญ." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "เปอร์เซ็นต์ส่วนลดสำหรับสินค้าที่เลือก" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "เปอร์เซ็นต์ส่วนลด" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "กรุณาตั้งชื่อที่ไม่ซ้ำกันสำหรับการส่งเสริมการขายนี้" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "ชื่อโปรโมชั่น" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "รายละเอียดโปรโมชั่น" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "เลือกผลิตภัณฑ์ที่รวมอยู่ในโปรโมชั่นนี้" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "สินค้าที่รวมอยู่" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "โปรโมชั่น" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"แสดงรายการสินค้าที่ผู้ใช้ต้องการเก็บไว้เพื่อจัดการและค้นหาสินค้าที่ต้องการในอนาคต " -"คลาสนี้ให้บริการฟังก์ชันสำหรับการจัดการคอลเลกชันของสินค้า " -"ซึ่งรวมถึงการเพิ่มและลบสินค้าออกจากคอลเลกชัน ตลอดจนการเพิ่มและลบสินค้าหลายรายการพร้อมกัน" +"แสดงรายการสินค้าที่ผู้ใช้ต้องการเก็บไว้เพื่อจัดการและค้นหาสินค้าที่ต้องการในอนาคต" +" คลาสนี้ให้บริการฟังก์ชันสำหรับการจัดการคอลเลกชันของสินค้า " +"ซึ่งรวมถึงการเพิ่มและลบสินค้าออกจากคอลเลกชัน " +"ตลอดจนการเพิ่มและลบสินค้าหลายรายการพร้อมกัน" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "สินค้าที่ผู้ใช้ได้ทำเครื่องหมายว่าต้องการ" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "ผู้ใช้ที่เป็นเจ้าของรายการความปรารถนา" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "เจ้าของรายการที่อยากได้" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "รายการสิ่งที่ต้องการ" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "แทนเอกสารบันทึกที่เกี่ยวข้องกับผลิตภัณฑ์. " "คลาสนี้ใช้เพื่อเก็บข้อมูลเกี่ยวกับเอกสารที่เกี่ยวข้องกับผลิตภัณฑ์เฉพาะ " "รวมถึงการอัปโหลดไฟล์และข้อมูลเมตาของไฟล์. " -"คลาสนี้มีเมธอดและคุณสมบัติเพื่อจัดการกับประเภทไฟล์และเส้นทางจัดเก็บสำหรับไฟล์เอกสาร. " -"คลาสนี้ขยายฟังก์ชันการทำงานจากมิกซ์อินเฉพาะ และให้คุณสมบัติเพิ่มเติมตามความต้องการ." +"คลาสนี้มีเมธอดและคุณสมบัติเพื่อจัดการกับประเภทไฟล์และเส้นทางจัดเก็บสำหรับไฟล์เอกสาร." +" คลาสนี้ขยายฟังก์ชันการทำงานจากมิกซ์อินเฉพาะ " +"และให้คุณสมบัติเพิ่มเติมตามความต้องการ." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "สารคดี" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "สารคดี" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "ยังไม่ได้รับการแก้ไข" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "แทนที่หน่วยงานที่อยู่ซึ่งรวมถึงรายละเอียดตำแหน่งและความสัมพันธ์กับผู้ใช้ " "ให้ฟังก์ชันสำหรับการจัดเก็บข้อมูลทางภูมิศาสตร์และที่อยู่ " "รวมถึงการผสานรวมกับบริการการเข้ารหัสทางภูมิศาสตร์ " -"คลาสนี้ถูกออกแบบมาเพื่อจัดเก็บข้อมูลที่อยู่โดยละเอียด รวมถึงองค์ประกอบเช่น ถนน เมือง ภูมิภาค " -"ประเทศ และตำแหน่งทางภูมิศาสตร์ (ลองจิจูดและละติจูด) รองรับการผสานรวมกับ API " -"การเข้ารหัสทางภูมิศาสตร์ ทำให้สามารถจัดเก็บการตอบสนองของ API " -"ดิบเพื่อการประมวลผลหรือตรวจสอบเพิ่มเติมได้คลาสนี้ยังอนุญาตให้เชื่อมโยงที่อยู่กับผู้ใช้ได้ " -"ซึ่งช่วยให้การจัดการข้อมูลส่วนบุคคลเป็นไปอย่างสะดวก" +"คลาสนี้ถูกออกแบบมาเพื่อจัดเก็บข้อมูลที่อยู่โดยละเอียด รวมถึงองค์ประกอบเช่น " +"ถนน เมือง ภูมิภาค ประเทศ และตำแหน่งทางภูมิศาสตร์ (ลองจิจูดและละติจูด) " +"รองรับการผสานรวมกับ API การเข้ารหัสทางภูมิศาสตร์ " +"ทำให้สามารถจัดเก็บการตอบสนองของ API " +"ดิบเพื่อการประมวลผลหรือตรวจสอบเพิ่มเติมได้คลาสนี้ยังอนุญาตให้เชื่อมโยงที่อยู่กับผู้ใช้ได้" +" ซึ่งช่วยให้การจัดการข้อมูลส่วนบุคคลเป็นไปอย่างสะดวก" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "ที่อยู่สำหรับลูกค้า" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "บรรทัดที่อยู่" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "ถนน" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "เขต" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "เมือง" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "ภูมิภาค" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "รหัสไปรษณีย์" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "ประเทศ" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "จุดพิกัดภูมิศาสตร์ (ลองจิจูด, ละติจูด)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "การตอบกลับ JSON แบบเต็มจากตัวแปลงที่อยู่ทางภูมิศาสตร์สำหรับที่อยู่นี้" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "เก็บคำตอบ JSON จากบริการการแปลงที่อยู่ทางภูมิศาสตร์" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "ที่อยู่" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "ที่อยู่" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2215,78 +2303,79 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"แสดงรหัสโปรโมชั่นที่สามารถใช้เพื่อรับส่วนลด การจัดการความถูกต้อง ประเภทของส่วนลด " -"และการใช้งาน คลาส PromoCode จัดเก็บรายละเอียดเกี่ยวกับรหัสโปรโมชั่น รวมถึงตัวระบุที่ไม่ซ้ำกัน " -"คุณสมบัติของส่วนลด (จำนวนหรือเปอร์เซ็นต์) ระยะเวลาการใช้งาน ผู้ใช้ที่เกี่ยวข้อง (ถ้ามี) " -"และสถานะการใช้งาน " -"รวมถึงฟังก์ชันการทำงานเพื่อตรวจสอบและใช้รหัสโปรโมชั่นกับคำสั่งซื้อในขณะที่ตรวจสอบให้แน่ใจว่าข้อจำกัดต่างๆ " -"ได้รับการปฏิบัติตาม" +"แสดงรหัสโปรโมชั่นที่สามารถใช้เพื่อรับส่วนลด การจัดการความถูกต้อง " +"ประเภทของส่วนลด และการใช้งาน คลาส PromoCode " +"จัดเก็บรายละเอียดเกี่ยวกับรหัสโปรโมชั่น รวมถึงตัวระบุที่ไม่ซ้ำกัน " +"คุณสมบัติของส่วนลด (จำนวนหรือเปอร์เซ็นต์) ระยะเวลาการใช้งาน " +"ผู้ใช้ที่เกี่ยวข้อง (ถ้ามี) และสถานะการใช้งาน " +"รวมถึงฟังก์ชันการทำงานเพื่อตรวจสอบและใช้รหัสโปรโมชั่นกับคำสั่งซื้อในขณะที่ตรวจสอบให้แน่ใจว่าข้อจำกัดต่างๆ" +" ได้รับการปฏิบัติตาม" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "รหัสเฉพาะที่ผู้ใช้ใช้เพื่อแลกรับส่วนลด" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "รหัสโปรโมชั่น" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "จำนวนส่วนลดคงที่ที่ใช้หากไม่ได้ใช้เปอร์เซ็นต์" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "จำนวนส่วนลดคงที่" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "ส่วนลดเป็นเปอร์เซ็นต์ที่ใช้เมื่อไม่ได้ใช้จำนวนเงินคงที่" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "เปอร์เซ็นต์ส่วนลด" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "เวลาที่โค้ดโปรโมชั่นหมดอายุ" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "เวลาสิ้นสุดความถูกต้อง" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "เวลาที่ตราไว้ซึ่งรหัสโปรโมชั่นนี้ใช้ได้" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "เวลาเริ่มต้นความถูกต้อง" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "เวลาที่ตราประทับเมื่อใช้รหัสโปรโมชั่น, ว่างเปล่าหากยังไม่ได้ใช้" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "เวลาการใช้งาน" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "ผู้ใช้ที่ได้รับมอบหมายให้ใช้รหัสโปรโมชั่นนี้ หากมี" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "ผู้ใช้ที่ได้รับมอบหมาย" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "รหัสโปรโมชั่น" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "รหัสส่งเสริมการขาย" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2294,173 +2383,181 @@ msgstr "" "ควรกำหนดประเภทส่วนลดเพียงประเภทเดียว (จำนวนเงินหรือเปอร์เซ็นต์) เท่านั้น " "ไม่ควรกำหนดทั้งสองประเภทหรือไม่ได้กำหนดเลย" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "รหัสโปรโมชั่นถูกใช้ไปแล้ว" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "ประเภทส่วนลดไม่ถูกต้องสำหรับรหัสโปรโมชั่น {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"แทนคำสั่งซื้อที่ผู้ใช้ได้ทำการสั่งซื้อไว้ คลาสนี้จำลองคำสั่งซื้อภายในแอปพลิเคชัน รวมถึงคุณสมบัติต่าง ๆ " -"เช่น ข้อมูลการเรียกเก็บเงิน ข้อมูลการจัดส่ง สถานะ ผู้ใช้ที่เกี่ยวข้อง การแจ้งเตือน " -"และการดำเนินการที่เกี่ยวข้อง คำสั่งซื้อสามารถมีสินค้าที่เกี่ยวข้องได้ โปรโมชั่นสามารถนำมาใช้ได้ " -"ที่อยู่สามารถตั้งค่าได้ และรายละเอียดการจัดส่งหรือการเรียกเก็บเงินสามารถอัปเดตได้เช่นกัน " -"นอกจากนี้ ฟังก์ชันการทำงานยังรองรับการจัดการสินค้าในวงจรชีวิตของคำสั่งซื้อ" +"แทนคำสั่งซื้อที่ผู้ใช้ได้ทำการสั่งซื้อไว้ " +"คลาสนี้จำลองคำสั่งซื้อภายในแอปพลิเคชัน รวมถึงคุณสมบัติต่าง ๆ เช่น " +"ข้อมูลการเรียกเก็บเงิน ข้อมูลการจัดส่ง สถานะ ผู้ใช้ที่เกี่ยวข้อง " +"การแจ้งเตือน และการดำเนินการที่เกี่ยวข้อง " +"คำสั่งซื้อสามารถมีสินค้าที่เกี่ยวข้องได้ โปรโมชั่นสามารถนำมาใช้ได้ " +"ที่อยู่สามารถตั้งค่าได้ " +"และรายละเอียดการจัดส่งหรือการเรียกเก็บเงินสามารถอัปเดตได้เช่นกัน นอกจากนี้ " +"ฟังก์ชันการทำงานยังรองรับการจัดการสินค้าในวงจรชีวิตของคำสั่งซื้อ" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "ที่อยู่สำหรับเรียกเก็บเงินที่ใช้สำหรับคำสั่งซื้อนี้" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "รหัสโปรโมชั่นเสริมใช้กับคำสั่งซื้อนี้แล้ว" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "ใช้รหัสโปรโมชั่น" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "ที่อยู่สำหรับจัดส่งที่ใช้สำหรับคำสั่งซื้อนี้" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "ที่อยู่สำหรับจัดส่ง" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "สถานะปัจจุบันของคำสั่งซื้อในวงจรชีวิต" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "สถานะการสั่งซื้อ" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "โครงสร้าง JSON ของการแจ้งเตือนที่จะแสดงให้ผู้ใช้เห็น ใน UI " "ของผู้ดูแลระบบจะใช้การแสดงผลแบบตาราง" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "การแสดงผล JSON ของคุณลักษณะคำสั่งซื้อสำหรับคำสั่งซื้อนี้" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "ผู้ใช้ที่ทำการสั่งซื้อ" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "ผู้ใช้" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "เวลาที่คำสั่งซื้อได้รับการยืนยัน" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "ซื้อเวลา" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "ตัวระบุที่มนุษย์อ่านได้สำหรับคำสั่ง" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "รหัสที่สามารถอ่านได้โดยมนุษย์" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "คำสั่ง" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" -msgstr "ผู้ใช้ต้องมีคำสั่งซื้อที่รอดำเนินการเพียงหนึ่งรายการเท่านั้นในแต่ละครั้ง!" +msgstr "" +"ผู้ใช้ต้องมีคำสั่งซื้อที่รอดำเนินการเพียงหนึ่งรายการเท่านั้นในแต่ละครั้ง!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" -msgstr "คุณไม่สามารถเพิ่มสินค้าในคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่รอดำเนินการได้" +msgstr "" +"คุณไม่สามารถเพิ่มสินค้าในคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่รอดำเนินการได้" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "คุณไม่สามารถเพิ่มสินค้าที่ไม่ใช้งานในคำสั่งซื้อได้" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "คุณไม่สามารถเพิ่มสินค้าได้มากกว่าที่มีในสต็อก" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" -msgstr "คุณไม่สามารถลบสินค้าออกจากคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่อยู่ในสถานะรอดำเนินการได้" +msgstr "" +"คุณไม่สามารถลบสินค้าออกจากคำสั่งซื้อที่ไม่ใช่คำสั่งซื้อที่อยู่ในสถานะรอดำเนินการได้" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} ไม่มีอยู่จริงกับคำค้นหา <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "รหัสโปรโมชั่นไม่มีอยู่" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" -msgstr "คุณสามารถซื้อได้เฉพาะสินค้าทางกายภาพที่มีที่อยู่สำหรับจัดส่งระบุไว้เท่านั้น!" +msgstr "" +"คุณสามารถซื้อได้เฉพาะสินค้าทางกายภาพที่มีที่อยู่สำหรับจัดส่งระบุไว้เท่านั้น!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "ไม่มีที่อยู่" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "ขณะนี้คุณไม่สามารถซื้อได้ กรุณาลองใหม่อีกครั้งในอีกไม่กี่นาที" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "ค่าแรงบังคับไม่ถูกต้อง" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "คุณไม่สามารถซื้อคำสั่งซื้อที่ว่างเปล่าได้!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "คุณไม่สามารถซื้อคำสั่งซื้อได้หากไม่มีผู้ใช้!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "ผู้ใช้ที่ไม่มียอดคงเหลือไม่สามารถซื้อด้วยยอดคงเหลือได้!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "เงินไม่เพียงพอในการทำรายการให้เสร็จสมบูรณ์" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -"คุณไม่สามารถซื้อได้หากไม่มีการลงทะเบียน กรุณาให้ข้อมูลต่อไปนี้: ชื่อลูกค้า, อีเมลลูกค้า, " -"หมายเลขโทรศัพท์ลูกค้า" +"คุณไม่สามารถซื้อได้หากไม่มีการลงทะเบียน กรุณาให้ข้อมูลต่อไปนี้: ชื่อลูกค้า, " +"อีเมลลูกค้า, หมายเลขโทรศัพท์ลูกค้า" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" -msgstr "วิธีการชำระเงินไม่ถูกต้อง: {payment_method} จาก {available_payment_methods}!" +msgstr "" +"วิธีการชำระเงินไม่ถูกต้อง: {payment_method} จาก {available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2469,36 +2566,37 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "จัดการข้อเสนอแนะของผู้ใช้สำหรับผลิตภัณฑ์ " -"คลาสนี้ถูกออกแบบมาเพื่อรวบรวมและจัดเก็บข้อมูลข้อเสนอแนะของผู้ใช้สำหรับผลิตภัณฑ์เฉพาะที่พวกเขาได้ซื้อ " -"ประกอบด้วยแอตทริบิวต์สำหรับจัดเก็บความคิดเห็นของผู้ใช้ การอ้างอิงถึงผลิตภัณฑ์ที่เกี่ยวข้องในคำสั่งซื้อ " -"และคะแนนที่ผู้ใช้กำหนด " +"คลาสนี้ถูกออกแบบมาเพื่อรวบรวมและจัดเก็บข้อมูลข้อเสนอแนะของผู้ใช้สำหรับผลิตภัณฑ์เฉพาะที่พวกเขาได้ซื้อ" +" ประกอบด้วยแอตทริบิวต์สำหรับจัดเก็บความคิดเห็นของผู้ใช้ " +"การอ้างอิงถึงผลิตภัณฑ์ที่เกี่ยวข้องในคำสั่งซื้อ และคะแนนที่ผู้ใช้กำหนด " "คลาสนี้ใช้ฟิลด์ในฐานข้อมูลเพื่อสร้างแบบจำลองและจัดการข้อมูลข้อเสนอแนะอย่างมีประสิทธิภาพ" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "ความคิดเห็นที่ผู้ใช้ให้ไว้เกี่ยวกับประสบการณ์ของพวกเขาต่อผลิตภัณฑ์" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "ความคิดเห็นจากผู้ตอบแบบสอบถาม" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "อ้างอิงถึงผลิตภัณฑ์เฉพาะในคำสั่งซื้อที่ความคิดเห็นนี้เกี่ยวข้อง" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "สินค้าที่เกี่ยวข้อง" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "คะแนนที่ผู้ใช้กำหนดให้กับผลิตภัณฑ์" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "การให้คะแนนสินค้า" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2510,143 +2608,146 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"แสดงผลิตภัณฑ์ที่เกี่ยวข้องกับคำสั่งซื้อและคุณลักษณะของผลิตภัณฑ์โมเดล OrderProduct " -"ดูแลข้อมูลเกี่ยวกับสินค้าที่เป็นส่วนหนึ่งของคำสั่งซื้อ รวมถึงรายละเอียดเช่น ราคาซื้อ จำนวน " -"คุณสมบัติของสินค้า และสถานะ โมเดลนี้จัดการการแจ้งเตือนสำหรับผู้ใช้และผู้ดูแลระบบ " +"แสดงผลิตภัณฑ์ที่เกี่ยวข้องกับคำสั่งซื้อและคุณลักษณะของผลิตภัณฑ์โมเดล " +"OrderProduct ดูแลข้อมูลเกี่ยวกับสินค้าที่เป็นส่วนหนึ่งของคำสั่งซื้อ " +"รวมถึงรายละเอียดเช่น ราคาซื้อ จำนวน คุณสมบัติของสินค้า และสถานะ " +"โมเดลนี้จัดการการแจ้งเตือนสำหรับผู้ใช้และผู้ดูแลระบบ " "และจัดการการดำเนินการเช่น การคืนสินค้าคงเหลือหรือการเพิ่มความคิดเห็น " -"โมเดลนี้ยังมีวิธีการและคุณสมบัติที่สนับสนุนตรรกะทางธุรกิจ เช่น การคำนวณราคารวมหรือการสร้าง URL " -"สำหรับดาวน์โหลดสินค้าดิจิทัล โมเดลนี้ผสานรวมกับโมเดล Order และ Product " +"โมเดลนี้ยังมีวิธีการและคุณสมบัติที่สนับสนุนตรรกะทางธุรกิจ เช่น " +"การคำนวณราคารวมหรือการสร้าง URL สำหรับดาวน์โหลดสินค้าดิจิทัล " +"โมเดลนี้ผสานรวมกับโมเดล Order และ Product " "และเก็บการอ้างอิงถึงโมเดลเหล่านี้ไว้" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "ราคาที่ลูกค้าชำระสำหรับสินค้านี้ ณ เวลาที่ซื้อ" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "ราคาซื้อ ณ เวลาที่สั่งซื้อ" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "ความคิดเห็นภายในสำหรับผู้ดูแลระบบเกี่ยวกับสินค้าที่สั่งซื้อ" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "ความคิดเห็นภายใน" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "การแจ้งเตือนผู้ใช้" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "การแสดงผล JSON ของคุณลักษณะของรายการนี้" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "จัดเรียงคุณลักษณะของสินค้า" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "การอ้างอิงถึงคำสั่งซื้อหลักที่มีสินค้านี้อยู่" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "ลำดับของผู้ปกครอง" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "สินค้าเฉพาะที่เกี่ยวข้องกับรายการคำสั่งซื้อนี้" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "ปริมาณของสินค้าชนิดนี้ในคำสั่งซื้อ" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "จำนวนสินค้า" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "สถานะปัจจุบันของสินค้านี้ในคำสั่งซื้อ" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "สถานะสายผลิตภัณฑ์" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct ต้องมีการสั่งซื้อที่เกี่ยวข้อง!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "ระบุการกระทำที่ไม่ถูกต้องสำหรับข้อเสนอแนะ: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "คุณไม่สามารถให้ข้อเสนอแนะเกี่ยวกับคำสั่งซื้อที่ไม่ได้รับ" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "ชื่อ" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "URL ของการผสานรวม" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "ข้อมูลประจำตัวสำหรับการยืนยันตัวตน" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "คุณสามารถมีผู้ให้บริการ CRM เริ่มต้นได้เพียงรายเดียวเท่านั้น" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "ระบบบริหารความสัมพันธ์ลูกค้า" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "ระบบบริหารความสัมพันธ์ลูกค้า" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "ลิงก์ CRM ของคำสั่ง" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "ลิงก์ CRM ของคำสั่งซื้อ" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"แสดงถึงฟังก์ชันการดาวน์โหลดสำหรับสินทรัพย์ดิจิทัลที่เกี่ยวข้องกับคำสั่งซื้อ คลาส " -"DigitalAssetDownload " -"ให้ความสามารถในการจัดการและเข้าถึงการดาวน์โหลดที่เกี่ยวข้องกับผลิตภัณฑ์ในคำสั่งซื้อ " -"มันเก็บข้อมูลเกี่ยวกับผลิตภัณฑ์ในคำสั่งซื้อที่เกี่ยวข้อง จำนวนการดาวน์โหลด " +"แสดงถึงฟังก์ชันการดาวน์โหลดสำหรับสินทรัพย์ดิจิทัลที่เกี่ยวข้องกับคำสั่งซื้อ " +"คลาส DigitalAssetDownload " +"ให้ความสามารถในการจัดการและเข้าถึงการดาวน์โหลดที่เกี่ยวข้องกับผลิตภัณฑ์ในคำสั่งซื้อ" +" มันเก็บข้อมูลเกี่ยวกับผลิตภัณฑ์ในคำสั่งซื้อที่เกี่ยวข้อง จำนวนการดาวน์โหลด " "และว่าสินทรัพย์นั้นสามารถมองเห็นได้สาธารณะหรือไม่ รวมถึงวิธีการสร้าง URL " "สำหรับการดาวน์โหลดสินทรัพย์เมื่อคำสั่งซื้อที่เกี่ยวข้องอยู่ในสถานะเสร็จสมบูรณ์" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "ดาวน์โหลด" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "ดาวน์โหลด" #: engine/core/serializers/utility.py:91 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." -msgstr "คุณต้องแสดงความคิดเห็น, ให้คะแนน, และระบุ uuid ของสินค้าเพื่อเพิ่มคำแนะนำ" +msgstr "" +"คุณต้องแสดงความคิดเห็น, ให้คะแนน, และระบุ uuid ของสินค้าเพื่อเพิ่มคำแนะนำ" #: engine/core/sitemaps.py:25 msgid "Home" @@ -2838,12 +2939,12 @@ msgstr "สวัสดีครับ/ค่ะ %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "ขอบคุณสำหรับคำสั่งซื้อของคุณ #%(order.pk)s! " -"เราขอแจ้งให้คุณทราบว่าเราได้ดำเนินการตามคำสั่งซื้อของคุณแล้ว รายละเอียดของคำสั่งซื้อของคุณมีดังนี้:" +"เราขอแจ้งให้คุณทราบว่าเราได้ดำเนินการตามคำสั่งซื้อของคุณแล้ว " +"รายละเอียดของคำสั่งซื้อของคุณมีดังนี้:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2866,7 +2967,9 @@ msgstr "ราคาทั้งหมด" msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." -msgstr "หากคุณมีคำถามใด ๆ โปรดติดต่อทีมสนับสนุนของเราได้ที่ %(config.EMAIL_HOST_USER)s" +msgstr "" +"หากคุณมีคำถามใด ๆ โปรดติดต่อทีมสนับสนุนของเราได้ที่ " +"%(config.EMAIL_HOST_USER)s" #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -2945,12 +3048,11 @@ msgstr "ขอบคุณที่เข้าพักกับเรา! เ #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" -"ขอบคุณสำหรับการสั่งซื้อของคุณ! เราขอแจ้งยืนยันการสั่งซื้อของคุณเรียบร้อยแล้ว " -"รายละเอียดการสั่งซื้อของคุณมีดังนี้:" +"ขอบคุณสำหรับการสั่งซื้อของคุณ! เราขอแจ้งยืนยันการสั่งซื้อของคุณเรียบร้อยแล้ว" +" รายละเอียดการสั่งซื้อของคุณมีดังนี้:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3030,8 +3132,9 @@ msgid "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"จัดการการตอบสนองมุมมองรายละเอียดสำหรับแผนผังเว็บไซต์ ฟังก์ชันนี้ประมวลผลคำขอ " -"ดึงการตอบสนองรายละเอียดแผนผังเว็บไซต์ที่เหมาะสม และตั้งค่าส่วนหัว Content-Type สำหรับ XML" +"จัดการการตอบสนองมุมมองรายละเอียดสำหรับแผนผังเว็บไซต์ ฟังก์ชันนี้ประมวลผลคำขอ" +" ดึงการตอบสนองรายละเอียดแผนผังเว็บไซต์ที่เหมาะสม และตั้งค่าส่วนหัว Content-" +"Type สำหรับ XML" #: engine/core/views.py:155 msgid "" @@ -3047,7 +3150,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"จัดการการดำเนินการแคช เช่น การอ่านและการตั้งค่าข้อมูลแคชด้วยคีย์ที่กำหนดและเวลาหมดอายุ" +"จัดการการดำเนินการแคช เช่น " +"การอ่านและการตั้งค่าข้อมูลแคชด้วยคีย์ที่กำหนดและเวลาหมดอายุ" #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3058,7 +3162,8 @@ msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"จัดการคำขอสำหรับการประมวลผลและตรวจสอบความถูกต้องของ URL จากคำขอ POST ที่เข้ามา" +"จัดการคำขอสำหรับการประมวลผลและตรวจสอบความถูกต้องของ URL จากคำขอ POST " +"ที่เข้ามา" #: engine/core/views.py:273 msgid "Handles global search queries." @@ -3071,13 +3176,11 @@ msgstr "จัดการตรรกะของการซื้อในฐ #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "จัดการการดาวน์โหลดสินทรัพย์ดิจิทัลที่เกี่ยวข้องกับคำสั่งซื้อ " -"ฟังก์ชันนี้พยายามให้บริการไฟล์สินทรัพย์ดิจิทัลที่อยู่ในไดเรกทอรีจัดเก็บของโครงการ หากไม่พบไฟล์ " -"จะเกิดข้อผิดพลาด HTTP 404 เพื่อระบุว่าทรัพยากรไม่พร้อมใช้งาน" +"ฟังก์ชันนี้พยายามให้บริการไฟล์สินทรัพย์ดิจิทัลที่อยู่ในไดเรกทอรีจัดเก็บของโครงการ" +" หากไม่พบไฟล์ จะเกิดข้อผิดพลาด HTTP 404 เพื่อระบุว่าทรัพยากรไม่พร้อมใช้งาน" #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3106,27 +3209,25 @@ msgstr "ไม่พบไอคอนเว็บไซต์" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"จัดการคำขอสำหรับไอคอนเว็บไซต์ (favicon) ฟังก์ชันนี้พยายามให้บริการไฟล์ favicon " -"ที่อยู่ในไดเรกทอรีแบบคงที่ของโปรเจกต์ หากไม่พบไฟล์ favicon จะเกิดข้อผิดพลาด HTTP 404 " -"เพื่อแสดงว่าทรัพยากรไม่พร้อมใช้งาน" +"จัดการคำขอสำหรับไอคอนเว็บไซต์ (favicon) ฟังก์ชันนี้พยายามให้บริการไฟล์ " +"favicon ที่อยู่ในไดเรกทอรีแบบคงที่ของโปรเจกต์ หากไม่พบไฟล์ favicon " +"จะเกิดข้อผิดพลาด HTTP 404 เพื่อแสดงว่าทรัพยากรไม่พร้อมใช้งาน" #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "เปลี่ยนเส้นทางคำขอไปยังหน้าดัชนีของผู้ดูแลระบบ ฟังก์ชันนี้จัดการคำขอ HTTP " -"ที่เข้ามาและเปลี่ยนเส้นทางไปยังหน้าดัชนีของอินเทอร์เฟซผู้ดูแลระบบ Django โดยใช้ฟังก์ชัน " -"`redirect` ของ Django สำหรับการเปลี่ยนเส้นทาง HTTP" +"ที่เข้ามาและเปลี่ยนเส้นทางไปยังหน้าดัชนีของอินเทอร์เฟซผู้ดูแลระบบ Django " +"โดยใช้ฟังก์ชัน `redirect` ของ Django สำหรับการเปลี่ยนเส้นทาง HTTP" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "ส่งคืนเวอร์ชันปัจจุบันของ eVibes" +msgid "Returns current version of the Schon. " +msgstr "ส่งคืนเวอร์ชันปัจจุบันของ Schon" #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3139,29 +3240,31 @@ msgstr "ส่งคืนตัวแปรที่กำหนดเองส #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"กำหนดชุดมุมมองสำหรับการจัดการการดำเนินการที่เกี่ยวข้องกับ Evibes คลาส EvibesViewSet " -"สืบทอดมาจาก ModelViewSet " -"และให้ฟังก์ชันการทำงานสำหรับการจัดการการกระทำและการดำเนินการบนเอนทิตีของ Evibes " -"รวมถึงการรองรับคลาสตัวแปลงแบบไดนามิกตามการกระทำปัจจุบัน การอนุญาตที่ปรับแต่งได้ " -"และรูปแบบการแสดงผล" +"กำหนดชุดมุมมองสำหรับการจัดการการดำเนินการที่เกี่ยวข้องกับ schon คลาส " +"schonViewSet สืบทอดมาจาก ModelViewSet " +"และให้ฟังก์ชันการทำงานสำหรับการจัดการการกระทำและการดำเนินการบนเอนทิตีของ " +"schon รวมถึงการรองรับคลาสตัวแปลงแบบไดนามิกตามการกระทำปัจจุบัน " +"การอนุญาตที่ปรับแต่งได้ และรูปแบบการแสดงผล" #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"แสดงชุดมุมมองสำหรับการจัดการวัตถุ AttributeGroup ดำเนินการที่เกี่ยวข้องกับ AttributeGroup " -"รวมถึงการกรอง การแปลงข้อมูลเป็นรูปแบบที่ส่งผ่านได้ และการดึงข้อมูล คลาสนี้เป็นส่วนหนึ่งของชั้น " -"API ของแอปพลิเคชันและให้วิธีการมาตรฐานในการประมวลผลคำขอและการตอบสนองสำหรับข้อมูล " -"AttributeGroup" +"แสดงชุดมุมมองสำหรับการจัดการวัตถุ AttributeGroup ดำเนินการที่เกี่ยวข้องกับ " +"AttributeGroup รวมถึงการกรอง การแปลงข้อมูลเป็นรูปแบบที่ส่งผ่านได้ " +"และการดึงข้อมูล คลาสนี้เป็นส่วนหนึ่งของชั้น API " +"ของแอปพลิเคชันและให้วิธีการมาตรฐานในการประมวลผลคำขอและการตอบสนองสำหรับข้อมูล" +" AttributeGroup" #: engine/core/viewsets.py:179 msgid "" @@ -3172,24 +3275,26 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุ Attribute ภายในแอปพลิเคชัน ให้ชุดของจุดสิ้นสุด API " -"สำหรับการโต้ตอบกับข้อมูล Attribute คลาสนี้จัดการการค้นหา การกรอง และการแปลงวัตถุ " -"Attribute เป็นรูปแบบที่อ่านได้ ช่วยให้สามารถควบคุมข้อมูลที่ส่งคืนได้อย่างยืดหยุ่น เช่น " -"การกรองตามฟิลด์เฉพาะ หรือการดึงข้อมูลแบบละเอียดหรือแบบย่อ ขึ้นอยู่กับความต้องการของคำขอ" +"จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุ Attribute ภายในแอปพลิเคชัน " +"ให้ชุดของจุดสิ้นสุด API สำหรับการโต้ตอบกับข้อมูล Attribute " +"คลาสนี้จัดการการค้นหา การกรอง และการแปลงวัตถุ Attribute เป็นรูปแบบที่อ่านได้" +" ช่วยให้สามารถควบคุมข้อมูลที่ส่งคืนได้อย่างยืดหยุ่น เช่น " +"การกรองตามฟิลด์เฉพาะ หรือการดึงข้อมูลแบบละเอียดหรือแบบย่อ " +"ขึ้นอยู่กับความต้องการของคำขอ" #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "ชุดมุมมองสำหรับการจัดการวัตถุ AttributeValue " -"ชุดมุมมองนี้ให้ฟังก์ชันการทำงานสำหรับการแสดงรายการ การดึงข้อมูล การสร้าง การอัปเดต " -"และการลบวัตถุ AttributeValue มันผสานรวมกับกลไกชุดมุมมองของ Django REST Framework " -"และใช้ตัวแปลงข้อมูลที่เหมาะสมสำหรับแต่ละการกระทำ ความสามารถในการกรองข้อมูลมีให้ผ่าน " -"DjangoFilterBackend" +"ชุดมุมมองนี้ให้ฟังก์ชันการทำงานสำหรับการแสดงรายการ การดึงข้อมูล การสร้าง " +"การอัปเดต และการลบวัตถุ AttributeValue มันผสานรวมกับกลไกชุดมุมมองของ Django " +"REST Framework และใช้ตัวแปลงข้อมูลที่เหมาะสมสำหรับแต่ละการกระทำ " +"ความสามารถในการกรองข้อมูลมีให้ผ่าน DjangoFilterBackend" #: engine/core/viewsets.py:217 msgid "" @@ -3200,8 +3305,9 @@ msgid "" "can access specific data." msgstr "" "จัดการมุมมองสำหรับการดำเนินการที่เกี่ยวข้องกับหมวดหมู่ คลาส CategoryViewSet " -"รับผิดชอบในการจัดการการดำเนินการที่เกี่ยวข้องกับโมเดลหมวดหมู่ในระบบ มันรองรับการดึงข้อมูล " -"การกรอง และการแปลงข้อมูลหมวดหมู่เป็นรูปแบบที่ส่งต่อได้ " +"รับผิดชอบในการจัดการการดำเนินการที่เกี่ยวข้องกับโมเดลหมวดหมู่ในระบบ " +"มันรองรับการดึงข้อมูล การกรอง และการแปลงข้อมูลหมวดหมู่เป็นรูปแบบที่ส่งต่อได้" +" " "ชุดมุมมองนี้ยังบังคับใช้สิทธิ์การเข้าถึงเพื่อให้แน่ใจว่าเฉพาะผู้ใช้ที่ได้รับอนุญาตเท่านั้นที่สามารถเข้าถึงข้อมูลเฉพาะได้" #: engine/core/viewsets.py:346 @@ -3211,25 +3317,27 @@ msgid "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"แทนชุดมุมมองสำหรับการจัดการอินสแตนซ์ของแบรนด์ คลาสนี้ให้ฟังก์ชันการทำงานสำหรับการค้นหา " -"การกรอง และการแปลงออบเจ็กต์แบรนด์เป็นรูปแบบที่ส่งผ่านได้ โดยใช้เฟรมเวิร์ก ViewSet ของ " -"Django เพื่อทำให้การพัฒนาระบบจุดสิ้นสุด API สำหรับออบเจ็กต์แบรนด์เป็นเรื่องง่ายขึ้น" +"แทนชุดมุมมองสำหรับการจัดการอินสแตนซ์ของแบรนด์ " +"คลาสนี้ให้ฟังก์ชันการทำงานสำหรับการค้นหา การกรอง " +"และการแปลงออบเจ็กต์แบรนด์เป็นรูปแบบที่ส่งผ่านได้ โดยใช้เฟรมเวิร์ก ViewSet " +"ของ Django เพื่อทำให้การพัฒนาระบบจุดสิ้นสุด API " +"สำหรับออบเจ็กต์แบรนด์เป็นเรื่องง่ายขึ้น" #: engine/core/viewsets.py:458 msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "จัดการการดำเนินงานที่เกี่ยวข้องกับโมเดล `Product` ในระบบ " "คลาสนี้ให้ชุดมุมมองสำหรับการจัดการผลิตภัณฑ์ รวมถึงการกรอง การแปลงเป็นลำดับ " -"และปฏิบัติการบนอินสแตนซ์เฉพาะ มันขยายจาก `EvibesViewSet` " -"เพื่อใช้ฟังก์ชันทั่วไปและผสานรวมกับเฟรมเวิร์ก Django REST สำหรับการดำเนินการ API แบบ " -"RESTful รวมถึงวิธีการสำหรับการดึงรายละเอียดผลิตภัณฑ์ การใช้สิทธิ์ " +"และปฏิบัติการบนอินสแตนซ์เฉพาะ มันขยายจาก `schonViewSet` " +"เพื่อใช้ฟังก์ชันทั่วไปและผสานรวมกับเฟรมเวิร์ก Django REST สำหรับการดำเนินการ" +" API แบบ RESTful รวมถึงวิธีการสำหรับการดึงรายละเอียดผลิตภัณฑ์ การใช้สิทธิ์ " "และการเข้าถึงข้อเสนอแนะที่เกี่ยวข้องของผลิตภัณฑ์" #: engine/core/viewsets.py:605 @@ -3240,9 +3348,9 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"แสดงชุดมุมมองสำหรับการจัดการวัตถุ Vendor ชุดมุมมองนี้อนุญาตให้ดึงข้อมูล กรอง และแปลงข้อมูล " -"Vendor เป็นรูปแบบที่อ่านได้ ชุดมุมมองนี้กำหนด queryset การกำหนดค่าตัวกรอง และคลาส " -"serializer ที่ใช้จัดการการดำเนินการต่างๆ " +"แสดงชุดมุมมองสำหรับการจัดการวัตถุ Vendor ชุดมุมมองนี้อนุญาตให้ดึงข้อมูล กรอง" +" และแปลงข้อมูล Vendor เป็นรูปแบบที่อ่านได้ ชุดมุมมองนี้กำหนด queryset " +"การกำหนดค่าตัวกรอง และคลาส serializer ที่ใช้จัดการการดำเนินการต่างๆ " "วัตถุประสงค์ของคลาสนี้คือการให้การเข้าถึงทรัพยากรที่เกี่ยวข้องกับ Vendor " "อย่างมีประสิทธิภาพผ่านกรอบงาน Django REST" @@ -3251,29 +3359,32 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" -"การแสดงชุดมุมมองที่จัดการวัตถุข้อเสนอแนะ คลาสนี้จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุข้อเสนอแนะ " -"รวมถึงการแสดงรายการ การกรอง และการดึงรายละเอียด " -"วัตถุประสงค์ของชุดมุมมองนี้คือการจัดเตรียมตัวแปลงอนุกรมที่แตกต่างกันสำหรับการดำเนินการต่างๆ " -"และจัดการวัตถุข้อเสนอแนะที่เข้าถึงได้บนพื้นฐานของสิทธิ์ มันขยายคลาสพื้นฐาน `EvibesViewSet` " -"และใช้ระบบกรองของ Django สำหรับการสืบค้นข้อมูล" +"การแสดงชุดมุมมองที่จัดการวัตถุข้อเสนอแนะ " +"คลาสนี้จัดการการดำเนินการที่เกี่ยวข้องกับวัตถุข้อเสนอแนะ รวมถึงการแสดงรายการ" +" การกรอง และการดึงรายละเอียด " +"วัตถุประสงค์ของชุดมุมมองนี้คือการจัดเตรียมตัวแปลงอนุกรมที่แตกต่างกันสำหรับการดำเนินการต่างๆ" +" และจัดการวัตถุข้อเสนอแนะที่เข้าถึงได้บนพื้นฐานของสิทธิ์ มันขยายคลาสพื้นฐาน " +"`schonViewSet` และใช้ระบบกรองของ Django สำหรับการสืบค้นข้อมูล" #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"ViewSet สำหรับการจัดการคำสั่งซื้อและกิจกรรมที่เกี่ยวข้อง คลาสนี้ให้ฟังก์ชันการทำงานในการดึงข้อมูล " -"แก้ไข และจัดการอ็อบเจ็กต์คำสั่งซื้อ รวมถึงจุดสิ้นสุดต่างๆ สำหรับการจัดการคำสั่งซื้อ เช่น " -"การเพิ่มหรือลบผลิตภัณฑ์ การดำเนินการซื้อสำหรับผู้ใช้ที่ลงทะเบียนและไม่ได้ลงทะเบียน " +"ViewSet สำหรับการจัดการคำสั่งซื้อและกิจกรรมที่เกี่ยวข้อง " +"คลาสนี้ให้ฟังก์ชันการทำงานในการดึงข้อมูล แก้ไข และจัดการอ็อบเจ็กต์คำสั่งซื้อ" +" รวมถึงจุดสิ้นสุดต่างๆ สำหรับการจัดการคำสั่งซื้อ เช่น " +"การเพิ่มหรือลบผลิตภัณฑ์ " +"การดำเนินการซื้อสำหรับผู้ใช้ที่ลงทะเบียนและไม่ได้ลงทะเบียน " "และการดึงคำสั่งซื้อที่รอดำเนินการของผู้ใช้ที่เข้าสู่ระบบปัจจุบัน ViewSet " "ใช้ตัวแปลงข้อมูลหลายแบบตามการกระทำที่เฉพาะเจาะจงและบังคับใช้สิทธิ์การเข้าถึงอย่างเหมาะสมขณะโต้ตอบกับข้อมูลคำสั่งซื้อ" @@ -3281,15 +3392,16 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"ให้ชุดมุมมองสำหรับการจัดการเอนทิตี OrderProduct ชุดมุมมองนี้ช่วยให้สามารถดำเนินการ CRUD " -"และดำเนินการเฉพาะที่เกี่ยวกับโมเดล OrderProduct รวมถึงการกรอง การตรวจสอบสิทธิ์ " +"ให้ชุดมุมมองสำหรับการจัดการเอนทิตี OrderProduct " +"ชุดมุมมองนี้ช่วยให้สามารถดำเนินการ CRUD และดำเนินการเฉพาะที่เกี่ยวกับโมเดล " +"OrderProduct รวมถึงการกรอง การตรวจสอบสิทธิ์ " "และการสลับตัวแปลงตามการดำเนินการที่ร้องขอ " -"นอกจากนี้ยังมีรายละเอียดการดำเนินการสำหรับการจัดการข้อเสนอแนะเกี่ยวกับอินสแตนซ์ของ " -"OrderProduct" +"นอกจากนี้ยังมีรายละเอียดการดำเนินการสำหรับการจัดการข้อเสนอแนะเกี่ยวกับอินสแตนซ์ของ" +" OrderProduct" #: engine/core/viewsets.py:974 msgid "Manages operations related to Product images in the application. " @@ -3299,7 +3411,8 @@ msgstr "จัดการการดำเนินงานที่เกี msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "จัดการการดึงและการจัดการของตัวอย่าง PromoCode ผ่านการกระทำของ API ต่าง ๆ" +msgstr "" +"จัดการการดึงและการจัดการของตัวอย่าง PromoCode ผ่านการกระทำของ API ต่าง ๆ" #: engine/core/viewsets.py:1019 msgid "Represents a view set for managing promotions. " @@ -3313,18 +3426,19 @@ msgstr "จัดการการดำเนินงานที่เกี msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"ViewSet สำหรับการจัดการการดำเนินการในรายการที่ต้องการ (Wishlist) WishlistViewSet " -"ให้จุดเชื่อมต่อสำหรับการโต้ตอบกับรายการที่ต้องการของผู้ใช้ ซึ่งช่วยให้สามารถดึงข้อมูล แก้ไข " -"และปรับแต่งผลิตภัณฑ์ในรายการที่ต้องการได้ ViewSet นี้อำนวยความสะดวกในการทำงาน เช่น " -"การเพิ่ม การลบ และการดำเนินการแบบกลุ่มสำหรับผลิตภัณฑ์ในรายการที่ต้องการ " -"มีการตรวจสอบสิทธิ์เพื่อรับรองว่าผู้ใช้สามารถจัดการรายการที่ต้องการของตนเองเท่านั้น " -"เว้นแต่จะได้รับสิทธิ์อนุญาตอย่างชัดเจน" +"ViewSet สำหรับการจัดการการดำเนินการในรายการที่ต้องการ (Wishlist) " +"WishlistViewSet ให้จุดเชื่อมต่อสำหรับการโต้ตอบกับรายการที่ต้องการของผู้ใช้ " +"ซึ่งช่วยให้สามารถดึงข้อมูล แก้ไข และปรับแต่งผลิตภัณฑ์ในรายการที่ต้องการได้ " +"ViewSet นี้อำนวยความสะดวกในการทำงาน เช่น การเพิ่ม การลบ " +"และการดำเนินการแบบกลุ่มสำหรับผลิตภัณฑ์ในรายการที่ต้องการ " +"มีการตรวจสอบสิทธิ์เพื่อรับรองว่าผู้ใช้สามารถจัดการรายการที่ต้องการของตนเองเท่านั้น" +" เว้นแต่จะได้รับสิทธิ์อนุญาตอย่างชัดเจน" #: engine/core/viewsets.py:1183 msgid "" @@ -3336,8 +3450,9 @@ msgid "" msgstr "" "คลาสนี้ให้ฟังก์ชันการทำงานของ viewset สำหรับจัดการออบเจ็กต์ `Address` คลาส " "AddressViewSet ช่วยให้สามารถดำเนินการ CRUD การกรอง " -"และการดำเนินการที่กำหนดเองที่เกี่ยวข้องกับเอนทิตีที่อยู่ รวมถึงพฤติกรรมเฉพาะสำหรับวิธีการ HTTP " -"ที่แตกต่างกัน การแทนที่ตัวแปลงข้อมูล และการจัดการสิทธิ์ตามบริบทของคำขอ" +"และการดำเนินการที่กำหนดเองที่เกี่ยวข้องกับเอนทิตีที่อยู่ " +"รวมถึงพฤติกรรมเฉพาะสำหรับวิธีการ HTTP ที่แตกต่างกัน การแทนที่ตัวแปลงข้อมูล " +"และการจัดการสิทธิ์ตามบริบทของคำขอ" #: engine/core/viewsets.py:1254 #, python-brace-format diff --git a/engine/core/locale/tr_TR/LC_MESSAGES/django.mo b/engine/core/locale/tr_TR/LC_MESSAGES/django.mo index dc356122..0922b7dd 100644 Binary files a/engine/core/locale/tr_TR/LC_MESSAGES/django.mo and b/engine/core/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/tr_TR/LC_MESSAGES/django.po b/engine/core/locale/tr_TR/LC_MESSAGES/django.po index 072b12b9..1a095177 100644 --- a/engine/core/locale/tr_TR/LC_MESSAGES/django.po +++ b/engine/core/locale/tr_TR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Aktif mi" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "false olarak ayarlanırsa, bu nesne gerekli izne sahip olmayan kullanıcılar " "tarafından görülemez" @@ -76,8 +77,8 @@ msgstr "Zaman Damgaları" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" -msgstr "Seçili %(verbose_name_plural)s'ı etkinleştirin" +msgid "Activate selected %(verbose_name_plural)s" +msgstr "Seçilen %(verbose_name_plural)s'ı etkinleştir" #: engine/core/admin.py:166 msgid "selected items have been activated." @@ -85,21 +86,21 @@ msgstr "Seçilen öğeler etkinleştirildi!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" -msgstr "Seçili %(verbose_name_plural)s'ı devre dışı bırak" +msgid "Deactivate selected %(verbose_name_plural)s" +msgstr "Seçilen %(verbose_name_plural)s'ı devre dışı bırak" #: engine/core/admin.py:184 msgid "selected items have been deactivated." msgstr "Seçilen öğeler devre dışı bırakıldı!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Öznitelik Değeri" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Öznitelik Değerleri" @@ -119,12 +120,12 @@ msgstr "Stok" msgid "stocks" msgstr "Stoklar" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Ürün Siparişi" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Sipariş Ürünleri" @@ -132,7 +133,33 @@ msgstr "Sipariş Ürünleri" msgid "children" msgstr "Çocuklar" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Görüntüler var" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" +"Seçilen %(verbose_name_plural)s'ı pazar yerlerinin beslemelerine aktarın" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "Seçilen %(verbose_name_plural)s dışa aktarım için işaretlendi." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" +"Pazar yerlerinin beslemelerinden %(verbose_name_plural)s seçeneğini yasakla" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Seçilen %(verbose_name_plural)s ihracatı yasaklanmıştır." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Konfigürasyon" @@ -156,7 +183,8 @@ msgstr "Teslim edildi" msgid "canceled" msgstr "İptal edildi" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Başarısız" @@ -206,10 +234,8 @@ msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." msgstr "" -"Önbellekten izin verilen verileri okumak için yalnızca bir anahtar " -"uygulayın.\n" -"Önbelleğe veri yazmak için kimlik doğrulama ile anahtar, veri ve zaman aşımı " -"uygulayın." +"Önbellekten izin verilen verileri okumak için yalnızca bir anahtar uygulayın.\n" +"Önbelleğe veri yazmak için kimlik doğrulama ile anahtar, veri ve zaman aşımı uygulayın." #: engine/core/docs/drf/views.py:66 msgid "get a list of supported languages" @@ -233,7 +259,8 @@ msgstr "Ürünler, kategoriler ve markalar arasında arama" #: engine/core/docs/drf/views.py:144 msgid "global search endpoint to query across project's tables" -msgstr "Proje tabloları arasında sorgulama yapmak için global arama uç noktası" +msgstr "" +"Proje tabloları arasında sorgulama yapmak için global arama uç noktası" #: engine/core/docs/drf/views.py:153 msgid "purchase an order as a business" @@ -273,10 +300,11 @@ msgstr "" "Düzenlenemeyenleri kaydederek mevcut bir öznitelik grubunu yeniden yazma" #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" -"Mevcut bir öznitelik grubunun bazı alanlarını düzenlenemez olarak kaydederek " -"yeniden yazın" +"Mevcut bir öznitelik grubunun bazı alanlarını düzenlenemez olarak kaydederek" +" yeniden yazın" #: engine/core/docs/drf/viewsets.py:118 msgid "list all attributes (simple view)" @@ -326,10 +354,11 @@ msgstr "" "Düzenlenemeyenleri kaydederek mevcut bir öznitelik değerini yeniden yazma" #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" -"Mevcut bir öznitelik değerinin bazı alanlarını düzenlenemeyenleri kaydederek " -"yeniden yazın" +"Mevcut bir öznitelik değerinin bazı alanlarını düzenlenemeyenleri kaydederek" +" yeniden yazın" #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -384,11 +413,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"human_readable_id, order_products.product.name ve order_products.product." -"partnumber arasında büyük/küçük harfe duyarlı olmayan alt dize araması" +"human_readable_id, order_products.product.name ve " +"order_products.product.partnumber arasında büyük/küçük harfe duyarlı olmayan" +" alt dize araması" #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -420,14 +450,14 @@ msgstr "Kullanıcının UUID'sine göre filtreleme" #: engine/core/docs/drf/viewsets.py:347 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -"Sipariş durumuna göre filtreleme (büyük/küçük harfe duyarlı olmayan alt dize " -"eşleşmesi)" +"Sipariş durumuna göre filtreleme (büyük/küçük harfe duyarlı olmayan alt dize" +" eşleşmesi)" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Şunlardan birine göre sıralayın: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Azalan için '-' ile önekleyin " @@ -473,8 +503,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"Sipariş alımını sonuçlandırır. Eğer `force_balance` kullanılırsa, satın alma " -"işlemi kullanıcının bakiyesi kullanılarak tamamlanır; Eğer `force_payment` " +"Sipariş alımını sonuçlandırır. Eğer `force_balance` kullanılırsa, satın alma" +" işlemi kullanıcının bakiyesi kullanılarak tamamlanır; Eğer `force_payment` " "kullanılırsa, bir işlem başlatılır." #: engine/core/docs/drf/viewsets.py:427 @@ -549,7 +579,8 @@ msgstr "Tüm öznitelikleri listele (basit görünüm)" #: engine/core/docs/drf/viewsets.py:498 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -"Personel olmayan kullanıcılar için yalnızca kendi istek listeleri döndürülür." +"Personel olmayan kullanıcılar için yalnızca kendi istek listeleri " +"döndürülür." #: engine/core/docs/drf/viewsets.py:508 msgid "retrieve a single wishlist (detailed view)" @@ -630,28 +661,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Bir veya daha fazla öznitelik adı/değer çiftine göre filtreleyin. \n" "- Sözdizimi**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- **Metotlar** (atlanırsa varsayılan olarak `icontains` olur): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- Değer tipleme**: JSON ilk olarak denenir (böylece listeleri/dicts'leri " -"geçirebilirsiniz), booleanlar, tamsayılar, floatlar için `true`/`false`; " -"aksi takdirde string olarak ele alınır. \n" -"- **Base64**: ham değeri URL güvenli base64 kodlamak için `b64-` ile " -"önekleyin. \n" +"- **Metotlar** (atlanırsa varsayılan olarak `icontains` olur): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- Değer tipleme**: JSON ilk olarak denenir (böylece listeleri/dicts'leri geçirebilirsiniz), booleanlar, tamsayılar, floatlar için `true`/`false`; aksi takdirde string olarak ele alınır. \n" +"- **Base64**: ham değeri URL güvenli base64 kodlamak için `b64-` ile önekleyin. \n" "Örnekler: \n" "color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -666,14 +687,11 @@ msgstr "(tam) Ürün UUID'si" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Sıralanacak alanların virgülle ayrılmış listesi. Azalan için `-` ile ön " -"ek. \n" -"**İzin verilenler:** uuid, derecelendirme, ad, slug, oluşturuldu, " -"değiştirildi, fiyat, rastgele" +"Sıralanacak alanların virgülle ayrılmış listesi. Azalan için `-` ile ön ek. \n" +"**İzin verilenler:** uuid, derecelendirme, ad, slug, oluşturuldu, değiştirildi, fiyat, rastgele" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -1168,8 +1186,8 @@ msgstr "Bir sipariş satın alın" #: engine/core/graphene/mutations.py:220 engine/core/graphene/mutations.py:282 msgid "please provide either order_uuid or order_hr_id - mutually exclusive" msgstr "" -"Lütfen order_uuid veya order_hr_id bilgilerinden birini sağlayın - birbirini " -"dışlayan bilgiler!" +"Lütfen order_uuid veya order_hr_id bilgilerinden birini sağlayın - birbirini" +" dışlayan bilgiler!" #: engine/core/graphene/mutations.py:249 engine/core/graphene/mutations.py:524 #: engine/core/graphene/mutations.py:573 engine/core/viewsets.py:753 @@ -1225,8 +1243,8 @@ msgstr "Bir sipariş satın alın" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Lütfen öznitelikleri attr1=value1,attr2=value2 şeklinde biçimlendirilmiş " "dize olarak gönderin" @@ -1248,9 +1266,9 @@ msgstr "Orderproduct {order_product_uuid} bulunamadı!" msgid "original address string provided by the user" msgstr "Kullanıcı tarafından sağlanan orijinal adres dizesi" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1266,8 +1284,8 @@ msgstr "ElasticSearch - bir cazibe gibi çalışır" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Nitelikler" @@ -1304,7 +1322,8 @@ msgstr "" "Bu kategoriyi filtrelemek için hangi nitelikler ve değerler kullanılabilir." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "Varsa, bu kategorideki ürünler için minimum ve maksimum fiyatlar." #: engine/core/graphene/object_types.py:234 @@ -1341,7 +1360,7 @@ msgid "represents feedback from a user." msgstr "Bir kullanıcıdan gelen geri bildirimi temsil eder." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Bildirimler" @@ -1349,7 +1368,7 @@ msgstr "Bildirimler" msgid "download url for this order product if applicable" msgstr "Varsa, bu sipariş ürünü için URL'yi indirin" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Geri bildirim" @@ -1357,7 +1376,7 @@ msgstr "Geri bildirim" msgid "a list of order products in this order" msgstr "Bu siparişteki sipariş ürünlerinin bir listesi" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Fatura adresi" @@ -1385,7 +1404,7 @@ msgstr "Siparişteki tüm ürünler dijital mi" msgid "transactions for this order" msgstr "Bu sipariş için işlemler" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Siparişler" @@ -1402,7 +1421,7 @@ msgstr "Ürün görselleri" msgid "category" msgstr "Kategori" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Geri Bildirimler" @@ -1443,7 +1462,7 @@ msgstr "Ürünler sadece kişisel siparişler için mevcuttur" msgid "discount price" msgstr "İndirimli fiyat" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Ürünler" @@ -1455,7 +1474,7 @@ msgstr "Promosyon Kodları" msgid "products on sale" msgstr "Satıştaki ürünler" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Promosyonlar" @@ -1463,7 +1482,7 @@ msgstr "Promosyonlar" msgid "vendor" msgstr "Satıcı" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1471,11 +1490,11 @@ msgstr "Satıcı" msgid "product" msgstr "Ürün" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "İstek listesindeki ürünler" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Dilek Listeleri" @@ -1575,9 +1594,9 @@ msgid "" msgstr "" "Hiyerarşik olabilen bir öznitelik grubunu temsil eder. Bu sınıf, öznitelik " "gruplarını yönetmek ve düzenlemek için kullanılır. Bir öznitelik grubu, " -"hiyerarşik bir yapı oluşturan bir üst gruba sahip olabilir. Bu, karmaşık bir " -"sistemde öznitelikleri daha etkili bir şekilde kategorize etmek ve yönetmek " -"için yararlı olabilir." +"hiyerarşik bir yapı oluşturan bir üst gruba sahip olabilir. Bu, karmaşık bir" +" sistemde öznitelikleri daha etkili bir şekilde kategorize etmek ve yönetmek" +" için yararlı olabilir." #: engine/core/models.py:88 msgid "parent of this group" @@ -1591,7 +1610,7 @@ msgstr "Üst öznitelik grubu" msgid "attribute group's name" msgstr "Öznitelik grubunun adı" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Öznitelik grubu" @@ -1607,8 +1626,8 @@ msgid "" msgstr "" "Harici satıcılar ve bunların etkileşim gereksinimleri hakkında bilgi " "depolayabilen bir satıcı varlığını temsil eder. Satıcı sınıfı, harici bir " -"satıcıyla ilgili bilgileri tanımlamak ve yönetmek için kullanılır. Satıcının " -"adını, iletişim için gereken kimlik doğrulama ayrıntılarını ve satıcıdan " +"satıcıyla ilgili bilgileri tanımlamak ve yönetmek için kullanılır. Satıcının" +" adını, iletişim için gereken kimlik doğrulama ayrıntılarını ve satıcıdan " "alınan ürünlere uygulanan yüzde işaretlemesini saklar. Bu model ayrıca ek " "meta verileri ve kısıtlamaları da muhafaza ederek üçüncü taraf satıcılarla " "etkileşime giren sistemlerde kullanıma uygun hale getirir." @@ -1664,11 +1683,11 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "Ürünleri sınıflandırmak veya tanımlamak için kullanılan bir ürün etiketini " -"temsil eder. ProductTag sınıfı, dahili bir etiket tanımlayıcısı ve kullanıcı " -"dostu bir ekran adı kombinasyonu aracılığıyla ürünleri benzersiz bir şekilde " -"tanımlamak ve sınıflandırmak için tasarlanmıştır. Mixin'ler aracılığıyla " -"dışa aktarılan işlemleri destekler ve yönetimsel amaçlar için meta veri " -"özelleştirmesi sağlar." +"temsil eder. ProductTag sınıfı, dahili bir etiket tanımlayıcısı ve kullanıcı" +" dostu bir ekran adı kombinasyonu aracılığıyla ürünleri benzersiz bir " +"şekilde tanımlamak ve sınıflandırmak için tasarlanmıştır. Mixin'ler " +"aracılığıyla dışa aktarılan işlemleri destekler ve yönetimsel amaçlar için " +"meta veri özelleştirmesi sağlar." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1723,8 +1742,8 @@ msgid "" msgstr "" "İlgili öğeleri hiyerarşik bir yapıda düzenlemek ve gruplamak için bir " "kategori varlığını temsil eder. Kategoriler, ebeveyn-çocuk ilişkilerini " -"destekleyen diğer kategorilerle hiyerarşik ilişkilere sahip olabilir. Sınıf, " -"kategoriyle ilgili özellikler için bir temel görevi gören meta veri ve " +"destekleyen diğer kategorilerle hiyerarşik ilişkilere sahip olabilir. Sınıf," +" kategoriyle ilgili özellikler için bir temel görevi gören meta veri ve " "görsel temsil alanları içerir. Bu sınıf genellikle bir uygulama içinde ürün " "kategorilerini veya diğer benzer gruplamaları tanımlamak ve yönetmek için " "kullanılır ve kullanıcıların veya yöneticilerin kategorilerin adını, " @@ -1780,7 +1799,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Sistemdeki bir Marka nesnesini temsil eder. Bu sınıf, adı, logoları, " "açıklaması, ilişkili kategorileri, benzersiz bir slug ve öncelik sırası " @@ -1830,8 +1850,8 @@ msgstr "Kategoriler" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1840,8 +1860,8 @@ msgstr "" "Sistemde yönetilen bir ürünün stokunu temsil eder. Bu sınıf, satıcılar, " "ürünler ve bunların stok bilgileri arasındaki ilişkinin yanı sıra fiyat, " "satın alma fiyatı, miktar, SKU ve dijital varlıklar gibi envanterle ilgili " -"özellikler hakkında ayrıntılar sağlar. Çeşitli satıcılardan temin edilebilen " -"ürünlerin izlenmesine ve değerlendirilmesine olanak sağlamak için envanter " +"özellikler hakkında ayrıntılar sağlar. Çeşitli satıcılardan temin edilebilen" +" ürünlerin izlenmesine ve değerlendirilmesine olanak sağlamak için envanter " "yönetim sisteminin bir parçasıdır." #: engine/core/models.py:528 @@ -1864,8 +1884,8 @@ msgstr "Satış fiyatı" msgid "the product associated with this stock entry" msgstr "Bu stok girişi ile ilişkili ürün" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "İlişkili ürün" @@ -1967,7 +1987,7 @@ msgstr "Ürün için net bir tanımlayıcı isim sağlayın" msgid "product name" msgstr "Ürün adı" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Ürünün ayrıntılı bir açıklamasını ekleyin" @@ -1987,13 +2007,21 @@ msgstr "Parça numarası" msgid "stock keeping unit for this product" msgstr "Bu ürün için Stok Tutma Birimi" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "Bu ürünü pazarlara ihraç edip etmeme" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Pazar Yerlerine İhracat" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Sistemdeki bir özniteliği temsil eder. Bu sınıf, diğer varlıklarla " @@ -2003,140 +2031,140 @@ msgstr "" "tamsayı, float, boolean, dizi ve nesne dahil olmak üzere birden fazla değer " "türünü destekler. Bu, dinamik ve esnek veri yapılandırmasına olanak tanır." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Bu niteliğin grubu" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "String" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Tamsayı" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Yüzer" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Dizi" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Nesne" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Özniteliğin değerinin türü" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Değer türü" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Bu niteliğin adı" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Özniteliğin adı" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "filtrelenebilir" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "" "Bu kategoriyi filtrelemek için hangi nitelikler ve değerler kullanılabilir." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Öznitelik" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Bir ürünle bağlantılı bir nitelik için belirli bir değeri temsil eder. " "'Niteliği' benzersiz bir 'değere' bağlayarak ürün özelliklerinin daha iyi " "düzenlenmesine ve dinamik olarak temsil edilmesine olanak tanır." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Bu değerin niteliği" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Bu özniteliğin değeriyle ilişkili belirli ürün" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Bu öznitelik için özel değer" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Sistemdeki bir ürünle ilişkilendirilmiş bir ürün resmini temsil eder. Bu " -"sınıf, görüntü dosyalarını yükleme, bunları belirli ürünlerle ilişkilendirme " -"ve görüntüleme sıralarını belirleme işlevleri dahil olmak üzere ürün " +"sınıf, görüntü dosyalarını yükleme, bunları belirli ürünlerle ilişkilendirme" +" ve görüntüleme sıralarını belirleme işlevleri dahil olmak üzere ürün " "görüntülerini yönetmek için tasarlanmıştır. Ayrıca görüntüler için " "alternatif metin içeren bir erişilebilirlik özelliği de içerir." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Erişilebilirlik için görüntü için alternatif metin sağlayın" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Resim alt metni" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Bu ürün için resim dosyasını yükleyin" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Ürün görseli" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Görüntülerin görüntülenme sırasını belirler" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Ekran önceliği" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Bu görselin temsil ettiği ürün" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Ürün görselleri" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "İndirimli ürünler için bir promosyon kampanyasını temsil eder. Bu sınıf, " "ürünler için yüzdeye dayalı bir indirim sunan promosyon kampanyalarını " @@ -2145,167 +2173,167 @@ msgstr "" "öznitelikler içerir. Kampanyadaki etkilenen ürünleri belirlemek için ürün " "kataloğu ile entegre olur." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Seçilen ürünler için yüzde indirim" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "İndirim yüzdesi" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Bu promosyon için benzersiz bir ad girin" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Promosyon adı" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Promosyon açıklaması" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Bu promosyona hangi ürünlerin dahil olduğunu seçin" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Dahil olan ürünler" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Promosyon" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"İstenen ürünleri depolamak ve yönetmek için bir kullanıcının istek listesini " -"temsil eder. Sınıf, bir ürün koleksiyonunu yönetmek için işlevsellik sağlar, " -"ürün ekleme ve kaldırma gibi işlemlerin yanı sıra aynı anda birden fazla " -"ürün ekleme ve kaldırma işlemlerini destekler." +"İstenen ürünleri depolamak ve yönetmek için bir kullanıcının istek listesini" +" temsil eder. Sınıf, bir ürün koleksiyonunu yönetmek için işlevsellik " +"sağlar, ürün ekleme ve kaldırma gibi işlemlerin yanı sıra aynı anda birden " +"fazla ürün ekleme ve kaldırma işlemlerini destekler." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Kullanıcının aranıyor olarak işaretlediği ürünler" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Bu istek listesine sahip olan kullanıcı" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Dilek Listesi Sahibi" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "İstek Listesi" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Bir ürüne bağlı bir belgesel kaydını temsil eder. Bu sınıf, dosya " "yüklemeleri ve meta verileri dahil olmak üzere belirli ürünlerle ilgili " "belgeseller hakkında bilgi depolamak için kullanılır. Belgesel dosyalarının " -"dosya türünü ve depolama yolunu işlemek için yöntemler ve özellikler içerir. " -"Belirli mixin'lerin işlevselliğini genişletir ve ek özel özellikler sağlar." +"dosya türünü ve depolama yolunu işlemek için yöntemler ve özellikler içerir." +" Belirli mixin'lerin işlevselliğini genişletir ve ek özel özellikler sağlar." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Belgesel" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Belgeseller" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Çözümlenmemiş" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Konum ayrıntılarını ve bir kullanıcıyla ilişkileri içeren bir adres " -"varlığını temsil eder. Coğrafi ve adres verilerinin depolanmasının yanı sıra " -"coğrafi kodlama hizmetleriyle entegrasyon için işlevsellik sağlar. Bu sınıf, " -"sokak, şehir, bölge, ülke ve coğrafi konum (enlem ve boylam) gibi " +"varlığını temsil eder. Coğrafi ve adres verilerinin depolanmasının yanı sıra" +" coğrafi kodlama hizmetleriyle entegrasyon için işlevsellik sağlar. Bu " +"sınıf, sokak, şehir, bölge, ülke ve coğrafi konum (enlem ve boylam) gibi " "bileşenleri içeren ayrıntılı adres bilgilerini depolamak için " "tasarlanmıştır. Coğrafi kodlama API'leri ile entegrasyonu destekler ve daha " "fazla işleme veya inceleme için ham API yanıtlarının depolanmasını sağlar. " "Sınıf ayrıca bir adresin bir kullanıcıyla ilişkilendirilmesine olanak " "tanıyarak kişiselleştirilmiş veri işlemeyi kolaylaştırır." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Müşteri için adres satırı" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Adres hattı" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Sokak" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Bölge" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Şehir" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Bölge" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Posta kodu" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Ülke" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Coğrafi Konum Noktası(Boylam, Enlem)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Bu adres için geocoder'dan alınan tam JSON yanıtı" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Coğrafi kodlama hizmetinden depolanan JSON yanıtı" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Adres" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Adresler" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2322,73 +2350,74 @@ msgstr "" "karşılandığından emin olurken promosyon kodunu doğrulamak ve siparişe " "uygulamak için işlevsellik içerir." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "" -"Bir kullanıcı tarafından indirimden yararlanmak için kullanılan benzersiz kod" +"Bir kullanıcı tarafından indirimden yararlanmak için kullanılan benzersiz " +"kod" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Promosyon kodu tanımlayıcı" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Yüzde kullanılmazsa uygulanan sabit indirim tutarı" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Sabit iskonto tutarı" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "Sabit tutar kullanılmazsa uygulanan yüzde indirimi" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Yüzde indirim" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Promosyon kodunun sona erdiği zaman damgası" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Geçerlilik süresi sonu" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Bu promosyon kodunun geçerli olduğu zaman damgası" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Geçerlilik süresini başlat" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" "Promosyon kodunun kullanıldığı zaman damgası, henüz kullanılmadıysa boş" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Kullanım zaman damgası" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Varsa bu promosyon koduna atanan kullanıcı" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Atanmış kullanıcı" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Promosyon kodu" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Promosyon kodları" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2396,162 +2425,163 @@ msgstr "" "Sadece bir indirim türü (tutar veya yüzde) tanımlanmalı, ikisi birden veya " "hiçbiri tanımlanmamalıdır." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Promosyon kodu zaten kullanılmış" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Promosyon kodu {self.uuid} için geçersiz indirim türü!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Bir kullanıcı tarafından verilen bir siparişi temsil eder. Bu sınıf, fatura " "ve kargo bilgileri, durum, ilişkili kullanıcı, bildirimler ve ilgili " "işlemler gibi çeşitli öznitelikleri dahil olmak üzere uygulama içinde bir " -"siparişi modeller. Siparişler ilişkili ürünlere sahip olabilir, promosyonlar " -"uygulanabilir, adresler ayarlanabilir ve kargo veya fatura ayrıntıları " +"siparişi modeller. Siparişler ilişkili ürünlere sahip olabilir, promosyonlar" +" uygulanabilir, adresler ayarlanabilir ve kargo veya fatura ayrıntıları " "güncellenebilir. Aynı şekilde işlevsellik, sipariş yaşam döngüsündeki " "ürünlerin yönetilmesini de destekler." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Bu sipariş için kullanılan fatura adresi" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Bu siparişe isteğe bağlı promosyon kodu uygulanır" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Uygulanan promosyon kodu" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Bu sipariş için kullanılan gönderim adresi" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Nakliye adresi" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Siparişin yaşam döngüsündeki mevcut durumu" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Sipariş durumu" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Kullanıcılara gösterilecek bildirimlerin JSON yapısı, yönetici kullanıcı " "arayüzünde tablo görünümü kullanılır" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Bu sipariş için sipariş özniteliklerinin JSON gösterimi" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Siparişi veren kullanıcı" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Kullanıcı" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Siparişin sonlandırıldığı zaman damgası" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Zaman satın alın" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Sipariş için insan tarafından okunabilir bir tanımlayıcı" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "insan tarafından okunabilir kimlik" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Sipariş" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "Bir kullanıcı aynı anda yalnızca bir bekleyen emre sahip olmalıdır!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "Beklemede olmayan bir siparişe ürün ekleyemezsiniz" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Aktif olmayan ürünleri siparişe ekleyemezsiniz" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Stokta mevcut olandan daha fazla ürün ekleyemezsiniz" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "Beklemede olmayan bir siparişten ürün kaldıramazsınız" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} <{query}> sorgusu ile mevcut değil!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Promosyon kodu mevcut değil" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Fiziksel ürünleri yalnızca gönderim adresi belirtilerek satın alabilirsiniz!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Adres mevcut değil" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" -msgstr "Şu anda satın alamazsınız, lütfen birkaç dakika içinde tekrar deneyin." +msgstr "" +"Şu anda satın alamazsınız, lütfen birkaç dakika içinde tekrar deneyin." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Geçersiz kuvvet değeri" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Boş bir sipariş satın alamazsınız!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Kullanıcı olmadan sipariş alamazsınız!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Bakiyesi olmayan bir kullanıcı bakiye ile satın alamaz!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Siparişi tamamlamak için yeterli fon yok" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2559,14 +2589,14 @@ msgstr "" "kayıt olmadan satın alamazsınız, lütfen aşağıdaki bilgileri sağlayın: " "müşteri adı, müşteri e-postası, müşteri telefon numarası" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" "Geçersiz ödeme yöntemi: {available_payment_methods}'den {payment_method}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2578,36 +2608,38 @@ msgstr "" "aldıkları belirli ürünler için kullanıcı geri bildirimlerini yakalamak ve " "saklamak üzere tasarlanmıştır. Kullanıcı yorumlarını saklamak için " "öznitelikler, siparişteki ilgili ürüne bir referans ve kullanıcı tarafından " -"atanan bir derecelendirme içerir. Sınıf, geri bildirim verilerini etkili bir " -"şekilde modellemek ve yönetmek için veritabanı alanlarını kullanır." +"atanan bir derecelendirme içerir. Sınıf, geri bildirim verilerini etkili bir" +" şekilde modellemek ve yönetmek için veritabanı alanlarını kullanır." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" "Ürünle ilgili deneyimleri hakkında kullanıcı tarafından sağlanan yorumlar" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Geri bildirim yorumları" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Bu geri bildirimin ilgili olduğu siparişteki belirli bir ürüne atıfta bulunur" +"Bu geri bildirimin ilgili olduğu siparişteki belirli bir ürüne atıfta " +"bulunur" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "İlgili sipariş ürünü" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Ürün için kullanıcı tarafından atanan derecelendirme" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Ürün değerlendirmesi" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2629,128 +2661,128 @@ msgstr "" "destekleyen yöntemler ve özellikler sağlar. Model, Sipariş ve Ürün " "modelleriyle entegre olur ve bunlara referans depolar." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Satın alma sırasında müşteri tarafından bu ürün için ödenen fiyat" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Sipariş anındaki satın alma fiyatı" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Sipariş edilen bu ürün hakkında yöneticiler için dahili yorumlar" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Dahili yorumlar" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Kullanıcı bildirimleri" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Bu öğenin özniteliklerinin JSON gösterimi" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Sıralı ürün özellikleri" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Bu ürünü içeren ana siparişe referans" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Ana sipariş" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Bu sipariş satırıyla ilişkili belirli ürün" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Siparişteki bu belirli ürünün miktarı" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Ürün miktarı" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Bu ürünün siparişteki mevcut durumu" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Ürün hattı durumu" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Orderproduct ilişkili bir siparişe sahip olmalıdır!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Geri bildirim için yanlış eylem belirtildi: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "alınmamış bir siparişe geri bildirim yapamazsınız" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "İsim" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "Entegrasyonun URL'si" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Kimlik doğrulama bilgileri" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Yalnızca bir varsayılan CRM sağlayıcınız olabilir" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "CRM" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "CRM'ler" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Siparişin CRM bağlantısı" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Siparişlerin CRM bağlantıları" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Siparişlerle ilişkili dijital varlıklar için indirme işlevselliğini temsil " "eder. DigitalAssetDownload sınıfı, sipariş ürünleriyle ilgili indirmeleri " "yönetme ve bunlara erişme olanağı sağlar. İlişkili sipariş ürünü, indirme " -"sayısı ve varlığın herkese açık olup olmadığı hakkında bilgi tutar. İlişkili " -"sipariş tamamlandı durumundayken varlığın indirilmesi için bir URL " +"sayısı ve varlığın herkese açık olup olmadığı hakkında bilgi tutar. İlişkili" +" sipariş tamamlandı durumundayken varlığın indirilmesi için bir URL " "oluşturmaya yönelik bir yöntem içerir." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "İndir" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "İndirmeler" @@ -2758,8 +2790,8 @@ msgstr "İndirmeler" msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -"geri̇ bi̇ldi̇ri̇m eklemek i̇çi̇n bi̇r yorum, puan ve si̇pari̇ş ürün uuid'si̇ " -"sağlamalisiniz." +"geri̇ bi̇ldi̇ri̇m eklemek i̇çi̇n bi̇r yorum, puan ve si̇pari̇ş ürün uuid'si̇" +" sağlamalisiniz." #: engine/core/sitemaps.py:25 msgid "Home" @@ -2951,8 +2983,7 @@ msgstr "Merhaba %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Siparişiniz için teşekkür ederiz #%(order.pk)s! Siparişinizi işleme " @@ -3011,8 +3042,8 @@ msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -"Siparişinizi başarıyla işleme aldık №%(order_uuid)s! Siparişinizin detayları " -"aşağıdadır:" +"Siparişinizi başarıyla işleme aldık №%(order_uuid)s! Siparişinizin detayları" +" aşağıdadır:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -3067,8 +3098,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Siparişiniz için teşekkür ederiz! Satın alma işleminizi onaylamaktan " @@ -3154,9 +3184,9 @@ msgid "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." msgstr "" -"Bir site haritası için ayrıntılı görünüm yanıtını işler. Bu fonksiyon isteği " -"işler, uygun site haritası ayrıntı yanıtını getirir ve XML için Content-Type " -"başlığını ayarlar." +"Bir site haritası için ayrıntılı görünüm yanıtını işler. Bu fonksiyon isteği" +" işler, uygun site haritası ayrıntı yanıtını getirir ve XML için Content-" +"Type başlığını ayarlar." #: engine/core/views.py:155 msgid "" @@ -3174,8 +3204,8 @@ msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Belirli bir anahtar ve zaman aşımı ile önbellek verilerini okuma ve ayarlama " -"gibi önbellek işlemlerini gerçekleştirir." +"Belirli bir anahtar ve zaman aşımı ile önbellek verilerini okuma ve ayarlama" +" gibi önbellek işlemlerini gerçekleştirir." #: engine/core/views.py:220 msgid "Handles `contact us` form submissions." @@ -3200,14 +3230,10 @@ msgstr "Kayıt olmadan bir işletme olarak satın alma mantığını ele alır." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Bir siparişle ilişkili bir dijital varlığın indirilmesini yönetir.\n" -"Bu fonksiyon, projenin depolama dizininde bulunan dijital varlık dosyasını " -"sunmaya çalışır. Dosya bulunamazsa, kaynağın kullanılamadığını belirtmek " -"için bir HTTP 404 hatası verilir." +"Bu fonksiyon, projenin depolama dizininde bulunan dijital varlık dosyasını sunmaya çalışır. Dosya bulunamazsa, kaynağın kullanılamadığını belirtmek için bir HTTP 404 hatası verilir." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3236,19 +3262,15 @@ msgstr "favicon bulunamadı" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Bir web sitesinin favicon'u için istekleri işler.\n" -"Bu fonksiyon, projenin statik dizininde bulunan favicon dosyasını sunmaya " -"çalışır. Favicon dosyası bulunamazsa, kaynağın kullanılamadığını belirtmek " -"için bir HTTP 404 hatası verilir." +"Bu fonksiyon, projenin statik dizininde bulunan favicon dosyasını sunmaya çalışır. Favicon dosyası bulunamazsa, kaynağın kullanılamadığını belirtmek için bir HTTP 404 hatası verilir." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "İsteği yönetici dizin sayfasına yönlendirir. Bu fonksiyon gelen HTTP " @@ -3257,8 +3279,8 @@ msgstr "" "fonksiyonunu kullanır." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "eVibes'in geçerli sürümünü döndürür." +msgid "Returns current version of the Schon. " +msgstr "Schon'in geçerli sürümünü döndürür." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3271,24 +3293,25 @@ msgstr "Gösterge Tablosu için özel değişkenleri döndürür." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes ile ilgili işlemleri yönetmek için bir görünüm kümesi tanımlar. " -"EvibesViewSet sınıfı ModelViewSet'ten miras alınır ve Evibes varlıkları " +"schon ile ilgili işlemleri yönetmek için bir görünüm kümesi tanımlar. " +"schonViewSet sınıfı ModelViewSet'ten miras alınır ve schon varlıkları " "üzerindeki eylemleri ve işlemleri yönetmek için işlevsellik sağlar. Geçerli " -"eyleme dayalı dinamik serileştirici sınıfları, özelleştirilebilir izinler ve " -"işleme biçimleri için destek içerir." +"eyleme dayalı dinamik serileştirici sınıfları, özelleştirilebilir izinler ve" +" işleme biçimleri için destek içerir." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "AttributeGroup nesnelerini yönetmek için bir görünüm kümesini temsil eder. " "Filtreleme, serileştirme ve veri alma dahil olmak üzere AttributeGroup ile " @@ -3317,8 +3340,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "AttributeValue nesnelerini yönetmek için bir görünüm kümesi. Bu görünüm " "kümesi, AttributeValue nesnelerini listelemek, almak, oluşturmak, " @@ -3359,15 +3382,15 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "Sistemdeki `Product` modeliyle ilgili işlemleri yönetir. Bu sınıf, " -"filtreleme, serileştirme ve belirli örnekler üzerindeki işlemler dahil olmak " -"üzere ürünleri yönetmek için bir görünüm kümesi sağlar. Ortak işlevselliği " -"kullanmak için `EvibesViewSet`ten genişletilir ve RESTful API işlemleri için " +"filtreleme, serileştirme ve belirli örnekler üzerindeki işlemler dahil olmak" +" üzere ürünleri yönetmek için bir görünüm kümesi sağlar. Ortak işlevselliği " +"kullanmak için `schonViewSet`ten genişletilir ve RESTful API işlemleri için " "Django REST çerçevesi ile entegre olur. Ürün ayrıntılarını almak, izinleri " "uygulamak ve bir ürünün ilgili geri bildirimlerine erişmek için yöntemler " "içerir." @@ -3392,15 +3415,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Geri Bildirim nesnelerini işleyen bir görünüm kümesinin temsili. Bu sınıf, " "listeleme, filtreleme ve ayrıntıları alma dahil olmak üzere Geri Bildirim " "nesneleriyle ilgili işlemleri yönetir. Bu görünüm kümesinin amacı, farklı " -"eylemler için farklı serileştiriciler sağlamak ve erişilebilir Geri Bildirim " -"nesnelerinin izin tabanlı kullanımını uygulamaktır. Temel `EvibesViewSet`i " +"eylemler için farklı serileştiriciler sağlamak ve erişilebilir Geri Bildirim" +" nesnelerinin izin tabanlı kullanımını uygulamaktır. Temel `schonViewSet`i " "genişletir ve verileri sorgulamak için Django'nun filtreleme sistemini " "kullanır." @@ -3409,17 +3432,17 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "Siparişleri ve ilgili işlemleri yönetmek için ViewSet. Bu sınıf, sipariş " "nesnelerini almak, değiştirmek ve yönetmek için işlevsellik sağlar. Ürün " "ekleme veya kaldırma, kayıtlı ve kayıtsız kullanıcılar için satın alma " -"işlemleri gerçekleştirme ve mevcut kimliği doğrulanmış kullanıcının bekleyen " -"siparişlerini alma gibi sipariş işlemlerini gerçekleştirmek için çeşitli uç " -"noktalar içerir. ViewSet, gerçekleştirilen belirli eyleme bağlı olarak " +"işlemleri gerçekleştirme ve mevcut kimliği doğrulanmış kullanıcının bekleyen" +" siparişlerini alma gibi sipariş işlemlerini gerçekleştirmek için çeşitli uç" +" noktalar içerir. ViewSet, gerçekleştirilen belirli eyleme bağlı olarak " "birden fazla serileştirici kullanır ve sipariş verileriyle etkileşime " "girerken izinleri buna göre zorlar." @@ -3427,14 +3450,14 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "OrderProduct varlıklarını yönetmek için bir görünüm kümesi sağlar. Bu " "görünüm kümesi, CRUD işlemlerini ve OrderProduct modeline özgü özel " -"eylemleri etkinleştirir. Filtreleme, izin kontrolleri ve istenen eyleme göre " -"serileştirici değiştirme içerir. Ayrıca, OrderProduct örnekleriyle ilgili " +"eylemleri etkinleştirir. Filtreleme, izin kontrolleri ve istenen eyleme göre" +" serileştirici değiştirme içerir. Ayrıca, OrderProduct örnekleriyle ilgili " "geri bildirimleri işlemek için ayrıntılı bir eylem sağlar" #: engine/core/viewsets.py:974 @@ -3461,8 +3484,8 @@ msgstr "Sistemdeki Stok verileri ile ilgili işlemleri yürütür." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3503,7 +3526,7 @@ msgid "" "serializers based on the action being performed." msgstr "" "Uygulama içinde Ürün Etiketleri ile ilgili işlemleri gerçekleştirir. Bu " -"sınıf, Ürün Etiketi nesnelerinin alınması, filtrelenmesi ve serileştirilmesi " -"için işlevsellik sağlar. Belirtilen filtre arka ucunu kullanarak belirli " +"sınıf, Ürün Etiketi nesnelerinin alınması, filtrelenmesi ve serileştirilmesi" +" için işlevsellik sağlar. Belirtilen filtre arka ucunu kullanarak belirli " "nitelikler üzerinde esnek filtrelemeyi destekler ve gerçekleştirilen eyleme " "göre dinamik olarak farklı serileştiriciler kullanır." diff --git a/engine/core/locale/vi_VN/LC_MESSAGES/django.mo b/engine/core/locale/vi_VN/LC_MESSAGES/django.mo index f1bb2cba..db31e026 100644 Binary files a/engine/core/locale/vi_VN/LC_MESSAGES/django.mo and b/engine/core/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/vi_VN/LC_MESSAGES/django.po b/engine/core/locale/vi_VN/LC_MESSAGES/django.po index 62c12523..8429900c 100644 --- a/engine/core/locale/vi_VN/LC_MESSAGES/django.po +++ b/engine/core/locale/vi_VN/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Đang hoạt động" #: engine/core/abstract.py:22 msgid "" -"if set to false, this object can't be seen by users without needed permission" +"if set to false, this object can't be seen by users without needed " +"permission" msgstr "" "Nếu được đặt thành false, đối tượng này sẽ không hiển thị cho người dùng " "không có quyền truy cập cần thiết." @@ -76,7 +77,7 @@ msgstr "Dấu thời gian" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "Kích hoạt %(verbose_name_plural)s đã chọn" #: engine/core/admin.py:166 @@ -85,7 +86,7 @@ msgstr "Các mục đã được chọn đã được kích hoạt!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "Vô hiệu hóa các mục đã chọn %(verbose_name_plural)s" #: engine/core/admin.py:184 @@ -93,13 +94,13 @@ msgid "selected items have been deactivated." msgstr "Các mục đã chọn đã bị vô hiệu hóa!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "Giá trị thuộc tính" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "Giá trị thuộc tính" @@ -119,12 +120,12 @@ msgstr "Cổ phiếu" msgid "stocks" msgstr "Cổ phiếu" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "Đặt hàng sản phẩm" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "Đặt hàng sản phẩm" @@ -132,7 +133,36 @@ msgstr "Đặt hàng sản phẩm" msgid "children" msgstr "Trẻ em" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "Có hình ảnh" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "" +"Xuất khẩu sản phẩm đã chọn %(verbose_name_plural)s sang các kênh phân phối " +"của các sàn thương mại điện tử." + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "" +"Các mục đã chọn %(verbose_name_plural)s đã được đánh dấu để xuất khẩu." + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "" +"Ban đã chọn %(verbose_name_plural)s từ các nguồn cấp dữ liệu của các sàn " +"giao dịch." + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "Các sản phẩm %(verbose_name_plural)s đã bị cấm xuất khẩu." + +#: engine/core/admin.py:1116 msgid "Config" msgstr "Cấu hình" @@ -156,7 +186,8 @@ msgstr "Đã giao" msgid "canceled" msgstr "Đã hủy" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Thất bại" @@ -243,8 +274,8 @@ msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -"Mua hàng với tư cách là doanh nghiệp, sử dụng các sản phẩm được cung cấp với " -"`product_uuid` và `attributes`." +"Mua hàng với tư cách là doanh nghiệp, sử dụng các sản phẩm được cung cấp với" +" `product_uuid` và `attributes`." #: engine/core/docs/drf/views.py:180 msgid "download a digital asset from purchased digital order" @@ -273,7 +304,8 @@ msgstr "" "chỉnh sửa." #: engine/core/docs/drf/viewsets.py:107 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Cập nhật một số trường trong nhóm thuộc tính hiện có, giữ nguyên các trường " "không thể chỉnh sửa." @@ -328,10 +360,11 @@ msgstr "" "không thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:208 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" -"Cập nhật một số trường của giá trị thuộc tính hiện có, giữ nguyên các trường " -"không thể chỉnh sửa." +"Cập nhật một số trường của giá trị thuộc tính hiện có, giữ nguyên các trường" +" không thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:219 engine/core/docs/drf/viewsets.py:220 msgid "list all categories (simple view)" @@ -362,8 +395,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:270 engine/core/docs/drf/viewsets.py:272 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:280 engine/core/docs/drf/viewsets.py:757 #: engine/core/docs/drf/viewsets.py:1046 @@ -389,12 +422,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:309 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Tìm kiếm chuỗi con không phân biệt chữ hoa chữ thường trên các trường " -"human_readable_id, order_products.product.name và order_products.product." -"partnumber." +"human_readable_id, order_products.product.name và " +"order_products.product.partnumber." #: engine/core/docs/drf/viewsets.py:316 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -430,9 +463,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:354 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Sắp xếp theo một trong các trường sau: uuid, human_readable_id, user_email, " "user, status, created, modified, buy_time, random. Thêm tiền tố '-' để sắp " @@ -467,8 +500,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:403 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:410 msgid "purchase an order" @@ -639,29 +672,15 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -"Lọc theo một hoặc nhiều cặp tên/giá trị thuộc tính. • **Cú pháp**: " -"`attr_name=method-value[;attr2=method2-value2]…` • **Phương thức** (mặc định " -"là `icontains` nếu không được chỉ định): `iexact`, `exact`, `icontains`, " -"`contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, " -"`regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` • **Kiểu giá trị**: JSON " -"được ưu tiên (nên bạn có thể truyền danh sách/đối tượng), `true`/`false` cho " -"boolean, số nguyên, số thực; nếu không sẽ được xử lý như chuỗi. • " -"**Base64**: thêm tiền tố `b64-` để mã hóa Base64 an toàn cho URL giá trị " -"thô. \n" -"Ví dụ: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" +"Lọc theo một hoặc nhiều cặp tên/giá trị thuộc tính. • **Cú pháp**: `attr_name=method-value[;attr2=method2-value2]…` • **Phương thức** (mặc định là `icontains` nếu không được chỉ định): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` • **Kiểu giá trị**: JSON được ưu tiên (nên bạn có thể truyền danh sách/đối tượng), `true`/`false` cho boolean, số nguyên, số thực; nếu không sẽ được xử lý như chuỗi. • **Base64**: thêm tiền tố `b64-` để mã hóa Base64 an toàn cho URL giá trị thô. \n" +"Ví dụ: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:617 engine/core/docs/drf/viewsets.py:618 msgid "list all products (simple view)" @@ -673,13 +692,12 @@ msgstr "(chính xác) Mã định danh duy nhất của sản phẩm (UUID)" #: engine/core/docs/drf/viewsets.py:630 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Danh sách các trường được phân tách bằng dấu phẩy để sắp xếp. Thêm tiền tố `-" -"` để sắp xếp theo thứ tự giảm dần. **Được phép:** uuid, rating, name, slug, " -"created, modified, price, random" +"Danh sách các trường được phân tách bằng dấu phẩy để sắp xếp. Thêm tiền tố " +"`-` để sắp xếp theo thứ tự giảm dần. **Được phép:** uuid, rating, name, " +"slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "retrieve a single product (detailed view)" @@ -704,8 +722,8 @@ msgstr "" msgid "" "update some fields of an existing product, preserving non-editable fields" msgstr "" -"Cập nhật một số trường của sản phẩm hiện có, giữ nguyên các trường không thể " -"chỉnh sửa." +"Cập nhật một số trường của sản phẩm hiện có, giữ nguyên các trường không thể" +" chỉnh sửa." #: engine/core/docs/drf/viewsets.py:719 engine/core/docs/drf/viewsets.py:720 msgid "delete a product" @@ -779,8 +797,8 @@ msgstr "Viết lại phản hồi hiện có để lưu các trường không th #: engine/core/docs/drf/viewsets.py:909 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -"Cập nhật một số trường của một phản hồi hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một phản hồi hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:919 msgid "list all order–product relations (simple view)" @@ -844,8 +862,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1039 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:1064 msgid "list all vendors (simple view)" @@ -872,8 +890,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1102 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:1112 msgid "list all product images (simple view)" @@ -900,8 +918,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1154 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:1165 msgid "list all promo codes (simple view)" @@ -928,8 +946,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1203 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:1213 msgid "list all promotions (simple view)" @@ -956,8 +974,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1251 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:1261 msgid "list all stocks (simple view)" @@ -984,8 +1002,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1297 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/docs/drf/viewsets.py:1308 msgid "list all product tags (simple view)" @@ -1012,8 +1030,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1350 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không " -"thể chỉnh sửa." +"Cập nhật một số trường của một danh mục hiện có, giữ nguyên các trường không" +" thể chỉnh sửa." #: engine/core/elasticsearch/__init__.py:128 #: engine/core/elasticsearch/__init__.py:629 @@ -1199,7 +1217,8 @@ msgstr "" #: engine/core/graphene/mutations.py:249 engine/core/graphene/mutations.py:524 #: engine/core/graphene/mutations.py:573 engine/core/viewsets.py:753 msgid "wrong type came from order.buy() method: {type(instance)!s}" -msgstr "Loại sai đã được trả về từ phương thức order.buy(): {type(instance)!s}" +msgstr "" +"Loại sai đã được trả về từ phương thức order.buy(): {type(instance)!s}" #: engine/core/graphene/mutations.py:260 msgid "perform an action on a list of products in the order" @@ -1251,8 +1270,8 @@ msgstr "Đặt hàng" #: engine/core/graphene/mutations.py:542 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Vui lòng gửi các thuộc tính dưới dạng chuỗi được định dạng như sau: " "attr1=value1,attr2=value2" @@ -1274,9 +1293,9 @@ msgstr "Sản phẩm {order_product_uuid} không tìm thấy!" msgid "original address string provided by the user" msgstr "Dòng địa chỉ gốc do người dùng cung cấp" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1292,8 +1311,8 @@ msgstr "ElasticSearch - hoạt động rất tốt." #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "Thuộc tính" @@ -1326,10 +1345,12 @@ msgstr "Tỷ lệ phần trăm đánh dấu" #: engine/core/graphene/object_types.py:224 msgid "which attributes and values can be used for filtering this category." -msgstr "Các thuộc tính và giá trị nào có thể được sử dụng để lọc danh mục này." +msgstr "" +"Các thuộc tính và giá trị nào có thể được sử dụng để lọc danh mục này." #: engine/core/graphene/object_types.py:230 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Giá tối thiểu và tối đa cho các sản phẩm trong danh mục này, nếu có sẵn." @@ -1369,7 +1390,7 @@ msgid "represents feedback from a user." msgstr "Đại diện cho phản hồi từ người dùng." #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "Thông báo" @@ -1377,7 +1398,7 @@ msgstr "Thông báo" msgid "download url for this order product if applicable" msgstr "Tải xuống liên kết URL cho sản phẩm của đơn hàng này (nếu có)." -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "Phản hồi" @@ -1385,7 +1406,7 @@ msgstr "Phản hồi" msgid "a list of order products in this order" msgstr "Danh sách các sản phẩm trong đơn hàng này" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "Địa chỉ thanh toán" @@ -1414,7 +1435,7 @@ msgstr "" msgid "transactions for this order" msgstr "Giao dịch cho đơn hàng này" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "Đơn hàng" @@ -1431,7 +1452,7 @@ msgstr "Hình ảnh sản phẩm" msgid "category" msgstr "Thể loại" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "Phản hồi" @@ -1472,7 +1493,7 @@ msgstr "Sản phẩm chỉ dành cho đơn đặt hàng cá nhân." msgid "discount price" msgstr "Giá khuyến mãi" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "Sản phẩm" @@ -1484,7 +1505,7 @@ msgstr "Mã khuyến mãi" msgid "products on sale" msgstr "Sản phẩm đang khuyến mãi" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "Khuyến mãi" @@ -1492,7 +1513,7 @@ msgstr "Khuyến mãi" msgid "vendor" msgstr "Nhà cung cấp" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1500,11 +1521,11 @@ msgstr "Nhà cung cấp" msgid "product" msgstr "Sản phẩm" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "Sản phẩm đã thêm vào danh sách mong muốn" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "Danh sách mong muốn" @@ -1605,9 +1626,9 @@ msgid "" msgstr "" "Đại diện cho một nhóm các thuộc tính, có thể có cấu trúc phân cấp. Lớp này " "được sử dụng để quản lý và tổ chức các nhóm thuộc tính. Một nhóm thuộc tính " -"có thể có nhóm cha, tạo thành cấu trúc phân cấp. Điều này có thể hữu ích cho " -"việc phân loại và quản lý các thuộc tính một cách hiệu quả hơn trong một hệ " -"thống phức tạp." +"có thể có nhóm cha, tạo thành cấu trúc phân cấp. Điều này có thể hữu ích cho" +" việc phân loại và quản lý các thuộc tính một cách hiệu quả hơn trong một hệ" +" thống phức tạp." #: engine/core/models.py:88 msgid "parent of this group" @@ -1621,7 +1642,7 @@ msgstr "Nhóm thuộc tính cha" msgid "attribute group's name" msgstr "Tên nhóm thuộc tính" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "Nhóm thuộc tính" @@ -1640,8 +1661,8 @@ msgstr "" "dụng để định nghĩa và quản lý thông tin liên quan đến một nhà cung cấp bên " "ngoài. Nó lưu trữ tên của nhà cung cấp, thông tin xác thực cần thiết cho " "việc giao tiếp và tỷ lệ phần trăm chênh lệch giá áp dụng cho các sản phẩm " -"được lấy từ nhà cung cấp. Mô hình này cũng duy trì các metadata và ràng buộc " -"bổ sung, khiến nó phù hợp để sử dụng trong các hệ thống tương tác với các " +"được lấy từ nhà cung cấp. Mô hình này cũng duy trì các metadata và ràng buộc" +" bổ sung, khiến nó phù hợp để sử dụng trong các hệ thống tương tác với các " "nhà cung cấp bên thứ ba." #: engine/core/models.py:122 @@ -1695,11 +1716,11 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"Đại diện cho thẻ sản phẩm được sử dụng để phân loại hoặc nhận dạng sản phẩm. " -"Lớp ProductTag được thiết kế để nhận dạng và phân loại sản phẩm một cách duy " -"nhất thông qua sự kết hợp giữa mã định danh thẻ nội bộ và tên hiển thị thân " -"thiện với người dùng. Nó hỗ trợ các thao tác được xuất qua mixins và cung " -"cấp tùy chỉnh metadata cho mục đích quản trị." +"Đại diện cho thẻ sản phẩm được sử dụng để phân loại hoặc nhận dạng sản phẩm." +" Lớp ProductTag được thiết kế để nhận dạng và phân loại sản phẩm một cách " +"duy nhất thông qua sự kết hợp giữa mã định danh thẻ nội bộ và tên hiển thị " +"thân thiện với người dùng. Nó hỗ trợ các thao tác được xuất qua mixins và " +"cung cấp tùy chỉnh metadata cho mục đích quản trị." #: engine/core/models.py:204 engine/core/models.py:235 msgid "internal tag identifier for the product tag" @@ -1727,8 +1748,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"Đại diện cho thẻ danh mục được sử dụng cho sản phẩm. Lớp này mô hình hóa một " -"thẻ danh mục có thể được sử dụng để liên kết và phân loại sản phẩm. Nó bao " +"Đại diện cho thẻ danh mục được sử dụng cho sản phẩm. Lớp này mô hình hóa một" +" thẻ danh mục có thể được sử dụng để liên kết và phân loại sản phẩm. Nó bao " "gồm các thuộc tính cho mã định danh thẻ nội bộ và tên hiển thị thân thiện " "với người dùng." @@ -1752,13 +1773,13 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"Đại diện cho một thực thể danh mục để tổ chức và nhóm các mục liên quan theo " -"cấu trúc phân cấp. Các danh mục có thể có mối quan hệ phân cấp với các danh " -"mục khác, hỗ trợ mối quan hệ cha-con. Lớp này bao gồm các trường cho " +"Đại diện cho một thực thể danh mục để tổ chức và nhóm các mục liên quan theo" +" cấu trúc phân cấp. Các danh mục có thể có mối quan hệ phân cấp với các danh" +" mục khác, hỗ trợ mối quan hệ cha-con. Lớp này bao gồm các trường cho " "metadata và biểu diễn trực quan, làm nền tảng cho các tính năng liên quan " "đến danh mục. Lớp này thường được sử dụng để định nghĩa và quản lý các danh " -"mục sản phẩm hoặc các nhóm tương tự khác trong ứng dụng, cho phép người dùng " -"hoặc quản trị viên xác định tên, mô tả và cấu trúc phân cấp của các danh " +"mục sản phẩm hoặc các nhóm tương tự khác trong ứng dụng, cho phép người dùng" +" hoặc quản trị viên xác định tên, mô tả và cấu trúc phân cấp của các danh " "mục, cũng như gán các thuộc tính như hình ảnh, thẻ hoặc ưu tiên." #: engine/core/models.py:269 @@ -1811,10 +1832,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Đại diện cho một đối tượng Thương hiệu trong hệ thống. Lớp này quản lý thông " -"tin và thuộc tính liên quan đến một thương hiệu, bao gồm tên, logo, mô tả, " +"Đại diện cho một đối tượng Thương hiệu trong hệ thống. Lớp này quản lý thông" +" tin và thuộc tính liên quan đến một thương hiệu, bao gồm tên, logo, mô tả, " "các danh mục liên quan, một slug duy nhất và thứ tự ưu tiên. Nó cho phép tổ " "chức và hiển thị dữ liệu liên quan đến thương hiệu trong ứng dụng." @@ -1860,8 +1882,8 @@ msgstr "Các danh mục" #: engine/core/models.py:516 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1894,8 +1916,8 @@ msgstr "Giá bán" msgid "the product associated with this stock entry" msgstr "Sản phẩm liên quan đến mục hàng tồn kho này" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "Sản phẩm liên quan" @@ -1951,14 +1973,14 @@ msgid "" "product data and its associated information within an application." msgstr "" "Đại diện cho một sản phẩm có các thuộc tính như danh mục, thương hiệu, thẻ, " -"trạng thái kỹ thuật số, tên, mô tả, số phần và slug. Cung cấp các thuộc tính " -"tiện ích liên quan để truy xuất đánh giá, số lượng phản hồi, giá, số lượng " +"trạng thái kỹ thuật số, tên, mô tả, số phần và slug. Cung cấp các thuộc tính" +" tiện ích liên quan để truy xuất đánh giá, số lượng phản hồi, giá, số lượng " "và tổng số đơn hàng. Được thiết kế để sử dụng trong hệ thống quản lý thương " "mại điện tử hoặc quản lý kho hàng. Lớp này tương tác với các mô hình liên " "quan (như Danh mục, Thương hiệu và Thẻ Sản phẩm) và quản lý bộ nhớ đệm cho " -"các thuộc tính được truy cập thường xuyên để cải thiện hiệu suất. Nó được sử " -"dụng để định nghĩa và thao tác dữ liệu sản phẩm và thông tin liên quan trong " -"ứng dụng." +"các thuộc tính được truy cập thường xuyên để cải thiện hiệu suất. Nó được sử" +" dụng để định nghĩa và thao tác dữ liệu sản phẩm và thông tin liên quan " +"trong ứng dụng." #: engine/core/models.py:595 msgid "category this product belongs to" @@ -1998,7 +2020,7 @@ msgstr "Cung cấp một tên gọi rõ ràng để nhận diện sản phẩm." msgid "product name" msgstr "Tên sản phẩm" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "Thêm mô tả chi tiết về sản phẩm" @@ -2018,106 +2040,115 @@ msgstr "Số hiệu linh kiện" msgid "stock keeping unit for this product" msgstr "Đơn vị quản lý hàng tồn kho cho sản phẩm này" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "" +"Có nên xuất khẩu sản phẩm này sang các sàn thương mại điện tử hay không?" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "Xuất khẩu sang các sàn thương mại điện tử" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Đại diện cho một thuộc tính trong hệ thống. Lớp này được sử dụng để định " -"nghĩa và quản lý các thuộc tính, là các phần dữ liệu có thể tùy chỉnh có thể " -"được liên kết với các thực thể khác. Các thuộc tính có các danh mục, nhóm, " +"nghĩa và quản lý các thuộc tính, là các phần dữ liệu có thể tùy chỉnh có thể" +" được liên kết với các thực thể khác. Các thuộc tính có các danh mục, nhóm, " "loại giá trị và tên liên quan. Mô hình hỗ trợ nhiều loại giá trị, bao gồm " -"chuỗi, số nguyên, số thực, boolean, mảng và đối tượng. Điều này cho phép cấu " -"trúc dữ liệu động và linh hoạt." +"chuỗi, số nguyên, số thực, boolean, mảng và đối tượng. Điều này cho phép cấu" +" trúc dữ liệu động và linh hoạt." -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "Nhóm có thuộc tính này" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "Dây" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "Chính trực" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "Nổi" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "Boolean" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "Mảng" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "Đối tượng" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "Loại giá trị của thuộc tính" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "Kiểu giá trị" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "Tên của thuộc tính này" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "Tên thuộc tính" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "có thể lọc được" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "Xác định xem thuộc tính này có thể được sử dụng để lọc hay không." -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "Thuộc tính" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Đại diện cho một giá trị cụ thể của một thuộc tính được liên kết với một sản " -"phẩm. Nó liên kết 'thuộc tính' với một 'giá trị' duy nhất, cho phép tổ chức " -"tốt hơn và thể hiện động các đặc điểm của sản phẩm." +"Đại diện cho một giá trị cụ thể của một thuộc tính được liên kết với một sản" +" phẩm. Nó liên kết 'thuộc tính' với một 'giá trị' duy nhất, cho phép tổ chức" +" tốt hơn và thể hiện động các đặc điểm của sản phẩm." -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "Thuộc tính của giá trị này" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "Sản phẩm cụ thể liên quan đến giá trị của thuộc tính này" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "Giá trị cụ thể cho thuộc tính này" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2127,87 +2158,87 @@ msgstr "" "định thứ tự hiển thị của chúng. Nó cũng bao gồm tính năng truy cập với văn " "bản thay thế cho hình ảnh." -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "Cung cấp văn bản thay thế cho hình ảnh để đảm bảo tính khả dụng." -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "Nội dung thay thế cho hình ảnh" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "Tải lên tệp hình ảnh cho sản phẩm này." -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "Hình ảnh sản phẩm" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "Xác định thứ tự hiển thị của các hình ảnh." -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "Ưu tiên hiển thị" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "Sản phẩm mà hình ảnh này đại diện" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "Hình ảnh sản phẩm" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Đại diện cho một chiến dịch khuyến mãi cho các sản phẩm có giảm giá. Lớp này " -"được sử dụng để định nghĩa và quản lý các chiến dịch khuyến mãi cung cấp " +"Đại diện cho một chiến dịch khuyến mãi cho các sản phẩm có giảm giá. Lớp này" +" được sử dụng để định nghĩa và quản lý các chiến dịch khuyến mãi cung cấp " "giảm giá theo tỷ lệ phần trăm cho các sản phẩm. Lớp này bao gồm các thuộc " "tính để thiết lập tỷ lệ giảm giá, cung cấp chi tiết về chương trình khuyến " "mãi và liên kết nó với các sản phẩm áp dụng. Nó tích hợp với danh mục sản " "phẩm để xác định các mặt hàng bị ảnh hưởng trong chiến dịch." -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "Giảm giá theo phần trăm cho các sản phẩm đã chọn" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "Tỷ lệ giảm giá" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "Hãy đặt một tên duy nhất cho chương trình khuyến mãi này." -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "Tên chương trình khuyến mãi" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "Mô tả chương trình khuyến mãi" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "Chọn các sản phẩm được bao gồm trong chương trình khuyến mãi này." -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "Các sản phẩm được bao gồm" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "Khuyến mãi" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2215,64 +2246,64 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" "Đại diện cho danh sách mong muốn của người dùng để lưu trữ và quản lý các " -"sản phẩm mong muốn. Lớp này cung cấp các chức năng để quản lý bộ sưu tập sản " -"phẩm, hỗ trợ các thao tác như thêm và xóa sản phẩm, cũng như hỗ trợ các thao " -"tác thêm và xóa nhiều sản phẩm cùng lúc." +"sản phẩm mong muốn. Lớp này cung cấp các chức năng để quản lý bộ sưu tập sản" +" phẩm, hỗ trợ các thao tác như thêm và xóa sản phẩm, cũng như hỗ trợ các " +"thao tác thêm và xóa nhiều sản phẩm cùng lúc." -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "Các sản phẩm mà người dùng đã đánh dấu là mong muốn" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "Người dùng sở hữu danh sách mong muốn này" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "Chủ sở hữu Danh sách mong muốn" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "Danh sách mong muốn" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Đại diện cho một bản ghi tài liệu liên quan đến một sản phẩm. Lớp này được " "sử dụng để lưu trữ thông tin về các tài liệu liên quan đến các sản phẩm cụ " -"thể, bao gồm việc tải lên tệp và metadata của chúng. Nó chứa các phương thức " -"và thuộc tính để xử lý loại tệp và đường dẫn lưu trữ cho các tệp tài liệu. " -"Nó mở rộng chức năng từ các mixin cụ thể và cung cấp các tính năng tùy chỉnh " -"bổ sung." +"thể, bao gồm việc tải lên tệp và metadata của chúng. Nó chứa các phương thức" +" và thuộc tính để xử lý loại tệp và đường dẫn lưu trữ cho các tệp tài liệu. " +"Nó mở rộng chức năng từ các mixin cụ thể và cung cấp các tính năng tùy chỉnh" +" bổ sung." -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "Phim tài liệu" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "Phim tài liệu" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "Chưa được giải quyết" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Đại diện cho một thực thể địa chỉ bao gồm thông tin vị trí và mối quan hệ " "với người dùng. Cung cấp chức năng lưu trữ dữ liệu địa lý và địa chỉ, cũng " @@ -2283,59 +2314,59 @@ msgstr "" "lý hoặc kiểm tra thêm. Lớp này cũng cho phép liên kết địa chỉ với người " "dùng, giúp quản lý dữ liệu cá nhân hóa." -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "Địa chỉ của khách hàng" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "Dòng địa chỉ" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "Phố" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "Quận" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "Thành phố" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "Khu vực" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "Mã bưu chính" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "Quốc gia" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "Điểm định vị địa lý (Kinh độ, Vĩ độ)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "Phản hồi JSON đầy đủ từ dịch vụ định vị địa lý cho địa chỉ này" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "Phản hồi JSON được lưu trữ từ dịch vụ định vị địa lý" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "Địa chỉ" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "Địa chỉ" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2344,79 +2375,79 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"Đại diện cho một mã khuyến mãi có thể được sử dụng để giảm giá, quản lý thời " -"hạn hiệu lực, loại giảm giá và cách áp dụng. Lớp PromoCode lưu trữ thông tin " -"chi tiết về mã khuyến mãi, bao gồm mã định danh duy nhất, thuộc tính giảm " -"giá (số tiền hoặc phần trăm), thời hạn hiệu lực, người dùng liên kết (nếu " -"có) và trạng thái sử dụng. Nó bao gồm chức năng để xác thực và áp dụng mã " -"khuyến mãi vào đơn hàng đồng thời đảm bảo các điều kiện được đáp ứng." +"Đại diện cho một mã khuyến mãi có thể được sử dụng để giảm giá, quản lý thời" +" hạn hiệu lực, loại giảm giá và cách áp dụng. Lớp PromoCode lưu trữ thông " +"tin chi tiết về mã khuyến mãi, bao gồm mã định danh duy nhất, thuộc tính " +"giảm giá (số tiền hoặc phần trăm), thời hạn hiệu lực, người dùng liên kết " +"(nếu có) và trạng thái sử dụng. Nó bao gồm chức năng để xác thực và áp dụng " +"mã khuyến mãi vào đơn hàng đồng thời đảm bảo các điều kiện được đáp ứng." -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "Mã duy nhất mà người dùng sử dụng để đổi lấy ưu đãi giảm giá." -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "Mã khuyến mãi" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "Số tiền giảm giá cố định được áp dụng nếu không sử dụng phần trăm." -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "Số tiền giảm giá cố định" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "" "Giảm giá theo phần trăm sẽ được áp dụng nếu không sử dụng số tiền cố định." -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "Giảm giá theo phần trăm" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "Thời gian hết hạn của mã khuyến mãi" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "Thời hạn hiệu lực kết thúc" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "Thời gian bắt đầu hiệu lực của mã khuyến mãi này" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "Thời gian bắt đầu có hiệu lực" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "Thời gian sử dụng mã khuyến mãi, để trống nếu chưa được sử dụng." -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "Dấu thời gian sử dụng" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "Người dùng được gán mã khuyến mãi này (nếu có)." -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "Người dùng được chỉ định" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "Mã khuyến mãi" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "Mã khuyến mãi" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." @@ -2424,167 +2455,167 @@ msgstr "" "Chỉ nên định nghĩa một loại giảm giá (theo số tiền hoặc theo phần trăm), " "nhưng không nên định nghĩa cả hai hoặc không định nghĩa cả hai." -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "Mã khuyến mãi đã được sử dụng." -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "Loại giảm giá không hợp lệ cho mã khuyến mãi {self.uuid}!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Đại diện cho một đơn hàng được đặt bởi người dùng. Lớp này mô hình hóa một " "đơn hàng trong ứng dụng, bao gồm các thuộc tính khác nhau như thông tin " -"thanh toán và vận chuyển, trạng thái, người dùng liên quan, thông báo và các " -"thao tác liên quan. Đơn hàng có thể có các sản phẩm liên quan, áp dụng " +"thanh toán và vận chuyển, trạng thái, người dùng liên quan, thông báo và các" +" thao tác liên quan. Đơn hàng có thể có các sản phẩm liên quan, áp dụng " "khuyến mãi, thiết lập địa chỉ và cập nhật chi tiết vận chuyển hoặc thanh " "toán. Đồng thời, chức năng hỗ trợ quản lý các sản phẩm trong chu kỳ đời của " "đơn hàng." -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "Địa chỉ thanh toán được sử dụng cho đơn hàng này" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "Mã khuyến mãi tùy chọn đã được áp dụng cho đơn hàng này." -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "Đã áp dụng mã khuyến mãi" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "Địa chỉ giao hàng được sử dụng cho đơn hàng này" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "Địa chỉ giao hàng" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "Tình trạng hiện tại của đơn hàng trong chu kỳ đời sống của nó" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "Tình trạng đơn hàng" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "" "Cấu trúc JSON của thông báo hiển thị cho người dùng, trong giao diện quản " "trị (admin UI), chế độ xem bảng (table-view) được sử dụng." -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "Đại diện JSON của các thuộc tính đơn hàng cho đơn hàng này" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "Người dùng đã đặt đơn hàng" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "Người dùng" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "Thời gian ghi nhận khi đơn hàng được hoàn tất" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "Mua thời gian" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "Một định danh dễ đọc cho đơn hàng" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "ID dễ đọc cho con người" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "Đặt hàng" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "" "Một người dùng chỉ được phép có một lệnh chờ duy nhất tại một thời điểm!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "" "Bạn không thể thêm sản phẩm vào đơn hàng không phải là đơn hàng đang chờ xử " "lý." -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "Bạn không thể thêm các sản phẩm không hoạt động vào đơn hàng." -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "Bạn không thể thêm nhiều sản phẩm hơn số lượng hiện có trong kho." -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -"Bạn không thể xóa sản phẩm khỏi một đơn hàng không phải là đơn hàng đang chờ " -"xử lý." +"Bạn không thể xóa sản phẩm khỏi một đơn hàng không phải là đơn hàng đang chờ" +" xử lý." -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "{name} không tồn tại với truy vấn <{query}>!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "Mã khuyến mãi không tồn tại" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "" "Bạn chỉ có thể mua các sản phẩm vật lý có địa chỉ giao hàng được chỉ định!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "Địa chỉ không tồn tại" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "Bạn không thể mua hàng vào lúc này, vui lòng thử lại sau vài phút." -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "Giá trị lực không hợp lệ" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "Bạn không thể đặt hàng trống!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "Bạn không thể đặt hàng mà không có tài khoản người dùng!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "Người dùng không có số dư không thể mua bằng số dư!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "Không đủ số tiền để hoàn tất đơn hàng." -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" @@ -2593,7 +2624,7 @@ msgstr "" "sau: tên khách hàng, địa chỉ email của khách hàng, số điện thoại của khách " "hàng." -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" @@ -2601,7 +2632,7 @@ msgstr "" "Phương thức thanh toán không hợp lệ: {payment_method} từ " "{available_payment_methods}!" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2610,39 +2641,40 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "Quản lý phản hồi của người dùng về sản phẩm. Lớp này được thiết kế để thu " -"thập và lưu trữ phản hồi của người dùng về các sản phẩm cụ thể mà họ đã mua. " -"Nó bao gồm các thuộc tính để lưu trữ bình luận của người dùng, tham chiếu " -"đến sản phẩm liên quan trong đơn hàng và đánh giá do người dùng gán. Lớp này " -"sử dụng các trường cơ sở dữ liệu để mô hình hóa và quản lý dữ liệu phản hồi " -"một cách hiệu quả." +"thập và lưu trữ phản hồi của người dùng về các sản phẩm cụ thể mà họ đã mua." +" Nó bao gồm các thuộc tính để lưu trữ bình luận của người dùng, tham chiếu " +"đến sản phẩm liên quan trong đơn hàng và đánh giá do người dùng gán. Lớp này" +" sử dụng các trường cơ sở dữ liệu để mô hình hóa và quản lý dữ liệu phản hồi" +" một cách hiệu quả." -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "" "Những bình luận do người dùng cung cấp về trải nghiệm của họ với sản phẩm" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "Phản hồi" -#: engine/core/models.py:1827 -msgid "references the specific product in an order that this feedback is about" +#: engine/core/models.py:1834 +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" "Tham chiếu đến sản phẩm cụ thể trong đơn hàng mà phản hồi này đề cập đến." -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "Sản phẩm liên quan đến đơn hàng" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "Đánh giá do người dùng gán cho sản phẩm" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "Đánh giá sản phẩm" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2664,128 +2696,128 @@ msgstr "" "kỹ thuật số. Mô hình này tích hợp với các mô hình Order và Product và lưu " "trữ tham chiếu đến chúng." -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "Giá mà khách hàng phải trả cho sản phẩm này tại thời điểm mua hàng." -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "Giá mua tại thời điểm đặt hàng" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "Nhận xét nội bộ dành cho quản trị viên về sản phẩm đã đặt hàng này" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "Nhận xét nội bộ" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "Thông báo cho người dùng" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "Đại diện JSON của các thuộc tính của mục này" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "Thuộc tính sản phẩm đã đặt hàng" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "Tham chiếu đến đơn hàng chính chứa sản phẩm này." -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "Đơn đặt hàng của phụ huynh" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "Sản phẩm cụ thể liên quan đến dòng đơn hàng này" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "Số lượng sản phẩm cụ thể này trong đơn hàng" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "Số lượng sản phẩm" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "Tình trạng hiện tại của sản phẩm này trong đơn hàng" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "Tình trạng dòng sản phẩm" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "Sản phẩm đặt hàng phải có đơn hàng liên quan!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "Hành động sai được chỉ định cho phản hồi: {action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "Bạn không thể phản hồi đơn hàng mà bạn chưa nhận được." -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "Tên" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "Đường dẫn URL của tích hợp" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "Thông tin xác thực" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "Bạn chỉ có thể có một nhà cung cấp CRM mặc định." -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "Hệ thống Quản lý Quan hệ Khách hàng" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "Hệ thống Quản lý Quan hệ Khách hàng (CR" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "Liên kết CRM của đơn hàng" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "Liên kết CRM của đơn hàng" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Đại diện cho chức năng tải xuống các tài sản kỹ thuật số liên quan đến đơn " -"hàng. Lớp DigitalAssetDownload cung cấp khả năng quản lý và truy cập các tệp " -"tải xuống liên quan đến sản phẩm trong đơn hàng. Nó lưu trữ thông tin về sản " -"phẩm trong đơn hàng liên quan, số lần tải xuống và liệu tài sản có hiển thị " -"công khai hay không. Nó bao gồm một phương thức để tạo URL tải xuống tài sản " -"khi đơn hàng liên quan ở trạng thái đã hoàn thành." +"hàng. Lớp DigitalAssetDownload cung cấp khả năng quản lý và truy cập các tệp" +" tải xuống liên quan đến sản phẩm trong đơn hàng. Nó lưu trữ thông tin về " +"sản phẩm trong đơn hàng liên quan, số lần tải xuống và liệu tài sản có hiển " +"thị công khai hay không. Nó bao gồm một phương thức để tạo URL tải xuống tài" +" sản khi đơn hàng liên quan ở trạng thái đã hoàn thành." -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "Tải xuống" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "Tải xuống" @@ -2987,8 +3019,7 @@ msgstr "Xin chào %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Cảm ơn quý khách đã đặt hàng #%(order.pk)s! Chúng tôi vui mừng thông báo " @@ -3017,8 +3048,8 @@ msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -"Nếu bạn có bất kỳ câu hỏi nào, vui lòng liên hệ với bộ phận hỗ trợ của chúng " -"tôi tại %(config.EMAIL_HOST_USER)s." +"Nếu bạn có bất kỳ câu hỏi nào, vui lòng liên hệ với bộ phận hỗ trợ của chúng" +" tôi tại %(config.EMAIL_HOST_USER)s." #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -3068,8 +3099,8 @@ msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Nếu bạn có bất kỳ câu hỏi nào, vui lòng liên hệ với bộ phận hỗ trợ của chúng " -"tôi tại %(contact_email)s." +"Nếu bạn có bất kỳ câu hỏi nào, vui lòng liên hệ với bộ phận hỗ trợ của chúng" +" tôi tại %(contact_email)s." #: engine/core/templates/digital_order_delivered_email.html:165 #: engine/core/templates/promocode_granted_email.html:108 @@ -3095,14 +3126,13 @@ msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -"Cảm ơn quý khách đã đồng hành cùng chúng tôi! Chúng tôi đã cấp cho quý khách " -"một mã khuyến mãi cho" +"Cảm ơn quý khách đã đồng hành cùng chúng tôi! Chúng tôi đã cấp cho quý khách" +" một mã khuyến mãi cho" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Cảm ơn quý khách đã đặt hàng! Chúng tôi rất vui được xác nhận đơn hàng của " @@ -3228,20 +3258,18 @@ msgstr "Xử lý các truy vấn tìm kiếm toàn cầu." #: engine/core/views.py:289 msgid "Handles the logic of buying as a business without registration." msgstr "" -"Xử lý logic của việc mua hàng như một hoạt động kinh doanh mà không cần đăng " -"ký." +"Xử lý logic của việc mua hàng như một hoạt động kinh doanh mà không cần đăng" +" ký." #: engine/core/views.py:337 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Xử lý việc tải xuống tài sản kỹ thuật số liên quan đến một đơn hàng. Chức " -"năng này cố gắng cung cấp tệp tài sản kỹ thuật số được lưu trữ trong thư mục " -"lưu trữ của dự án. Nếu tệp không được tìm thấy, một lỗi HTTP 404 sẽ được trả " -"về để thông báo rằng tài nguyên không khả dụng." +"năng này cố gắng cung cấp tệp tài sản kỹ thuật số được lưu trữ trong thư mục" +" lưu trữ của dự án. Nếu tệp không được tìm thấy, một lỗi HTTP 404 sẽ được " +"trả về để thông báo rằng tài nguyên không khả dụng." #: engine/core/views.py:348 msgid "order_product_uuid is required" @@ -3257,7 +3285,8 @@ msgstr "Bạn chỉ có thể tải xuống tài sản kỹ thuật số một l #: engine/core/views.py:362 msgid "the order must be paid before downloading the digital asset" -msgstr "Đơn hàng phải được thanh toán trước khi tải xuống tài sản kỹ thuật số." +msgstr "" +"Đơn hàng phải được thanh toán trước khi tải xuống tài sản kỹ thuật số." #: engine/core/views.py:369 msgid "the order product does not have a product" @@ -3270,28 +3299,27 @@ msgstr "Biểu tượng trang web không tìm thấy" #: engine/core/views.py:418 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Xử lý yêu cầu về biểu tượng favicon của một trang web. Chức năng này cố gắng " -"cung cấp tệp favicon nằm trong thư mục tĩnh của dự án. Nếu tệp favicon không " -"được tìm thấy, một lỗi HTTP 404 sẽ được trả về để thông báo rằng tài nguyên " -"không khả dụng." +"Xử lý yêu cầu về biểu tượng favicon của một trang web. Chức năng này cố gắng" +" cung cấp tệp favicon nằm trong thư mục tĩnh của dự án. Nếu tệp favicon " +"không được tìm thấy, một lỗi HTTP 404 sẽ được trả về để thông báo rằng tài " +"nguyên không khả dụng." #: engine/core/views.py:432 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"Chuyển hướng yêu cầu đến trang chỉ mục quản trị. Chức năng này xử lý các yêu " -"cầu HTTP đến và chuyển hướng chúng đến trang chỉ mục giao diện quản trị " -"Django. Nó sử dụng hàm `redirect` của Django để xử lý việc chuyển hướng HTTP." +"Chuyển hướng yêu cầu đến trang chỉ mục quản trị. Chức năng này xử lý các yêu" +" cầu HTTP đến và chuyển hướng chúng đến trang chỉ mục giao diện quản trị " +"Django. Nó sử dụng hàm `redirect` của Django để xử lý việc chuyển hướng " +"HTTP." #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "Trả về phiên bản hiện tại của eVibes." +msgid "Returns current version of the Schon. " +msgstr "Trả về phiên bản hiện tại của Schon." #: engine/core/views.py:674 engine/core/views.py:689 #, python-format @@ -3304,30 +3332,31 @@ msgstr "Trả về các biến tùy chỉnh cho Bảng điều khiển." #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" "Xác định một tập hợp xem (viewset) để quản lý các thao tác liên quan đến " -"Evibes. Lớp EvibesViewSet kế thừa từ ModelViewSet và cung cấp các chức năng " -"để xử lý các hành động và thao tác trên các thực thể Evibes. Nó bao gồm hỗ " -"trợ cho các lớp serializer động dựa trên hành động hiện tại, quyền truy cập " -"có thể tùy chỉnh và các định dạng hiển thị." +"schon. Lớp schonViewSet kế thừa từ ModelViewSet và cung cấp các chức năng để" +" xử lý các hành động và thao tác trên các thực thể schon. Nó bao gồm hỗ trợ " +"cho các lớp serializer động dựa trên hành động hiện tại, quyền truy cập có " +"thể tùy chỉnh và các định dạng hiển thị." #: engine/core/viewsets.py:160 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Đại diện cho một tập hợp các đối tượng để quản lý các đối tượng " "AttributeGroup. Xử lý các thao tác liên quan đến AttributeGroup, bao gồm " -"lọc, serialization và truy xuất dữ liệu. Lớp này là một phần của lớp API của " -"ứng dụng và cung cấp một cách chuẩn hóa để xử lý yêu cầu và phản hồi cho dữ " -"liệu AttributeGroup." +"lọc, serialization và truy xuất dữ liệu. Lớp này là một phần của lớp API của" +" ứng dụng và cung cấp một cách chuẩn hóa để xử lý yêu cầu và phản hồi cho dữ" +" liệu AttributeGroup." #: engine/core/viewsets.py:179 msgid "" @@ -3341,17 +3370,17 @@ msgstr "" "Quản lý các thao tác liên quan đến các đối tượng thuộc tính (Attribute) " "trong ứng dụng. Cung cấp một bộ các điểm cuối API để tương tác với dữ liệu " "thuộc tính. Lớp này quản lý việc truy vấn, lọc và serialization của các đối " -"tượng thuộc tính, cho phép kiểm soát động đối với dữ liệu được trả về, chẳng " -"hạn như lọc theo các trường cụ thể hoặc lấy thông tin chi tiết so với thông " -"tin đơn giản tùy thuộc vào yêu cầu." +"tượng thuộc tính, cho phép kiểm soát động đối với dữ liệu được trả về, chẳng" +" hạn như lọc theo các trường cụ thể hoặc lấy thông tin chi tiết so với thông" +" tin đơn giản tùy thuộc vào yêu cầu." #: engine/core/viewsets.py:198 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Bộ xem (viewset) để quản lý các đối tượng AttributeValue. Bộ xem này cung " "cấp các chức năng để liệt kê, truy xuất, tạo, cập nhật và xóa các đối tượng " @@ -3390,7 +3419,7 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." @@ -3398,7 +3427,7 @@ msgstr "" "Quản lý các hoạt động liên quan đến mô hình `Product` trong hệ thống. Lớp " "này cung cấp một tập hợp các phương thức (viewset) để quản lý sản phẩm, bao " "gồm lọc, serialization và các thao tác trên các thực thể cụ thể. Nó kế thừa " -"từ `EvibesViewSet` để sử dụng các chức năng chung và tích hợp với khung làm " +"từ `schonViewSet` để sử dụng các chức năng chung và tích hợp với khung làm " "việc Django REST để thực hiện các thao tác API RESTful. Bao gồm các phương " "thức để lấy thông tin chi tiết về sản phẩm, áp dụng quyền truy cập và truy " "cập phản hồi liên quan đến sản phẩm." @@ -3423,8 +3452,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Đại diện cho tập hợp các đối tượng Feedback. Lớp này quản lý các thao tác " @@ -3432,20 +3461,20 @@ msgstr "" "tiết. Mục đích của tập hợp này là cung cấp các trình serializer khác nhau " "cho các hành động khác nhau và thực hiện xử lý dựa trên quyền truy cập đối " "với các đối tượng Feedback có thể truy cập. Nó kế thừa từ lớp cơ sở " -"`EvibesViewSet` và sử dụng hệ thống lọc của Django để truy vấn dữ liệu." +"`schonViewSet` và sử dụng hệ thống lọc của Django để truy vấn dữ liệu." #: engine/core/viewsets.py:652 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"ViewSet để quản lý đơn hàng và các hoạt động liên quan. Lớp này cung cấp các " -"chức năng để truy xuất, sửa đổi và quản lý các đối tượng đơn hàng. Nó bao " +"ViewSet để quản lý đơn hàng và các hoạt động liên quan. Lớp này cung cấp các" +" chức năng để truy xuất, sửa đổi và quản lý các đối tượng đơn hàng. Nó bao " "gồm các điểm cuối (endpoint) khác nhau để xử lý các hoạt động liên quan đến " "đơn hàng như thêm hoặc xóa sản phẩm, thực hiện giao dịch mua hàng cho cả " "người dùng đã đăng ký và chưa đăng ký, cũng như truy xuất các đơn hàng đang " @@ -3457,8 +3486,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Cung cấp một bộ xem (viewset) để quản lý các thực thể OrderProduct. Bộ xem " @@ -3492,8 +3521,8 @@ msgstr "Quản lý các hoạt động liên quan đến dữ liệu kho trong h msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3501,10 +3530,10 @@ msgstr "" "Bộ công cụ ViewSet để quản lý các thao tác liên quan đến Danh sách mong " "muốn. Bộ công cụ WishlistViewSet cung cấp các điểm cuối để tương tác với " "danh sách mong muốn của người dùng, cho phép truy xuất, chỉnh sửa và tùy " -"chỉnh các sản phẩm trong danh sách mong muốn. Bộ công cụ này hỗ trợ các chức " -"năng như thêm, xóa và thực hiện các thao tác hàng loạt đối với các sản phẩm " -"trong danh sách mong muốn. Các kiểm tra quyền truy cập được tích hợp để đảm " -"bảo rằng người dùng chỉ có thể quản lý danh sách mong muốn của chính mình " +"chỉnh các sản phẩm trong danh sách mong muốn. Bộ công cụ này hỗ trợ các chức" +" năng như thêm, xóa và thực hiện các thao tác hàng loạt đối với các sản phẩm" +" trong danh sách mong muốn. Các kiểm tra quyền truy cập được tích hợp để đảm" +" bảo rằng người dùng chỉ có thể quản lý danh sách mong muốn của chính mình " "trừ khi được cấp quyền rõ ràng." #: engine/core/viewsets.py:1183 @@ -3516,8 +3545,8 @@ msgid "" "on the request context." msgstr "" "Lớp này cung cấp chức năng viewset để quản lý các đối tượng `Address`. Lớp " -"AddressViewSet cho phép thực hiện các thao tác CRUD, lọc dữ liệu và các hành " -"động tùy chỉnh liên quan đến các thực thể địa chỉ. Nó bao gồm các hành vi " +"AddressViewSet cho phép thực hiện các thao tác CRUD, lọc dữ liệu và các hành" +" động tùy chỉnh liên quan đến các thực thể địa chỉ. Nó bao gồm các hành vi " "chuyên biệt cho các phương thức HTTP khác nhau, các tùy chỉnh serializer và " "xử lý quyền truy cập dựa trên bối cảnh yêu cầu." @@ -3534,8 +3563,8 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"Xử lý các tác vụ liên quan đến Thẻ Sản phẩm trong ứng dụng. Lớp này cung cấp " -"chức năng để truy xuất, lọc và serialize các đối tượng Thẻ Sản phẩm. Nó hỗ " +"Xử lý các tác vụ liên quan đến Thẻ Sản phẩm trong ứng dụng. Lớp này cung cấp" +" chức năng để truy xuất, lọc và serialize các đối tượng Thẻ Sản phẩm. Nó hỗ " "trợ lọc linh hoạt trên các thuộc tính cụ thể bằng cách sử dụng backend lọc " "được chỉ định và động sử dụng các serializer khác nhau tùy thuộc vào hành " "động đang thực hiện." diff --git a/engine/core/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/core/locale/zh_Hans/LC_MESSAGES/django.mo index 61304a55..42f721f0 100644 Binary files a/engine/core/locale/zh_Hans/LC_MESSAGES/django.mo and b/engine/core/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/engine/core/locale/zh_Hans/LC_MESSAGES/django.po b/engine/core/locale/zh_Hans/LC_MESSAGES/django.po index a712b466..2992ce1a 100644 --- a/engine/core/locale/zh_Hans/LC_MESSAGES/django.po +++ b/engine/core/locale/zh_Hans/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-01-04 19:25+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -73,7 +73,7 @@ msgstr "时间戳" #: engine/core/admin.py:158 #, python-format -msgid "activate selected %(verbose_name_plural)s" +msgid "Activate selected %(verbose_name_plural)s" msgstr "激活选定的 %(verbose_name_plural)s" #: engine/core/admin.py:166 @@ -82,7 +82,7 @@ msgstr "所选项目已激活!" #: engine/core/admin.py:174 #, python-format -msgid "deactivate selected %(verbose_name_plural)s" +msgid "Deactivate selected %(verbose_name_plural)s" msgstr "停用选定的 %(verbose_name_plural)s" #: engine/core/admin.py:184 @@ -90,13 +90,13 @@ msgid "selected items have been deactivated." msgstr "选定项目已停用!" #: engine/core/admin.py:196 engine/core/graphene/object_types.py:653 -#: engine/core/graphene/object_types.py:660 engine/core/models.py:825 -#: engine/core/models.py:833 +#: engine/core/graphene/object_types.py:660 engine/core/models.py:832 +#: engine/core/models.py:840 msgid "attribute value" msgstr "属性值" #: engine/core/admin.py:197 engine/core/graphene/object_types.py:77 -#: engine/core/models.py:834 +#: engine/core/models.py:841 msgid "attribute values" msgstr "属性值" @@ -116,12 +116,12 @@ msgstr "库存" msgid "stocks" msgstr "股票" -#: engine/core/admin.py:232 engine/core/models.py:1931 +#: engine/core/admin.py:232 engine/core/models.py:1938 msgid "order product" msgstr "订购产品" #: engine/core/admin.py:233 engine/core/graphene/object_types.py:441 -#: engine/core/models.py:1932 +#: engine/core/models.py:1939 msgid "order products" msgstr "订购产品" @@ -129,7 +129,31 @@ msgstr "订购产品" msgid "children" msgstr "儿童" -#: engine/core/admin.py:1064 +#: engine/core/admin.py:528 +msgid "has images" +msgstr "图片" + +#: engine/core/admin.py:531 +#, python-format +msgid "Export selected %(verbose_name_plural)s to marketplaces' feeds" +msgstr "激活选定的 %(verbose_name_plural)s" + +#: engine/core/admin.py:542 +#, python-format +msgid "selected %(verbose_name_plural)s have been marked for export." +msgstr "激活选定的 %(verbose_name_plural)s" + +#: engine/core/admin.py:553 +#, python-format +msgid "Ban selected %(verbose_name_plural)s from marketplaces' feeds" +msgstr "激活选定的 %(verbose_name_plural)s" + +#: engine/core/admin.py:564 +#, python-format +msgid "selected %(verbose_name_plural)s have been banned from export." +msgstr "激活选定的 %(verbose_name_plural)s" + +#: engine/core/admin.py:1116 msgid "Config" msgstr "配置" @@ -1161,9 +1185,9 @@ msgstr "未找到订购产品 {order_product_uuid}!" msgid "original address string provided by the user" msgstr "用户提供的原始地址字符串" -#: engine/core/graphene/mutations.py:653 engine/core/models.py:979 -#: engine/core/models.py:992 engine/core/models.py:1436 -#: engine/core/models.py:1467 engine/core/models.py:1498 +#: engine/core/graphene/mutations.py:653 engine/core/models.py:986 +#: engine/core/models.py:999 engine/core/models.py:1443 +#: engine/core/models.py:1474 engine/core/models.py:1505 #: engine/core/viewsets.py:760 #, python-brace-format msgid "{name} does not exist: {uuid}" @@ -1179,8 +1203,8 @@ msgstr "ElasticSearch - 工作起来得心应手" #: engine/core/graphene/object_types.py:84 #: engine/core/graphene/object_types.py:420 -#: engine/core/graphene/object_types.py:471 engine/core/models.py:796 -#: engine/core/models.py:1290 engine/core/models.py:2022 +#: engine/core/graphene/object_types.py:471 engine/core/models.py:803 +#: engine/core/models.py:1297 engine/core/models.py:2033 msgid "attributes" msgstr "属性" @@ -1254,7 +1278,7 @@ msgid "represents feedback from a user." msgstr "代表用户的反馈意见。" #: engine/core/graphene/object_types.py:421 -#: engine/core/graphene/object_types.py:472 engine/core/models.py:1284 +#: engine/core/graphene/object_types.py:472 engine/core/models.py:1291 msgid "notifications" msgstr "通知" @@ -1262,7 +1286,7 @@ msgstr "通知" msgid "download url for this order product if applicable" msgstr "此订单产品的下载网址(如适用" -#: engine/core/graphene/object_types.py:425 engine/core/models.py:1849 +#: engine/core/graphene/object_types.py:425 engine/core/models.py:1856 msgid "feedback" msgstr "反馈意见" @@ -1270,7 +1294,7 @@ msgstr "反馈意见" msgid "a list of order products in this order" msgstr "该订单中的订单产品列表" -#: engine/core/graphene/object_types.py:461 engine/core/models.py:1254 +#: engine/core/graphene/object_types.py:461 engine/core/models.py:1261 msgid "billing address" msgstr "账单地址" @@ -1296,7 +1320,7 @@ msgstr "订单中的所有产品都是数字产品吗?" msgid "transactions for this order" msgstr "此订单的交易" -#: engine/core/graphene/object_types.py:494 engine/core/models.py:1318 +#: engine/core/graphene/object_types.py:494 engine/core/models.py:1325 msgid "orders" msgstr "订单" @@ -1313,7 +1337,7 @@ msgstr "产品图片" msgid "category" msgstr "类别" -#: engine/core/graphene/object_types.py:531 engine/core/models.py:1850 +#: engine/core/graphene/object_types.py:531 engine/core/models.py:1857 msgid "feedbacks" msgstr "反馈意见" @@ -1354,7 +1378,7 @@ msgstr "仅限个人订购的产品" msgid "discount price" msgstr "折扣价" -#: engine/core/graphene/object_types.py:568 engine/core/models.py:677 +#: engine/core/graphene/object_types.py:568 engine/core/models.py:682 msgid "products" msgstr "产品" @@ -1366,7 +1390,7 @@ msgstr "促销代码" msgid "products on sale" msgstr "销售产品" -#: engine/core/graphene/object_types.py:701 engine/core/models.py:928 +#: engine/core/graphene/object_types.py:701 engine/core/models.py:935 msgid "promotions" msgstr "促销活动" @@ -1374,7 +1398,7 @@ msgstr "促销活动" msgid "vendor" msgstr "供应商" -#: engine/core/graphene/object_types.py:706 engine/core/models.py:676 +#: engine/core/graphene/object_types.py:706 engine/core/models.py:681 #: engine/core/templates/digital_order_created_email.html:109 #: engine/core/templates/digital_order_delivered_email.html:107 #: engine/core/templates/shipped_order_created_email.html:107 @@ -1382,11 +1406,11 @@ msgstr "供应商" msgid "product" msgstr "产品" -#: engine/core/graphene/object_types.py:718 engine/core/models.py:951 +#: engine/core/graphene/object_types.py:718 engine/core/models.py:958 msgid "wishlisted products" msgstr "心愿单上的产品" -#: engine/core/graphene/object_types.py:725 engine/core/models.py:968 +#: engine/core/graphene/object_types.py:725 engine/core/models.py:975 msgid "wishlists" msgstr "愿望清单" @@ -1498,7 +1522,7 @@ msgstr "父属性组" msgid "attribute group's name" msgstr "属性组名称" -#: engine/core/models.py:102 engine/core/models.py:756 +#: engine/core/models.py:102 engine/core/models.py:763 msgid "attribute group" msgstr "属性组" @@ -1740,8 +1764,8 @@ msgstr "销售价格" msgid "the product associated with this stock entry" msgstr "与该库存条目相关的产品" -#: engine/core/models.py:540 engine/core/models.py:821 -#: engine/core/models.py:867 engine/core/models.py:1905 +#: engine/core/models.py:540 engine/core/models.py:828 +#: engine/core/models.py:874 engine/core/models.py:1912 msgid "associated product" msgstr "相关产品" @@ -1835,7 +1859,7 @@ msgstr "为产品提供一个明确的标识名称" msgid "product name" msgstr "产品名称" -#: engine/core/models.py:638 engine/core/models.py:916 +#: engine/core/models.py:638 engine/core/models.py:923 msgid "add a detailed description of the product" msgstr "添加产品的详细描述" @@ -1855,7 +1879,15 @@ msgstr "部件编号" msgid "stock keeping unit for this product" msgstr "该产品的库存单位" -#: engine/core/models.py:742 +#: engine/core/models.py:673 +msgid "whether to export this product to marketplaces" +msgstr "是否将此产品出口至市场" + +#: engine/core/models.py:674 +msgid "Export to Marketplaces" +msgstr "导出至市场平台" + +#: engine/core/models.py:749 msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " @@ -1866,83 +1898,83 @@ msgid "" msgstr "" "代表系统中的一个属性。该类用于定义和管理属性,属性是可与其他实体关联的自定义数据块。属性有相关的类别、组、值类型和名称。该模型支持多种类型的值,包括字符串、整数、浮点数、布尔值、数组和对象。这样就可以实现动态、灵活的数据结构。" -#: engine/core/models.py:755 +#: engine/core/models.py:762 msgid "group of this attribute" msgstr "该属性的组" -#: engine/core/models.py:761 +#: engine/core/models.py:768 msgid "string" msgstr "字符串" -#: engine/core/models.py:762 +#: engine/core/models.py:769 msgid "integer" msgstr "整数" -#: engine/core/models.py:763 +#: engine/core/models.py:770 msgid "float" msgstr "浮动" -#: engine/core/models.py:764 +#: engine/core/models.py:771 msgid "boolean" msgstr "布尔型" -#: engine/core/models.py:765 +#: engine/core/models.py:772 msgid "array" msgstr "阵列" -#: engine/core/models.py:766 +#: engine/core/models.py:773 msgid "object" msgstr "对象" -#: engine/core/models.py:768 +#: engine/core/models.py:775 msgid "type of the attribute's value" msgstr "属性值的类型" -#: engine/core/models.py:769 +#: engine/core/models.py:776 msgid "value type" msgstr "价值类型" -#: engine/core/models.py:774 +#: engine/core/models.py:781 msgid "name of this attribute" msgstr "该属性的名称" -#: engine/core/models.py:775 +#: engine/core/models.py:782 msgid "attribute's name" msgstr "属性名称" -#: engine/core/models.py:780 +#: engine/core/models.py:787 msgid "is filterable" msgstr "可过滤" -#: engine/core/models.py:782 +#: engine/core/models.py:789 msgid "designates whether this attribute can be used for filtering or not" msgstr "指定该属性是否可用于筛选" -#: engine/core/models.py:795 engine/core/models.py:813 +#: engine/core/models.py:802 engine/core/models.py:820 #: engine/core/templates/digital_order_delivered_email.html:134 msgid "attribute" msgstr "属性" -#: engine/core/models.py:801 +#: engine/core/models.py:808 msgid "" "Represents a specific value for an attribute that is linked to a product. It" " links the 'attribute' to a unique 'value', allowing better organization and" " dynamic representation of product characteristics." msgstr "代表与产品相关联的属性的特定值。它将 \"属性 \"与唯一的 \"值 \"联系起来,从而更好地组织和动态呈现产品特征。" -#: engine/core/models.py:812 +#: engine/core/models.py:819 msgid "attribute of this value" msgstr "该值的属性" -#: engine/core/models.py:820 +#: engine/core/models.py:827 msgid "the specific product associated with this attribute's value" msgstr "与该属性值相关的特定产品" -#: engine/core/models.py:826 +#: engine/core/models.py:833 msgid "the specific value for this attribute" msgstr "该属性的具体值" -#: engine/core/models.py:839 +#: engine/core/models.py:846 msgid "" "Represents a product image associated with a product in the system. This " "class is designed to manage images for products, including functionality for" @@ -1952,39 +1984,39 @@ msgid "" msgstr "" "代表与系统中产品相关联的产品图片。该类用于管理产品图片,包括上传图片文件、将图片与特定产品关联以及确定图片显示顺序等功能。它还包括一个为图像提供替代文本的可访问性功能。" -#: engine/core/models.py:850 +#: engine/core/models.py:857 msgid "provide alternative text for the image for accessibility" msgstr "为图像提供替代文字,以便于访问" -#: engine/core/models.py:851 +#: engine/core/models.py:858 msgid "image alt text" msgstr "图片 alt 文本" -#: engine/core/models.py:854 +#: engine/core/models.py:861 msgid "upload the image file for this product" msgstr "上传该产品的图片文件" -#: engine/core/models.py:855 engine/core/models.py:886 +#: engine/core/models.py:862 engine/core/models.py:893 msgid "product image" msgstr "产品图片" -#: engine/core/models.py:860 +#: engine/core/models.py:867 msgid "determines the order in which images are displayed" msgstr "确定图像的显示顺序" -#: engine/core/models.py:861 +#: engine/core/models.py:868 msgid "display priority" msgstr "显示优先级" -#: engine/core/models.py:866 +#: engine/core/models.py:873 msgid "the product that this image represents" msgstr "该图片所代表的产品" -#: engine/core/models.py:887 +#: engine/core/models.py:894 msgid "product images" msgstr "产品图片" -#: engine/core/models.py:892 +#: engine/core/models.py:899 msgid "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" @@ -1995,39 +2027,39 @@ msgid "" msgstr "" "代表有折扣的产品促销活动。该类用于定义和管理为产品提供百分比折扣的促销活动。该类包括用于设置折扣率、提供促销详情以及将其链接到适用产品的属性。它与产品目录集成,以确定促销活动中受影响的产品。" -#: engine/core/models.py:904 +#: engine/core/models.py:911 msgid "percentage discount for the selected products" msgstr "所选产品的折扣百分比" -#: engine/core/models.py:905 +#: engine/core/models.py:912 msgid "discount percentage" msgstr "折扣百分比" -#: engine/core/models.py:910 +#: engine/core/models.py:917 msgid "provide a unique name for this promotion" msgstr "为该促销活动提供一个独特的名称" -#: engine/core/models.py:911 +#: engine/core/models.py:918 msgid "promotion name" msgstr "推广名称" -#: engine/core/models.py:917 +#: engine/core/models.py:924 msgid "promotion description" msgstr "促销说明" -#: engine/core/models.py:922 +#: engine/core/models.py:929 msgid "select which products are included in this promotion" msgstr "选择促销活动包括哪些产品" -#: engine/core/models.py:923 +#: engine/core/models.py:930 msgid "included products" msgstr "包括产品" -#: engine/core/models.py:927 +#: engine/core/models.py:934 msgid "promotion" msgstr "促销活动" -#: engine/core/models.py:938 +#: engine/core/models.py:945 msgid "" "Represents a user's wishlist for storing and managing desired products. The " "class provides functionality to manage a collection of products, supporting " @@ -2035,23 +2067,23 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "代表用户用于存储和管理所需产品的愿望清单。该类提供管理产品集合的功能,支持添加和删除产品等操作,还支持同时添加和删除多个产品的操作。" -#: engine/core/models.py:950 +#: engine/core/models.py:957 msgid "products that the user has marked as wanted" msgstr "用户标记为想要的产品" -#: engine/core/models.py:958 +#: engine/core/models.py:965 msgid "user who owns this wishlist" msgstr "拥有此愿望清单的用户" -#: engine/core/models.py:959 +#: engine/core/models.py:966 msgid "wishlist owner" msgstr "心愿单所有者" -#: engine/core/models.py:967 +#: engine/core/models.py:974 msgid "wishlist" msgstr "愿望清单" -#: engine/core/models.py:1009 +#: engine/core/models.py:1016 msgid "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " @@ -2062,19 +2094,19 @@ msgid "" msgstr "" "代表与产品相关的文档记录。该类用于存储与特定产品相关的文档信息,包括文件上传及其元数据。它包含处理文件类型和文档文件存储路径的方法和属性。它扩展了特定混合类的功能,并提供了额外的自定义功能。" -#: engine/core/models.py:1024 +#: engine/core/models.py:1031 msgid "documentary" msgstr "纪录片" -#: engine/core/models.py:1025 +#: engine/core/models.py:1032 msgid "documentaries" msgstr "纪录片" -#: engine/core/models.py:1035 +#: engine/core/models.py:1042 msgid "unresolved" msgstr "未解决" -#: engine/core/models.py:1040 +#: engine/core/models.py:1047 msgid "" "Represents an address entity that includes location details and associations" " with a user. Provides functionality for geographic and address data " @@ -2088,59 +2120,59 @@ msgstr "" "代表一个地址实体,其中包括位置详情以及与用户的关联。提供地理和地址数据存储功能,以及与地理编码服务集成的功能。该类旨在存储详细的地址信息,包括街道、城市、地区、国家和地理位置(经度和纬度)等组件。它支持与地理编码" " API 集成,可存储原始 API 响应,以便进一步处理或检查。该类还可以将地址与用户关联起来,方便个性化数据处理。" -#: engine/core/models.py:1055 +#: engine/core/models.py:1062 msgid "address line for the customer" msgstr "客户地址栏" -#: engine/core/models.py:1056 +#: engine/core/models.py:1063 msgid "address line" msgstr "地址栏" -#: engine/core/models.py:1058 +#: engine/core/models.py:1065 msgid "street" msgstr "街道" -#: engine/core/models.py:1059 +#: engine/core/models.py:1066 msgid "district" msgstr "地区" -#: engine/core/models.py:1060 +#: engine/core/models.py:1067 msgid "city" msgstr "城市" -#: engine/core/models.py:1061 +#: engine/core/models.py:1068 msgid "region" msgstr "地区" -#: engine/core/models.py:1062 +#: engine/core/models.py:1069 msgid "postal code" msgstr "邮政编码" -#: engine/core/models.py:1063 +#: engine/core/models.py:1070 msgid "country" msgstr "国家" -#: engine/core/models.py:1070 +#: engine/core/models.py:1077 msgid "geolocation point: (longitude, latitude)" msgstr "地理位置点(经度、纬度)" -#: engine/core/models.py:1076 +#: engine/core/models.py:1083 msgid "full JSON response from geocoder for this address" msgstr "地理编码器对此地址的完整 JSON 响应" -#: engine/core/models.py:1082 +#: engine/core/models.py:1089 msgid "stored JSON response from the geocoding service" msgstr "存储的来自地理编码服务的 JSON 响应" -#: engine/core/models.py:1092 +#: engine/core/models.py:1099 msgid "address" msgstr "地址" -#: engine/core/models.py:1093 +#: engine/core/models.py:1100 msgid "addresses" msgstr "地址" -#: engine/core/models.py:1105 +#: engine/core/models.py:1112 msgid "" "Represents a promotional code that can be used for discounts, managing its " "validity, type of discount, and application. The PromoCode class stores " @@ -2152,86 +2184,86 @@ msgstr "" "代表可用于折扣的促销代码,管理其有效期、折扣类型和应用。PromoCode " "类存储促销代码的详细信息,包括其唯一标识符、折扣属性(金额或百分比)、有效期、关联用户(如有)及其使用状态。该类包含验证促销代码并将其应用于订单的功能,同时确保符合约束条件。" -#: engine/core/models.py:1119 +#: engine/core/models.py:1126 msgid "unique code used by a user to redeem a discount" msgstr "用户用于兑换折扣的唯一代码" -#: engine/core/models.py:1120 +#: engine/core/models.py:1127 msgid "promo code identifier" msgstr "促销代码标识符" -#: engine/core/models.py:1127 +#: engine/core/models.py:1134 msgid "fixed discount amount applied if percent is not used" msgstr "如果不使用百分比,则使用固定折扣额" -#: engine/core/models.py:1128 +#: engine/core/models.py:1135 msgid "fixed discount amount" msgstr "固定折扣额" -#: engine/core/models.py:1134 +#: engine/core/models.py:1141 msgid "percentage discount applied if fixed amount is not used" msgstr "未使用固定金额时适用的折扣百分比" -#: engine/core/models.py:1135 +#: engine/core/models.py:1142 msgid "percentage discount" msgstr "折扣百分比" -#: engine/core/models.py:1140 +#: engine/core/models.py:1147 msgid "timestamp when the promocode expires" msgstr "促销代码过期的时间戳" -#: engine/core/models.py:1141 +#: engine/core/models.py:1148 msgid "end validity time" msgstr "结束有效时间" -#: engine/core/models.py:1146 +#: engine/core/models.py:1153 msgid "timestamp from which this promocode is valid" msgstr "该促销代码有效的时间戳" -#: engine/core/models.py:1147 +#: engine/core/models.py:1154 msgid "start validity time" msgstr "开始有效时间" -#: engine/core/models.py:1152 +#: engine/core/models.py:1159 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "使用促销代码的时间戳,如果尚未使用,则留空" -#: engine/core/models.py:1153 +#: engine/core/models.py:1160 msgid "usage timestamp" msgstr "使用时间戳" -#: engine/core/models.py:1158 +#: engine/core/models.py:1165 msgid "user assigned to this promocode if applicable" msgstr "分配给此促销代码的用户(如适用" -#: engine/core/models.py:1159 +#: engine/core/models.py:1166 msgid "assigned user" msgstr "指定用户" -#: engine/core/models.py:1166 +#: engine/core/models.py:1173 msgid "promo code" msgstr "促销代码" -#: engine/core/models.py:1167 +#: engine/core/models.py:1174 msgid "promo codes" msgstr "促销代码" -#: engine/core/models.py:1183 +#: engine/core/models.py:1190 msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "只能定义一种折扣类型(金额或百分比),而不能同时定义两种类型或两者都不定义。" -#: engine/core/models.py:1205 +#: engine/core/models.py:1212 msgid "promocode already used" msgstr "促销代码已被使用" -#: engine/core/models.py:1227 +#: engine/core/models.py:1234 #, python-brace-format msgid "invalid discount type for promocode {self.uuid}" msgstr "促销代码 {self.uuid} 的折扣类型无效!" -#: engine/core/models.py:1236 +#: engine/core/models.py:1243 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " @@ -2242,145 +2274,145 @@ msgid "" msgstr "" "代表用户下达的订单。该类在应用程序中模拟订单,包括订单的各种属性,如账单和发货信息、状态、关联用户、通知和相关操作。订单可以有关联的产品,可以应用促销活动,设置地址,更新发货或账单详情。同样,该功能还支持在订单生命周期中管理产品。" -#: engine/core/models.py:1253 +#: engine/core/models.py:1260 msgid "the billing address used for this order" msgstr "该订单使用的账单地址" -#: engine/core/models.py:1261 +#: engine/core/models.py:1268 msgid "optional promo code applied to this order" msgstr "此订单可选择使用促销代码" -#: engine/core/models.py:1262 +#: engine/core/models.py:1269 msgid "applied promo code" msgstr "应用促销代码" -#: engine/core/models.py:1270 +#: engine/core/models.py:1277 msgid "the shipping address used for this order" msgstr "该订单使用的送货地址" -#: engine/core/models.py:1271 +#: engine/core/models.py:1278 msgid "shipping address" msgstr "送货地址" -#: engine/core/models.py:1277 +#: engine/core/models.py:1284 msgid "current status of the order in its lifecycle" msgstr "订单在其生命周期中的当前状态" -#: engine/core/models.py:1278 +#: engine/core/models.py:1285 msgid "order status" msgstr "订单状态" -#: engine/core/models.py:1283 engine/core/models.py:1882 +#: engine/core/models.py:1290 engine/core/models.py:1889 msgid "json structure of notifications to display to users" msgstr "向用户显示的通知的 JSON 结构,在管理用户界面中使用表格视图" -#: engine/core/models.py:1289 +#: engine/core/models.py:1296 msgid "json representation of order attributes for this order" msgstr "该订单属性的 JSON 表示形式" -#: engine/core/models.py:1295 +#: engine/core/models.py:1302 msgid "the user who placed the order" msgstr "下订单的用户" -#: engine/core/models.py:1296 +#: engine/core/models.py:1303 msgid "user" msgstr "用户" -#: engine/core/models.py:1302 +#: engine/core/models.py:1309 msgid "the timestamp when the order was finalized" msgstr "订单确定的时间戳" -#: engine/core/models.py:1303 +#: engine/core/models.py:1310 msgid "buy time" msgstr "购买时间" -#: engine/core/models.py:1310 +#: engine/core/models.py:1317 msgid "a human-readable identifier for the order" msgstr "订单的人工可读标识符" -#: engine/core/models.py:1311 +#: engine/core/models.py:1318 msgid "human readable id" msgstr "人类可读 ID" -#: engine/core/models.py:1317 +#: engine/core/models.py:1324 msgid "order" msgstr "订购" -#: engine/core/models.py:1364 +#: engine/core/models.py:1371 msgid "a user must have only one pending order at a time" msgstr "用户每次只能有一个挂单!" -#: engine/core/models.py:1397 +#: engine/core/models.py:1404 msgid "you cannot add products to an order that is not a pending one" msgstr "您不能向非待处理订单添加产品" -#: engine/core/models.py:1403 +#: engine/core/models.py:1410 msgid "you cannot add inactive products to order" msgstr "您不能在订单中添加非活动产品" -#: engine/core/models.py:1425 +#: engine/core/models.py:1432 msgid "you cannot add more products than available in stock" msgstr "添加的产品数量不能超过现有库存" -#: engine/core/models.py:1449 engine/core/models.py:1478 -#: engine/core/models.py:1488 +#: engine/core/models.py:1456 engine/core/models.py:1485 +#: engine/core/models.py:1495 msgid "you cannot remove products from an order that is not a pending one" msgstr "您不能从非待处理订单中删除产品" -#: engine/core/models.py:1473 +#: engine/core/models.py:1480 #, python-brace-format msgid "{name} does not exist with query <{query}>" msgstr "查询 <{query}> 时,{name} 不存在!" -#: engine/core/models.py:1512 +#: engine/core/models.py:1519 msgid "promocode does not exist" msgstr "促销代码不存在" -#: engine/core/models.py:1527 +#: engine/core/models.py:1534 msgid "you can only buy physical products with shipping address specified" msgstr "您只能购买指定送货地址的实物产品!" -#: engine/core/models.py:1548 +#: engine/core/models.py:1555 msgid "address does not exist" msgstr "地址不存在" -#: engine/core/models.py:1570 engine/core/models.py:1649 +#: engine/core/models.py:1577 engine/core/models.py:1656 msgid "you can not buy at this moment, please try again in a few minutes" msgstr "您现在无法购买,请稍后再试。" -#: engine/core/models.py:1576 engine/core/models.py:1642 +#: engine/core/models.py:1583 engine/core/models.py:1649 msgid "invalid force value" msgstr "力值无效" -#: engine/core/models.py:1582 engine/core/models.py:1653 +#: engine/core/models.py:1589 engine/core/models.py:1660 msgid "you cannot purchase an empty order!" msgstr "您不能购买空单!" -#: engine/core/models.py:1603 +#: engine/core/models.py:1610 msgid "you cannot buy an order without a user" msgstr "没有用户就无法购买订单!" -#: engine/core/models.py:1617 +#: engine/core/models.py:1624 msgid "a user without a balance cannot buy with balance" msgstr "没有余额的用户不能使用余额购买!" -#: engine/core/models.py:1623 +#: engine/core/models.py:1630 msgid "insufficient funds to complete the order" msgstr "资金不足,无法完成订单" -#: engine/core/models.py:1664 +#: engine/core/models.py:1671 msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "未经注册不能购买,请提供以下信息:客户姓名、客户电子邮件、客户电话号码" -#: engine/core/models.py:1675 +#: engine/core/models.py:1682 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "付款方式无效:来自 {available_payment_methods} 的 {payment_method} !" -#: engine/core/models.py:1806 +#: engine/core/models.py:1813 msgid "" "Manages user feedback for products. This class is designed to capture and " "store user feedback for specific products that they have purchased. It " @@ -2390,32 +2422,32 @@ msgid "" msgstr "" "管理产品的用户反馈。该类用于捕获和存储用户对其购买的特定产品的反馈。它包含用于存储用户评论的属性、订单中相关产品的引用以及用户指定的评分。该类使用数据库字段对反馈数据进行有效建模和管理。" -#: engine/core/models.py:1818 +#: engine/core/models.py:1825 msgid "user-provided comments about their experience with the product" msgstr "用户提供的产品使用体验评论" -#: engine/core/models.py:1819 +#: engine/core/models.py:1826 msgid "feedback comments" msgstr "反馈意见" -#: engine/core/models.py:1827 +#: engine/core/models.py:1834 msgid "" "references the specific product in an order that this feedback is about" msgstr "引用该反馈意见涉及的订单中的具体产品" -#: engine/core/models.py:1829 +#: engine/core/models.py:1836 msgid "related order product" msgstr "相关订购产品" -#: engine/core/models.py:1834 +#: engine/core/models.py:1841 msgid "user-assigned rating for the product" msgstr "用户对产品的评分" -#: engine/core/models.py:1835 +#: engine/core/models.py:1842 msgid "product rating" msgstr "产品评级" -#: engine/core/models.py:1855 +#: engine/core/models.py:1862 msgid "" "Represents products associated with orders and their attributes. The " "OrderProduct model maintains information about a product that is part of an " @@ -2431,108 +2463,108 @@ msgstr "" "模型维护订单中产品的相关信息,包括购买价格、数量、产品属性和状态等详细信息。它为用户和管理员管理通知,并处理返回产品余额或添加反馈等操作。该模型还提供支持业务逻辑的方法和属性,如计算总价或为数字产品生成下载" " URL。该模型与订单和产品模型集成,并存储对它们的引用。" -#: engine/core/models.py:1870 +#: engine/core/models.py:1877 msgid "the price paid by the customer for this product at purchase time" msgstr "客户购买该产品时支付的价格" -#: engine/core/models.py:1871 +#: engine/core/models.py:1878 msgid "purchase price at order time" msgstr "订购时的购买价格" -#: engine/core/models.py:1876 +#: engine/core/models.py:1883 msgid "internal comments for admins about this ordered product" msgstr "管理员对该订购产品的内部评论" -#: engine/core/models.py:1877 +#: engine/core/models.py:1884 msgid "internal comments" msgstr "内部意见" -#: engine/core/models.py:1883 +#: engine/core/models.py:1890 msgid "user notifications" msgstr "用户通知" -#: engine/core/models.py:1888 +#: engine/core/models.py:1895 msgid "json representation of this item's attributes" msgstr "该项属性的 JSON 表示形式" -#: engine/core/models.py:1889 +#: engine/core/models.py:1896 msgid "ordered product attributes" msgstr "有序的产品属性" -#: engine/core/models.py:1894 +#: engine/core/models.py:1901 msgid "reference to the parent order that contains this product" msgstr "对包含该产品的父订单的引用" -#: engine/core/models.py:1895 +#: engine/core/models.py:1902 msgid "parent order" msgstr "父顺序" -#: engine/core/models.py:1904 +#: engine/core/models.py:1911 msgid "the specific product associated with this order line" msgstr "与该订单项目相关的具体产品" -#: engine/core/models.py:1911 +#: engine/core/models.py:1918 msgid "quantity of this specific product in the order" msgstr "订单中该特定产品的数量" -#: engine/core/models.py:1912 +#: engine/core/models.py:1919 msgid "product quantity" msgstr "产品数量" -#: engine/core/models.py:1919 +#: engine/core/models.py:1926 msgid "current status of this product in the order" msgstr "订单中该产品的当前状态" -#: engine/core/models.py:1920 +#: engine/core/models.py:1927 msgid "product line status" msgstr "产品系列状态" -#: engine/core/models.py:1987 +#: engine/core/models.py:1998 msgid "order product must have an order" msgstr "订单产品必须有相关的订单!" -#: engine/core/models.py:1989 +#: engine/core/models.py:2000 #, python-brace-format msgid "wrong action specified for feedback: {action}" msgstr "为反馈指定了错误的操作:{action}!" -#: engine/core/models.py:2006 +#: engine/core/models.py:2017 msgid "you cannot feedback an order which is not received" msgstr "您不能反馈未收到的订单" -#: engine/core/models.py:2015 +#: engine/core/models.py:2026 msgid "name" msgstr "名称" -#: engine/core/models.py:2017 +#: engine/core/models.py:2028 msgid "URL of the integration" msgstr "集成的 URL" -#: engine/core/models.py:2020 +#: engine/core/models.py:2031 msgid "authentication credentials" msgstr "认证证书" -#: engine/core/models.py:2043 +#: engine/core/models.py:2054 msgid "you can only have one default CRM provider" msgstr "只能有一个默认 CRM 提供商" -#: engine/core/models.py:2053 +#: engine/core/models.py:2064 msgid "CRM" msgstr "客户关系管理" -#: engine/core/models.py:2054 +#: engine/core/models.py:2065 msgid "CRMs" msgstr "客户关系管理" -#: engine/core/models.py:2070 +#: engine/core/models.py:2081 msgid "order CRM link" msgstr "订单的客户关系管理链接" -#: engine/core/models.py:2071 +#: engine/core/models.py:2082 msgid "orders CRM links" msgstr "订单的客户关系管理链接" -#: engine/core/models.py:2076 +#: engine/core/models.py:2087 msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " @@ -2545,11 +2577,11 @@ msgstr "" "类提供了管理和访问与订单产品相关的下载的功能。该类维护相关订单产品的信息、下载次数以及资产是否公开可见。当相关订单处于完成状态时,该类包含一个生成用于下载资产的" " URL 的方法。" -#: engine/core/models.py:2092 +#: engine/core/models.py:2103 msgid "download" msgstr "下载" -#: engine/core/models.py:2093 +#: engine/core/models.py:2104 msgid "downloads" msgstr "下载" @@ -3020,13 +3052,13 @@ msgstr "" "`redirect` 函数来处理 HTTP 重定向。" #: engine/core/views.py:445 -msgid "Returns current version of the eVibes. " -msgstr "返回 eVibes 的当前版本。" +msgid "Returns current version of the Schon. " +msgstr "返回 Schon 的当前版本。" #: engine/core/views.py:674 engine/core/views.py:689 #, python-format msgid "Revenue & Orders (last %(days)d)" -msgstr "" +msgstr "收入与订单(最近的%(days)d)" #: engine/core/views.py:870 msgid "Returns custom variables for Dashboard. " @@ -3034,13 +3066,13 @@ msgstr "返回 Dashboard 的自定义变量。" #: engine/core/viewsets.py:139 msgid "" -"Defines a viewset for managing Evibes-related operations. The EvibesViewSet " +"Defines a viewset for managing Schon-related operations. The SchonViewSet " "class inherits from ModelViewSet and provides functionality for handling " -"actions and operations on Evibes entities. It includes support for dynamic " +"actions and operations on Schon entities. It includes support for dynamic " "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"定义用于管理 Evibes 相关操作的视图集。EvibesViewSet 类继承于 ModelViewSet,提供了处理 Evibes " +"定义用于管理 schon 相关操作的视图集。schonViewSet 类继承于 ModelViewSet,提供了处理 schon " "实体上的操作和运行的功能。它包括支持基于当前操作的动态序列化类、可定制的权限和渲染格式。" #: engine/core/viewsets.py:160 @@ -3103,13 +3135,13 @@ msgid "" "Manages operations related to the `Product` model in the system. This class " "provides a viewset for managing products, including their filtering, " "serialization, and operations on specific instances. It extends from " -"`EvibesViewSet` to use common functionality and integrates with the Django " +"`SchonViewSet` to use common functionality and integrates with the Django " "REST framework for RESTful API operations. Includes methods for retrieving " "product details, applying permissions, and accessing related feedback of a " "product." msgstr "" "管理与系统中的 \"产品 \"模型相关的操作。该类为管理产品提供了一个视图集,包括产品的筛选、序列化和对特定实例的操作。该类从 " -"`EvibesViewSet` 扩展而来,使用通用功能,并与 Django REST 框架集成,用于 RESTful API " +"`schonViewSet` 扩展而来,使用通用功能,并与 Django REST 框架集成,用于 RESTful API " "操作。包括检索产品详细信息、应用权限和访问产品相关反馈的方法。" #: engine/core/viewsets.py:605 @@ -3129,11 +3161,11 @@ msgid "" "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " "serializers for different actions and implement permission-based handling of" -" accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +" accessible Feedback objects. It extends the base `SchonViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "处理反馈对象的视图集的表示。该类管理与反馈对象相关的操作,包括列出、筛选和检索详细信息。该视图集的目的是为不同的操作提供不同的序列化器,并对可访问的反馈对象实施基于权限的处理。它扩展了基本的" -" `EvibesViewSet` 并使用 Django 的过滤系统来查询数据。" +" `schonViewSet` 并使用 Django 的过滤系统来查询数据。" #: engine/core/viewsets.py:652 msgid "" diff --git a/engine/core/management/commands/__init__.py b/engine/core/management/commands/__init__.py index 21794264..b7144dac 100644 --- a/engine/core/management/commands/__init__.py +++ b/engine/core/management/commands/__init__.py @@ -4,7 +4,7 @@ from django.conf import settings class RootDirectory: def __init__(self) -> None: self.label = "root" - self.path = settings.BASE_DIR / "evibes" + self.path = settings.BASE_DIR / "schon" # Mapping from Django locale codes to DeepL API codes diff --git a/engine/core/management/commands/await_services.py b/engine/core/management/commands/await_services.py index 1686e034..ab21b352 100644 --- a/engine/core/management/commands/await_services.py +++ b/engine/core/management/commands/await_services.py @@ -3,11 +3,10 @@ import time from os import getenv from typing import Any +import psycopg import redis from django.core.management.base import BaseCommand from django.db.utils import OperationalError -from psycopg2 import OperationalError as Psycopg2OperationalError -from psycopg2 import connect from redis.exceptions import ConnectionError # noqa: A004 @@ -19,7 +18,7 @@ class Command(BaseCommand): db_up = False while not db_up: try: - conn = connect( + conn = psycopg.connect( dbname=getenv("POSTGRES_DB"), user=getenv("POSTGRES_USER"), password=getenv("POSTGRES_PASSWORD"), @@ -27,7 +26,7 @@ class Command(BaseCommand): ) conn.close() db_up = True - except (OperationalError, Psycopg2OperationalError): + except (OperationalError, psycopg.OperationalError): self.stdout.write("Database unavailable, waiting 1 second...") time.sleep(1) self.stdout.write(self.style.SUCCESS("Database available!")) diff --git a/engine/core/management/commands/delete_products_by_description.py b/engine/core/management/commands/delete_products_by_description.py index 8601b5b5..5920f9fe 100644 --- a/engine/core/management/commands/delete_products_by_description.py +++ b/engine/core/management/commands/delete_products_by_description.py @@ -23,7 +23,7 @@ class Command(BaseCommand): while True: batch_ids = list( Product.objects.filter( - description__iexact="EVIBES_DELETED_PRODUCT" + description__iexact="SCHON_DELETED_PRODUCT" ).values_list("pk", flat=True)[:size] ) if not batch_ids: diff --git a/engine/core/management/commands/demo_data.py b/engine/core/management/commands/demo_data.py new file mode 100644 index 00000000..96e2fb73 --- /dev/null +++ b/engine/core/management/commands/demo_data.py @@ -0,0 +1,587 @@ +import json +import random +import shutil +from datetime import timedelta +from pathlib import Path +from typing import Any + +from django.conf import settings +from django.core.files.base import ContentFile +from django.core.management.base import BaseCommand +from django.db import transaction +from django.utils import timezone + +from engine.core.models import ( + Address, + Attribute, + AttributeGroup, + Brand, + Category, + CategoryTag, + Order, + OrderProduct, + Product, + ProductImage, + ProductTag, + Stock, + Vendor, + Wishlist, +) +from engine.payments.models import Balance +from engine.vibes_auth.models import Group, User + +DEMO_EMAIL_DOMAIN = "demo.schon.store" +DEMO_VENDOR_NAME = "GemSource Global" +DEMO_IMAGES_DIR = Path(settings.BASE_DIR) / "engine/core/fixtures/demo_products_images" + + +class Command(BaseCommand): + help = "Install or remove demo fixtures for Schon" + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.demo_data: dict[str, Any] = {} + + def add_arguments(self, parser): + subparsers = parser.add_subparsers(dest="action", help="Action to perform") + + install_parser = subparsers.add_parser("install", help="Install demo fixtures") + install_parser.add_argument( + "--users", + type=int, + default=50, + help="Number of demo users to create (default: 50)", + ) + install_parser.add_argument( + "--orders", + type=int, + default=100, + help="Number of demo orders to create (default: 100)", + ) + install_parser.add_argument( + "--days", + type=int, + default=30, + help="Number of days to spread orders over (default: 30)", + ) + install_parser.add_argument( + "--skip-products", + action="store_true", + help="Skip creating gem products (use if already created)", + ) + + subparsers.add_parser("remove", help="Remove all demo fixtures") + + def handle(self, *args: list[Any], **options: dict[str, Any]) -> None: + action = options.get("action") + + if not action: + self.stdout.write( + self.style.ERROR("Please specify an action: install or remove") + ) + self.stdout.write("Usage: python manage.py demo_data install|remove") + return + + self._load_demo_data() + + if action == "install": + self._install(options) + elif action == "remove": + self._remove() + else: + self.stdout.write(self.style.ERROR(f"Unknown action: {action}")) + + @property + def staff_user(self): + user, _ = User.objects.get_or_create( + email=f"staff@{DEMO_EMAIL_DOMAIN}", + password="Staff!Demo888", + first_name="Alice", + last_name="Schon", + is_staff=True, + is_active=True, + is_verified=True, + ) + if not user.groups.filter(name="E-Commerce Admin").exists(): + user.groups.add(Group.objects.get(name="E-Commerce Admin")) + return user + + @property + def super_user(self): + user, _ = User.objects.get_or_create( + email=f"super@{DEMO_EMAIL_DOMAIN}", + password="Super!Demo888", + first_name="Bob", + last_name="Schon", + is_superuser=True, + is_staff=True, + is_active=True, + is_verified=True, + ) + return user + + def _load_demo_data(self) -> None: + fixture_path = Path(settings.BASE_DIR) / "engine/core/fixtures/demo.json" + with open(fixture_path, encoding="utf-8") as f: + self.demo_data = json.load(f) + + def _install(self, options: dict[str, Any]) -> None: + num_users = options["users"] + num_orders = options["orders"] + num_days = options["days"] + skip_products = options.get("skip_products", False) + + self.stdout.write(self.style.NOTICE("Starting demo fixture installation...")) + + if not skip_products: + self.stdout.write("Creating gem products with translations...") + self._create_gem_products() + self.stdout.write(self.style.SUCCESS("Gem products created!")) + + self.stdout.write(f"Creating {num_users} demo users...") + users = self._create_demo_users(num_users) + self.stdout.write(self.style.SUCCESS(f"Created {len(users)} users")) + + products = list(Product.objects.filter(is_active=True)) + if not products: + self.stdout.write(self.style.ERROR("No products found!")) + return + + self.stdout.write(f"Creating {num_orders} orders over {num_days} days...") + orders, refunded_count = self._create_demo_orders( + users, products, num_orders, num_days + ) + self.stdout.write( + self.style.SUCCESS( + f"Created {len(orders)} orders ({refunded_count} refunded)" + ) + ) + + self.stdout.write("Creating wishlists for demo users...") + wishlist_count = self._create_demo_wishlists(users, products) + self.stdout.write(self.style.SUCCESS(f"Created {wishlist_count} wishlists")) + + self.stdout.write( + self.style.SUCCESS(f"Created staff {self.staff_user.email} user") + ) + self.stdout.write( + self.style.SUCCESS(f"Created super {self.super_user.email} user") + ) + + self._print_summary(users, orders, refunded_count, num_days) + + def _remove(self) -> None: + self.stdout.write(self.style.WARNING("Removing demo fixtures...")) + + with transaction.atomic(): + demo_users = User.objects.filter(email__endswith=f"@{DEMO_EMAIL_DOMAIN}") + user_count = demo_users.count() + + orders = Order.objects.filter(user__in=demo_users) + order_count = orders.count() + + OrderProduct.objects.filter(order__in=orders).delete() + + orders.delete() + + Address.objects.filter(user__in=demo_users).delete() + + Balance.objects.filter(user__in=demo_users).delete() + + Wishlist.objects.filter(user__in=demo_users).delete() + + demo_users.delete() + + try: + vendor = Vendor.objects.get(name=DEMO_VENDOR_NAME) + Stock.objects.filter(vendor=vendor).delete() + vendor.delete() + self.stdout.write(f" Removed vendor: {DEMO_VENDOR_NAME}") + except Vendor.DoesNotExist: + pass + + partnumbers = [p["partnumber"] for p in self.demo_data["products"]] + products = Product.objects.filter(partnumber__in=partnumbers) + product_count = products.count() + + for product in products: + for image in product.images.all(): + if image.image: + image.image.delete(save=False) + image.delete() + product_dir: Path = settings.MEDIA_ROOT / "products" / str(product.uuid) + if product_dir.exists() and not any(product_dir.iterdir()): + shutil.rmtree(product_dir, ignore_errors=True) + + products.delete() + + brand_names = [b["name"] for b in self.demo_data["brands"]] + Brand.objects.filter(name__in=brand_names).delete() + + for cat_data in reversed(self.demo_data["categories"]): + Category.objects.filter(name=cat_data["name"]).delete() + + tag_names = [t["tag_name"] for t in self.demo_data["category_tags"]] + CategoryTag.objects.filter(tag_name__in=tag_names).delete() + + tag_names = [t["tag_name"] for t in self.demo_data["product_tags"]] + ProductTag.objects.filter(tag_name__in=tag_names).delete() + + group_names = [g["name"] for g in self.demo_data["attribute_groups"]] + Attribute.objects.filter(group__name__in=group_names).delete() + AttributeGroup.objects.filter(name__in=group_names).delete() + + self.staff_user.delete() + self.super_user.delete() + + self.stdout.write("") + self.stdout.write(self.style.SUCCESS("=" * 50)) + self.stdout.write(self.style.SUCCESS("Demo fixtures removed successfully!")) + self.stdout.write(self.style.SUCCESS("=" * 50)) + self.stdout.write(f" Users removed: {user_count}") + self.stdout.write(f" Orders removed: {order_count}") + self.stdout.write(f" Products removed: {product_count}") + + def _print_summary( + self, users: list, orders: list, refunded_count: int, num_days: int + ) -> None: + password = self.demo_data["demo_users"]["password"] + + self.stdout.write("") + self.stdout.write(self.style.SUCCESS("=" * 50)) + self.stdout.write(self.style.SUCCESS("Demo fixtures installed successfully!")) + self.stdout.write(self.style.SUCCESS("=" * 50)) + self.stdout.write(f" Products: {Product.objects.count()}") + self.stdout.write(f" Categories: {Category.objects.count()}") + self.stdout.write(f" Brands: {Brand.objects.count()}") + self.stdout.write(f" Users created: {len(users)}") + self.stdout.write(f" Orders created: {len(orders)}") + self.stdout.write(f" Refunded orders: {refunded_count}") + self.stdout.write(f" Date range: {num_days} days") + self.stdout.write(f" Demo password: {password}") + self.stdout.write("") + self.stdout.write("Sample demo accounts:") + for user in users[:5]: + self.stdout.write(f" - {user.email}") + + @transaction.atomic + def _create_gem_products(self) -> None: + data = self.demo_data + + vendor, _ = Vendor.objects.get_or_create( + name=data["vendor"]["name"], + defaults={"markup_percent": data["vendor"]["markup_percent"]}, + ) + + for tag_data in data["category_tags"]: + tag, created = CategoryTag.objects.get_or_create( + tag_name=tag_data["tag_name"], + defaults={"name": tag_data["name"]}, + ) + if created and "name_ru" in tag_data: + tag.name_ru_ru = tag_data["name_ru"] + tag.save() + + for tag_data in data["product_tags"]: + tag, created = ProductTag.objects.get_or_create( + tag_name=tag_data["tag_name"], + defaults={"name": tag_data["name"]}, + ) + if created and "name_ru" in tag_data: + tag.name_ru_ru = tag_data["name_ru"] + tag.save() + + attr_groups = {} + for group_data in data["attribute_groups"]: + group, created = AttributeGroup.objects.get_or_create( + name=group_data["name"] + ) + if created and "name_ru" in group_data: + group.name_ru_ru = group_data["name_ru"] + group.save() + attr_groups[group_data["name"]] = group + + for attr_data in data["attributes"]: + group = attr_groups.get(attr_data["group"]) + if group: + attr, created = Attribute.objects.get_or_create( + group=group, + name=attr_data["name"], + defaults={ + "value_type": attr_data["value_type"], + "is_filterable": attr_data["is_filterable"], + }, + ) + if created and "name_ru" in attr_data: + attr.name_ru_ru = attr_data["name_ru"] + attr.save() + + brands = {} + for brand_data in data["brands"]: + brand, created = Brand.objects.get_or_create( + name=brand_data["name"], + defaults={"description": brand_data["description"]}, + ) + if created and "description_ru" in brand_data: + brand.description_ru_ru = brand_data["description_ru"] + brand.save() + brands[brand_data["name"]] = brand + + categories = {} + for cat_data in data["categories"]: + parent = categories.get(cat_data["parent"]) if cat_data["parent"] else None + category, created = Category.objects.get_or_create( + name=cat_data["name"], + defaults={ + "description": cat_data["description"], + "parent": parent, + "markup_percent": cat_data["markup_percent"], + }, + ) + if created: + if "name_ru" in cat_data: + category.name_ru_ru = cat_data["name_ru"] + if "description_ru" in cat_data: + category.description_ru_ru = cat_data["description_ru"] + category.save() + categories[cat_data["name"]] = category + + for prod_data in data["products"]: + category = categories.get(prod_data["category"]) + brand = brands.get(prod_data["brand"]) + + if not category: + continue + + product, created = Product.objects.get_or_create( + partnumber=prod_data["partnumber"], + defaults={ + "name": prod_data["name"], + "description": prod_data["description"], + "category": category, + "brand": brand, + "is_digital": False, + }, + ) + + if created: + if "name_ru" in prod_data: + product.name_ru_ru = prod_data["name_ru"] + if "description_ru" in prod_data: + product.description_ru_ru = prod_data["description_ru"] + product.save() + + Stock.objects.create( + vendor=vendor, + product=product, + sku=f"GS-{prod_data['partnumber']}", + price=prod_data["price"], + purchase_price=prod_data["purchase_price"], + quantity=prod_data["quantity"], + ) + + # Add product image + self._add_product_image(product, prod_data["partnumber"]) + + def _add_product_image(self, product: Product, partnumber: str) -> None: + image_path = DEMO_IMAGES_DIR / f"{partnumber}.jpg" + if not image_path.exists(): + image_path = DEMO_IMAGES_DIR / "placeholder.png" + + if not image_path.exists(): + self.stdout.write( + self.style.WARNING(f" No image found for {partnumber}, skipping...") + ) + return + + with open(image_path, "rb") as f: + image_content = f.read() + + filename = image_path.name + product_image = ProductImage( + product=product, + alt=product.name, + priority=1, + ) + product_image.image.save(filename, ContentFile(image_content), save=True) + + @transaction.atomic + def _create_demo_users(self, count: int) -> list: + users = [] + user_data = self.demo_data["demo_users"] + existing_emails = set(User.objects.values_list("email", flat=True)) + + first_names = user_data["first_names"] + last_names = user_data["last_names"] + cities = user_data["cities"] + streets = user_data["streets"] + password = user_data["password"] + email_domain = user_data["email_domain"] + + for _ in range(count): + first_name = random.choice(first_names) + last_name = random.choice(last_names) + + base_email = f"{first_name.lower()}.{last_name.lower()}@{email_domain}" + email = base_email + counter = 1 + while email in existing_emails: + email = ( + f"{first_name.lower()}.{last_name.lower()}{counter}@{email_domain}" + ) + counter += 1 + + existing_emails.add(email) + + # Create user + user = User( + email=email, + first_name=first_name, + last_name=last_name, + is_active=True, + is_verified=True, + ) + user.set_password(password) + user.save() + + Balance.objects.get_or_create( + user=user, + defaults={"amount": round(random.uniform(100, 5000), 2)}, + ) + + city_data = random.choice(cities) + street_num = random.randint(1, 999) + street = random.choice(streets) + address_line = ( + f"{street_num} {street}, {city_data['city']}, " + f"{city_data['region']} {city_data['postal_code']}, {city_data['country']}" + ) + + address = Address( + user=user, + street=f"{street_num} {street}", + city=city_data["city"], + region=city_data["region"], + postal_code=city_data["postal_code"], + country=city_data["country"], + address_line=address_line, + raw_data=address_line, + ) + address.save() + + users.append(user) + + return users + + @transaction.atomic + def _create_demo_orders( + self, + users: list, + products: list, + count: int, + days: int, + ) -> tuple[list, int]: + orders = [] + refunded_count = 0 + now = timezone.now() + + refund_target = int(count * 0.08) + refund_indices = set(random.sample(range(count), refund_target)) + + day_weights = [1 + (i / days) for i in range(days)] + total_weight = sum(day_weights) + day_probabilities = [w / total_weight for w in day_weights] + + for i in range(count): + user = random.choice(users) + + is_refunded = i in refund_indices + + day_offset = random.choices(range(days), weights=day_probabilities)[0] + order_date = now - timedelta( + days=days - 1 - day_offset, + hours=random.randint(0, 23), + minutes=random.randint(0, 59), + ) + + if is_refunded: + status = "FAILED" + refunded_count += 1 + elif day_offset > days * 0.7: # Recent orders + status = random.choice(["CREATED", "DELIVERING", "FINISHED"]) + else: + status = "FINISHED" + + address = Address.objects.filter(user=user).first() + + order = Order.objects.create( + user=user, + status=status, + buy_time=order_date, + billing_address=address, + shipping_address=address, + ) + + Order.objects.filter(pk=order.pk).update(created=order_date) + + num_products = random.randint(1, 4) + order_products = random.sample(products, min(num_products, len(products))) + + for product in order_products: + quantity = random.randint(1, 3) + price = product.price if product.price else random.uniform(100, 5000) + + if is_refunded: + op_status = "RETURNED" + elif status == "FINISHED": + op_status = "FINISHED" + elif status == "DELIVERING": + op_status = random.choice(["DELIVERING", "DELIVERED"]) + else: + op_status = random.choice(["ACCEPTED", "PENDING"]) + + OrderProduct.objects.create( + order=order, + product=product, + quantity=quantity, + buy_price=round(price, 2), + status=op_status, + ) + + orders.append(order) + + return orders, refunded_count + + @transaction.atomic + def _create_demo_wishlists(self, users: list, products: list) -> int: + """ + Ensure exactly 5 products are wishlisted, each by 2-4 random demo users. + """ + if len(products) < 5: + self.stdout.write( + self.style.WARNING( + f"Not enough products ({len(products)}) to create 5 wishlisted items" + ) + ) + wishlisted_products = products + else: + wishlisted_products = random.sample(products, 5) + + if len(users) < 2: + self.stdout.write( + self.style.WARNING("Not enough users to create wishlists") + ) + return 0 + + users_with_wishlists = set() + + for product in wishlisted_products: + num_users = random.randint(2, min(4, len(users))) + selected_users = random.sample(users, num_users) + + for user in selected_users: + wishlist, _ = Wishlist.objects.get_or_create(user=user) + wishlist.products.add(product) + users_with_wishlists.add(user.id) + + return len(users_with_wishlists) diff --git a/engine/core/management/commands/fix_prices.py b/engine/core/management/commands/fix_prices.py deleted file mode 100644 index 6076db78..00000000 --- a/engine/core/management/commands/fix_prices.py +++ /dev/null @@ -1,28 +0,0 @@ -import logging -from typing import Any - -from django.core.management.base import BaseCommand - -from engine.core.models import Product -from engine.core.vendors import AbstractVendor - -logger = logging.getLogger(__name__) - - -class Command(BaseCommand): - def handle(self, *args: list[Any], **options: dict[Any, Any]) -> None: - self.stdout.write(self.style.SUCCESS("Starting fixing stocks' prices...")) - - for product in Product.objects.filter(stocks__isnull=False): - for stock in product.stocks.all(): - try: - stock.price = AbstractVendor.round_price_marketologically( - stock.price - ) - stock.save() - except Exception as e: - self.stdout.write( - self.style.WARNING(f"Couldn't fix price on {stock.uuid}") - ) - self.stdout.write(self.style.WARNING(f"Error: {e}")) - self.stdout.write(self.style.SUCCESS("Successfully fixed stocks' prices!")) diff --git a/engine/core/managers.py b/engine/core/managers.py index 6dae05a1..68562b8f 100644 --- a/engine/core/managers.py +++ b/engine/core/managers.py @@ -1,10 +1,15 @@ import logging +from typing import TYPE_CHECKING, Self import requests from constance import config from django.contrib.gis.geos import Point from django.db import models -from modeltranslation.manager import MultilingualManager +from django.db.models import QuerySet +from modeltranslation.manager import MultilingualManager, MultilingualQuerySet + +if TYPE_CHECKING: + from engine.core.models import AttributeValue, Product, Stock, Vendor # noqa: F401 logger = logging.getLogger(__name__) @@ -67,8 +72,11 @@ class AddressManager(models.Manager): )[0] -class ProductManager(MultilingualManager): - def available(self): +class ProductQuerySet(MultilingualQuerySet["Product"]): + """Custom QuerySet for Product with vendor-related operations.""" + + def available(self) -> Self: + """Filter to only available products.""" return self.filter( is_active=True, brand__is_active=True, @@ -77,7 +85,8 @@ class ProductManager(MultilingualManager): stocks__vendor__is_active=True, ) - def available_in_stock(self): + def available_in_stock(self) -> Self: + """Filter to available products with stock quantity > 0.""" return self.filter( is_active=True, brand__is_active=True, @@ -87,7 +96,151 @@ class ProductManager(MultilingualManager): stocks__quantity__gt=0, ) - def with_related(self): + def with_related(self) -> Self: + """Prefetch related objects for performance.""" return self.select_related("category", "brand").prefetch_related( "tags", "stocks", "images", "attributes__attribute__group" ) + + def stale(self) -> Self: + """Filter products with no orders and no stocks.""" + return self.filter(orderproduct__isnull=True, stocks__isnull=True) + + def for_vendor(self, vendor: "Vendor") -> Self: + """Filter products that have stocks from a specific vendor.""" + return self.filter(stocks__vendor=vendor) + + def not_in_orders(self) -> Self: + """Filter products that are not part of any order.""" + return self.filter(orderproduct__isnull=True) + + def for_vendor_not_in_orders(self, vendor: "Vendor") -> Self: + """Filter products for a vendor that are not in any orders.""" + return self.for_vendor(vendor).filter(orderproduct__isnull=True) + + def mark_inactive(self) -> int: + """Bulk update products to inactive status. Returns count updated.""" + return self.update(is_active=False) + + def mark_for_deletion(self, marker: str = "SCHON_DELETED_PRODUCT") -> int: + """Mark products for deletion by setting description. Returns count updated.""" + return self.update(description=marker) + + def marked_for_deletion(self, marker: str = "SCHON_DELETED_PRODUCT") -> Self: + """Get products marked for deletion.""" + return self.filter(description__exact=marker) + + def delete_with_related(self, batch_size: int = 5000) -> int: + """ + Delete products in batches along with their related objects. + + Returns the total number of products deleted. + """ + from engine.core.models import AttributeValue, ProductImage + + total_deleted = 0 + while True: + batch_ids = list(self.values_list("pk", flat=True)[:batch_size]) + if not batch_ids: + break + + AttributeValue.objects.filter(product_id__in=batch_ids).delete() + ProductImage.objects.filter(product_id__in=batch_ids).delete() + deleted_count, _ = self.model.objects.filter(pk__in=batch_ids).delete() + total_deleted += deleted_count + + return total_deleted + + +class ProductManager(MultilingualManager["Product"]): + """Manager for Product model with custom queryset methods.""" + + _queryset_class = ProductQuerySet + + def get_queryset(self) -> ProductQuerySet: + return ProductQuerySet(self.model, using=self._db) + + def available(self) -> ProductQuerySet: + return self.get_queryset().available() + + def available_in_stock(self) -> ProductQuerySet: + return self.get_queryset().available_in_stock() + + def with_related(self) -> ProductQuerySet: + return self.get_queryset().with_related() + + def stale(self) -> ProductQuerySet: + return self.get_queryset().stale() + + def for_vendor(self, vendor: "Vendor") -> ProductQuerySet: + return self.get_queryset().for_vendor(vendor) + + def not_in_orders(self) -> ProductQuerySet: + return self.get_queryset().not_in_orders() + + def for_vendor_not_in_orders(self, vendor: "Vendor") -> ProductQuerySet: + return self.get_queryset().for_vendor_not_in_orders(vendor) + + +class StockQuerySet(QuerySet["Stock"]): + """Custom QuerySet for Stock with vendor-related operations.""" + + def for_vendor(self, vendor: "Vendor") -> Self: + """Filter stocks for a specific vendor.""" + return self.filter(vendor=vendor) + + def not_in_orders(self) -> Self: + """Filter stocks whose products are not in any orders.""" + return self.filter(product__orderproduct__isnull=True) + + def for_vendor_not_in_orders(self, vendor: "Vendor") -> Self: + """Filter stocks for a vendor whose products are not in orders.""" + return self.for_vendor(vendor).filter(product__orderproduct__isnull=True) + + +class StockManager(models.Manager["Stock"]): + """Manager for Stock model with custom queryset methods.""" + + def get_queryset(self) -> StockQuerySet: + return StockQuerySet(self.model, using=self._db) + + def for_vendor(self, vendor: "Vendor") -> StockQuerySet: + return self.get_queryset().for_vendor(vendor) + + def not_in_orders(self) -> StockQuerySet: + return self.get_queryset().not_in_orders() + + def for_vendor_not_in_orders(self, vendor: "Vendor") -> StockQuerySet: + return self.get_queryset().for_vendor_not_in_orders(vendor) + + +class AttributeValueQuerySet(QuerySet["AttributeValue"]): + """Custom QuerySet for AttributeValue with vendor-related operations.""" + + def for_vendor(self, vendor: "Vendor") -> Self: + """Filter attribute values for products from a specific vendor.""" + return self.filter(product__stocks__vendor=vendor) + + def not_in_orders(self) -> Self: + """Filter attribute values whose products are not in any orders.""" + return self.filter(product__orderproduct__isnull=True) + + def for_vendor_not_in_orders(self, vendor: "Vendor") -> Self: + """Filter attribute values for a vendor whose products are not in orders.""" + return self.for_vendor(vendor).filter(product__orderproduct__isnull=True) + + +class AttributeValueManager(models.Manager["AttributeValue"]): + """Manager for AttributeValue model with custom queryset methods.""" + + def get_queryset(self) -> AttributeValueQuerySet: + return AttributeValueQuerySet(self.model, using=self._db) + + def for_vendor(self, vendor: "Vendor") -> AttributeValueQuerySet: + return self.get_queryset().for_vendor(vendor) + + def not_in_orders(self) -> AttributeValueQuerySet: + return self.get_queryset().not_in_orders() + + def for_vendor_not_in_orders(self, vendor: "Vendor") -> AttributeValueQuerySet: + return self.get_queryset().for_vendor_not_in_orders(vendor) diff --git a/engine/core/migrations/0054_product_export_to_marketplaces.py b/engine/core/migrations/0054_product_export_to_marketplaces.py new file mode 100644 index 00000000..e2a3b870 --- /dev/null +++ b/engine/core/migrations/0054_product_export_to_marketplaces.py @@ -0,0 +1,21 @@ +# Generated by Django 5.2.9 on 2026-01-25 19:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0053_product_is_updatable"), + ] + + operations = [ + migrations.AddField( + model_name="product", + name="export_to_marketplaces", + field=models.BooleanField( + default=False, + help_text="whether to export this product to marketplaces", + verbose_name="Export to Marketplaces", + ), + ), + ] diff --git a/engine/core/models.py b/engine/core/models.py index 46065a5a..0ad745aa 100644 --- a/engine/core/models.py +++ b/engine/core/models.py @@ -39,6 +39,7 @@ from django.db.models import ( from django.db.models.functions import Length from django.db.models.indexes import Index from django.http import Http404 +from django.templatetags.static import static from django.utils import timezone from django.utils.encoding import force_bytes from django.utils.functional import cached_property @@ -52,7 +53,12 @@ from mptt.models import MPTTModel from engine.core.abstract import NiceModel from engine.core.choices import ORDER_PRODUCT_STATUS_CHOICES, ORDER_STATUS_CHOICES from engine.core.errors import DisabledCommerceError, NotEnoughMoneyError -from engine.core.managers import AddressManager, ProductManager +from engine.core.managers import ( + AddressManager, + AttributeValueManager, + ProductManager, + StockManager, +) from engine.core.typing import FilterableAttribute from engine.core.utils import ( generate_human_readable_id, @@ -65,7 +71,7 @@ from engine.core.utils.db import TweakedAutoSlugField, unicode_slugify_function from engine.core.utils.lists import FAILED_STATUSES from engine.core.validators import validate_category_image_dimensions from engine.payments.models import Transaction -from evibes.utils.misc import create_object +from schon.utils.misc import create_object logger = logging.getLogger(__name__) @@ -431,9 +437,10 @@ class Category(ExportModelOperationsMixin("category"), NiceModel, MPTTModel): @cached_property def image_url(self) -> str: with suppress(ValueError): - url = str(self.image.url) - return url if "http" in url else f"https://api.{settings.BASE_DOMAIN}{url}" - return "" + if self.image: + return self.image.url + # Fallback to favicon.png from static files + return static("favicon.png") class Meta: verbose_name = _("category") @@ -569,6 +576,8 @@ class Stock(ExportModelOperationsMixin("stock"), NiceModel): default=dict, verbose_name=_("system attributes"), blank=True ) + objects = StockManager() + def __str__(self) -> str: return f"{self.vendor.name} - {self.product!s}" @@ -669,6 +678,11 @@ class Product(ExportModelOperationsMixin("product"), NiceModel): unique=True, default=generate_human_readable_id, ) + export_to_marketplaces = BooleanField( + help_text=_("whether to export this product to marketplaces"), + verbose_name=_("Export to Marketplaces"), + default=False, + ) objects = ProductManager() @@ -694,9 +708,7 @@ class Product(ExportModelOperationsMixin("product"), NiceModel): @cached_property def discount_price(self) -> float | None: promo = self.promos.first() - return ( - promo.discount_percent if promo else None # ty: ignore[possibly-missing-attribute] - ) + return (self.price / 100) * promo.discount_percent if promo else None @property def rating(self) -> float: @@ -736,6 +748,10 @@ class Product(ExportModelOperationsMixin("product"), NiceModel): def personal_orders_only(self, value): self.__dict__["personal_orders_only"] = value + @cached_property + def has_images(self): + return self.images.exists() + class Attribute(ExportModelOperationsMixin("attribute"), NiceModel): __doc__ = _( @@ -826,6 +842,8 @@ class AttributeValue(ExportModelOperationsMixin("attribute_value"), NiceModel): help_text=_("the specific value for this attribute"), ) + objects = AttributeValueManager() + def __str__(self): return f"{self.attribute!s}: {self.value}" @@ -877,9 +895,10 @@ class ProductImage(ExportModelOperationsMixin("product_image"), NiceModel): @cached_property def image_url(self) -> str: with suppress(ValueError): - url = str(self.image.url) - return url if "http" in url else f"https://api.{settings.BASE_DOMAIN}{url}" - return "" + if self.image: + return self.image.url + # Fallback to favicon.png from static files + return static("favicon.png") class Meta: ordering = ("priority",) diff --git a/engine/core/permissions.py b/engine/core/permissions.py index 22c123cb..a69d9069 100644 --- a/engine/core/permissions.py +++ b/engine/core/permissions.py @@ -14,7 +14,7 @@ class IsOwnerOrReadOnly(permissions.BasePermission): # noinspection PyProtectedMember,PyUnresolvedReferences -class EvibesPermission(permissions.BasePermission): +class SchonPermission(permissions.BasePermission): ACTION_PERM_MAP = { "retrieve": "view", "list": "view", diff --git a/engine/core/serializers/detail.py b/engine/core/serializers/detail.py index fc4dbf01..ee3878a0 100644 --- a/engine/core/serializers/detail.py +++ b/engine/core/serializers/detail.py @@ -50,7 +50,7 @@ class AttributeGroupDetailSerializer(ModelSerializer): class CategoryDetailListSerializer(ListSerializer): - def to_representation(self, data): # ty: ignore[invalid-method-override] + def to_representation(self, data): items = list(data) with suppress(Exception): Category.bulk_prefetch_filterable_attributes(items) @@ -92,7 +92,7 @@ class CategoryDetailSerializer(ModelSerializer): serializer = CategorySimpleSerializer( children, many=True, context=self.context ) - return list(serializer.data) # ty: ignore[invalid-return-type] + return list(serializer.data) return [] diff --git a/engine/core/signals.py b/engine/core/signals.py index 3f4b8aca..43fe5e65 100644 --- a/engine/core/signals.py +++ b/engine/core/signals.py @@ -31,7 +31,7 @@ from engine.core.utils.emailing import ( send_promocode_created_email, ) from engine.vibes_auth.models import User -from evibes.utils.misc import create_object +from schon.utils.misc import create_object logger = logging.getLogger(__name__) diff --git a/engine/core/static/favicon.ico b/engine/core/static/favicon.ico index f3ba783b..64dfc9ae 100644 Binary files a/engine/core/static/favicon.ico and b/engine/core/static/favicon.ico differ diff --git a/engine/core/static/favicon.png b/engine/core/static/favicon.png index 1edacbc4..448cd452 100644 Binary files a/engine/core/static/favicon.png and b/engine/core/static/favicon.png differ diff --git a/engine/core/static/icon1024.png b/engine/core/static/icon1024.png new file mode 100644 index 00000000..448cd452 Binary files /dev/null and b/engine/core/static/icon1024.png differ diff --git a/engine/core/static/icon192.png b/engine/core/static/icon192.png new file mode 100644 index 00000000..71a7a697 Binary files /dev/null and b/engine/core/static/icon192.png differ diff --git a/engine/core/static/icon512.png b/engine/core/static/icon512.png new file mode 100644 index 00000000..30754a18 Binary files /dev/null and b/engine/core/static/icon512.png differ diff --git a/engine/core/static/logo.png b/engine/core/static/logo.png index 260d9404..ecf8c1a1 100644 Binary files a/engine/core/static/logo.png and b/engine/core/static/logo.png differ diff --git a/engine/core/tasks.py b/engine/core/tasks.py index f45eae79..7851b74a 100644 --- a/engine/core/tasks.py +++ b/engine/core/tasks.py @@ -14,6 +14,7 @@ from django.conf import settings from django.core.cache import cache from django.core.management import call_command +from engine.core.feeds import FEED_GENERATORS from engine.core.models import Product, Promotion from engine.core.utils.caching import set_default_cache from engine.core.utils.vendors import get_vendors_integrations @@ -238,3 +239,59 @@ def process_promotions() -> tuple[bool, str]: promotion.products.add(product) return True, "Promotions updated successfully." + + +@shared_task(queue="default") +def generate_marketplace_feeds_task() -> tuple[bool, str]: + """ + Generate product feeds for configured marketplaces. + + This task reads the EXPORT_TO_MARKETPLACES constance setting and generates + feeds for each specified marketplace. Supported marketplaces: + - google_merchant: Google Merchant Center (XML/JSON) + - yandex_market: Yandex Market YML format + - yandex_products: Yandex Products/Webmaster format + - amazon_seller: Amazon Seller Central format + + The feeds are saved to /media/feeds/. + """ + export_config = config.EXPORT_TO_MARKETPLACES + if not export_config or not export_config.strip(): + logger.info("EXPORT_TO_MARKETPLACES is empty, skipping feed generation") + return True, "No marketplaces configured for export" + + marketplaces = [m.strip().lower() for m in export_config.split(",") if m.strip()] + + if not marketplaces: + logger.info("No valid marketplaces found in EXPORT_TO_MARKETPLACES") + return True, "No valid marketplaces configured" + + generated_feeds: list[str] = [] + errors: list[str] = [] + + for marketplace in marketplaces: + if marketplace not in FEED_GENERATORS: + error_msg = f"Unknown marketplace: {marketplace}" + logger.warning(error_msg) + errors.append(error_msg) + continue + + try: + generator_class = FEED_GENERATORS[marketplace] + generator = generator_class(locale=settings.LANGUAGE_CODE) + output_path = generator.generate() + generated_feeds.append(f"{marketplace}: {output_path}") + logger.info("Successfully generated feed for %s", marketplace) + except Exception as e: + error_msg = f"Failed to generate {marketplace} feed: {e!s}" + logger.error(error_msg, exc_info=True) + errors.append(error_msg) + + if errors and not generated_feeds: + return False, f"All feeds failed: {'; '.join(errors)}" + + result_msg = f"Generated feeds: {', '.join(generated_feeds)}" + if errors: + result_msg += f"; Errors: {'; '.join(errors)}" + + return True, result_msg diff --git a/engine/core/templates/admin/dashboard/_income_overview.html b/engine/core/templates/admin/dashboard/_income_overview.html index c42c8c29..ba626dda 100644 --- a/engine/core/templates/admin/dashboard/_income_overview.html +++ b/engine/core/templates/admin/dashboard/_income_overview.html @@ -1,118 +1,97 @@ -{% load i18n unfold arith %} +{% load i18n unfold arith humanize %} -{% with gross=revenue_gross_30|default:0 returns=returns_30|default:0 %} - {% with total=gross|add:returns %} - {% component "unfold/components/card.html" with class="xl:col-span-2" %} - {% component "unfold/components/title.html" %} - {% trans "Income overview" %} - {% endcomponent %} - - {% with net=revenue_net_30|default:0 %} - {% with tax_amt=gross|sub:net %} - {% with returns_capped=returns %} - {% if returns > gross %} - {% with returns_capped=gross %}{% endwith %} - {% endif %} - {% with tax_amt_pos=tax_amt %} - {% if tax_amt_pos < 0 %} - {% with tax_amt_pos=0 %}{% endwith %} - {% endif %} - {% with net_for_pie=gross|sub:tax_amt_pos|sub:returns_capped %} - {% if net_for_pie < 0 %} - {% with net_for_pie=0 %}{% endwith %} - {% endif %} -
-
- -
-
-
- - {% trans "Net" %}: - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ net }} -
- {% if tax_amt_pos > 0 %} -
- - {% trans "Taxes" %}: - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ tax_amt_pos|floatformat:2 }} -
- {% endif %} -
- - {% trans "Returns" %}: - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ returns }} -
-
- - {% trans "Gross (pie total)" %}: - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ gross }} -
-
-
- - - {% endwith %} - {% endwith %} - {% endwith %} - {% endwith %} - {% endwith %} +{% with gross=revenue_gross_30|default:0 net=revenue_net_30|default:0 returns=returns_30|default:0 %} + {% component "unfold/components/card.html" with class="xl:col-span-2" %} + {% component "unfold/components/title.html" %} + {% trans "Income overview" %} {% endcomponent %} - {% endwith %} + +
+
+ +
+
+
+ + {% trans "Net revenue" %}: + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ net|floatformat:0|intcomma }} +
+
+ + {% trans "Returns" %}: + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ returns|floatformat:0|intcomma }} +
+
+ + {% trans "GMV" %}: + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ gross|floatformat:0|intcomma }} +
+
+
+ + + {% endcomponent %} {% endwith %} diff --git a/engine/core/templates/admin/dashboard/_kpis.html b/engine/core/templates/admin/dashboard/_kpis.html index d3dcb255..030fc0be 100644 --- a/engine/core/templates/admin/dashboard/_kpis.html +++ b/engine/core/templates/admin/dashboard/_kpis.html @@ -1,4 +1,4 @@ -{% load i18n unfold %} +{% load i18n unfold humanize %}
{% component "unfold/components/card.html" %} @@ -11,7 +11,7 @@ {% endwith %}
{% component "unfold/components/title.html" %} - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ kpi.gmv.value|default:0 }} + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ kpi.gmv.value|default:0|floatformat:0|intcomma }} {% endcomponent %} {% endcomponent %} @@ -39,7 +39,7 @@ {% endwith %} {% component "unfold/components/title.html" %} - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ kpi.aov.value|default:0 }} + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ kpi.aov.value|default:0|floatformat:2|intcomma }} {% endcomponent %} {% endcomponent %} @@ -53,7 +53,7 @@ {% endwith %} {% component "unfold/components/title.html" %} - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ kpi.net.value|default:0 }} + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ kpi.net.value|default:0|floatformat:0|intcomma }} {% endcomponent %} {% endcomponent %} @@ -70,7 +70,7 @@ {{ kpi.refund_rate.value|default:0 }}% {% endcomponent %} {% component "unfold/components/text.html" with class="text-xs text-gray-500 dark:text-gray-400" %} - {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ returns_amount|default:0 }} {% trans "returned" %} + {% if currency_symbol %}{{ currency_symbol }}{% endif %}{{ returns_amount|default:0|floatformat:0|intcomma }} {% trans "returned" %} {% endcomponent %} {% endcomponent %} diff --git a/engine/core/templates/admin/dashboard/_low_stock.html b/engine/core/templates/admin/dashboard/_low_stock.html index c8677f4e..4f658d3a 100644 --- a/engine/core/templates/admin/dashboard/_low_stock.html +++ b/engine/core/templates/admin/dashboard/_low_stock.html @@ -6,24 +6,28 @@ {% endcomponent %} {% if low_stock_products %} - + {% else %} {% component "unfold/components/text.html" with class="text-sm text-gray-500 dark:text-gray-400" %} {% trans "No low stock items." %} diff --git a/engine/core/templates/admin/index.html b/engine/core/templates/admin/index.html index 7e98c630..87f141ef 100644 --- a/engine/core/templates/admin/index.html +++ b/engine/core/templates/admin/index.html @@ -58,7 +58,7 @@
{% component "unfold/components/text.html" with class="text-center text-xs text-gray-500 dark:text-gray-400" %} - eVibes {{ evibes_version }} · Wiseless Team + Schon {{ schon_version }} · Wiseless Team {% endcomponent %}
diff --git a/engine/core/utils/commerce.py b/engine/core/utils/commerce.py index 4a9e2c91..c52254e1 100644 --- a/engine/core/utils/commerce.py +++ b/engine/core/utils/commerce.py @@ -65,11 +65,21 @@ def get_revenue(clear: bool = True, period: timedelta = timedelta(days=30)) -> f def get_returns(period: timedelta = timedelta(days=30)) -> float: - order_products = get_period_order_products(period, ["RETURNED"]) + """Get total value of returned order products within the period. + + Returns are counted regardless of order status - a RETURNED OrderProduct + counts as a return whether the order is FINISHED or FAILED. + """ + current = now() + period_start = current - period total_returns: float = ( - order_products.aggregate( - total=Coalesce(Sum(F("buy_price") * F("quantity")), 0.0) - ).get("total") + OrderProduct.objects.filter( + status="RETURNED", + order__buy_time__lte=current, + order__buy_time__gte=period_start, + ) + .aggregate(total=Coalesce(Sum(F("buy_price") * F("quantity")), 0.0)) + .get("total") or 0.0 ) try: @@ -131,12 +141,16 @@ def get_daily_gross_revenue( def get_top_returned_products( period: timedelta = timedelta(days=30), limit: int = 10 ) -> list[dict[str, Any]]: + """Get top returned products within the period. + + Returns are counted regardless of order status - a RETURNED OrderProduct + counts as a return whether the order is FINISHED or FAILED. + """ current = now() period_start = current - period qs = ( OrderProduct.objects.filter( status="RETURNED", - order__status="FINISHED", order__buy_time__lte=current, order__buy_time__gte=period_start, product__isnull=False, diff --git a/engine/core/utils/db.py b/engine/core/utils/db.py index 6bf67de1..af50feea 100644 --- a/engine/core/utils/db.py +++ b/engine/core/utils/db.py @@ -28,7 +28,7 @@ class TweakedAutoSlugField(AutoSlugField): if callable(lookup_value): return f"{lookup_value(model_instance)}" - lookup_value_path = lookup_value.split(LOOKUP_SEP) # ty: ignore[possibly-missing-attribute] + lookup_value_path = lookup_value.split(LOOKUP_SEP) attr = model_instance for elem in lookup_value_path: diff --git a/engine/core/utils/vendors.py b/engine/core/utils/vendors.py index 3edf4304..714caa7d 100644 --- a/engine/core/utils/vendors.py +++ b/engine/core/utils/vendors.py @@ -2,7 +2,7 @@ import logging from engine.core.models import Vendor from engine.core.vendors import AbstractVendor -from evibes.utils.misc import create_object +from schon.utils.misc import create_object logger = logging.getLogger(__name__) diff --git a/engine/core/vendors/__init__.py b/engine/core/vendors/__init__.py index ebe72bc5..1b10b38c 100644 --- a/engine/core/vendors/__init__.py +++ b/engine/core/vendors/__init__.py @@ -2,21 +2,26 @@ import gzip import json import logging import time +from abc import ABC, abstractmethod from contextlib import suppress from datetime import datetime from decimal import Decimal from io import BytesIO from math import ceil, log10 -from typing import Any +from typing import TYPE_CHECKING, Any from constance import config from django.conf import settings from django.core.files.base import ContentFile from django.db import IntegrityError, transaction -from django.db.models import QuerySet from django.db.utils import OperationalError from engine.core.elasticsearch import process_system_query +from engine.core.managers import ( + AttributeValueQuerySet, + ProductQuerySet, + StockQuerySet, +) from engine.core.models import ( Attribute, AttributeGroup, @@ -24,13 +29,15 @@ from engine.core.models import ( Brand, Category, Product, - ProductImage, Stock, Vendor, ) from engine.payments.errors import RatesError from engine.payments.utils import get_rates -from evibes.utils.misc import LoggingError, LogLevel +from schon.utils.misc import LoggingError, LogLevel + +if TYPE_CHECKING: + from engine.core.models import OrderProduct logger = logging.getLogger(__name__) @@ -87,9 +94,9 @@ class ProductUnapdatableError(VendorError): pass -class AbstractVendor: +class AbstractVendor(ABC): """ - Abstract class defining vendor-related operations and handling. + Abstract base class defining vendor-related operations and handling. This class provides methods to manage and manipulate data related to a vendor and its associated products, stocks, and attributes. These include utility @@ -97,18 +104,79 @@ class AbstractVendor: specific markup percentages, retrieving vendor instances, fetching queryset data for products and stocks, and performing bulk operations like updates or deletions on inactive objects. + + Abstract Methods (must be implemented by subclasses): + - get_products(): Fetch products from vendor's API + - update_stock(): Synchronize product stock with vendor + - update_order_products_statuses(): Update order product statuses from vendor + - buy_order_product(): Process purchase of a digital product from vendor + + Public Methods (for use by subclasses): + - get_vendor_instance(): Get the Vendor model instance + - prepare_for_stock_update(): Mark products before sync + - delete_inactives(): Clean up stale products after sync + - delete_belongings(): Remove all vendor data + - resolve_price(): Apply markup to prices + - resolve_price_with_currency(): Convert and resolve prices + - auto_resolve_category(): Find or create category by name + - auto_resolve_brand(): Find or create brand by name + - process_attribute(): Create/update product attributes + - get_or_create_attribute_safe(): Safely create attributes + + Protected Methods (internal helpers, can be overridden): + - _log(): Internal logging with level support + - _save_response(): Save API response for debugging + - _chunk_data(): Split data into batches + - _auto_convert_value(): Convert attribute values to typed format + - _auto_resolver_helper(): Internal brand/category resolution + - _round_price_marketologically(): Apply psychological pricing + - _get_products_queryset(): Get vendor's products queryset + - _get_stocks_queryset(): Get vendor's stocks queryset + - _get_attribute_values_queryset(): Get vendor's attribute values + - _check_updatable(): Validate product can be updated + + Example usage: + class MyVendorIntegration(AbstractVendor): + def __init__(self): + super().__init__(vendor_name="MyVendor", currency="EUR") + + def get_products(self) -> list[dict]: + # Fetch products from vendor API + return api_client.get_products() + + def update_stock(self) -> None: + products = self.get_products() + self.prepare_for_stock_update() + # Process and save products... + self.delete_inactives() + + def update_order_products_statuses(self) -> None: + # Check and update order statuses from vendor + pass + + def buy_order_product(self, order_product: OrderProduct) -> None: + # Purchase digital product from vendor + pass """ + #: Name of the vendor as stored in the database + vendor_name: str + #: Default currency for price operations + currency: str + #: List of attribute names to skip during processing + blocked_attributes: list[Any] + def __init__(self, vendor_name: str = "", currency: str = "USD") -> None: self.vendor_name = vendor_name self.currency = currency - self.blocked_attributes: list[Any] = [] + self.blocked_attributes = [] def __str__(self) -> str: vendor = self.get_vendor_instance(safe=True) return str(vendor.name) if vendor else self.vendor_name - def log(self, level: LogLevel, message: str) -> None: + def _log(self, level: LogLevel, message: str) -> None: + """Internal logging helper with level-based formatting.""" match level: case LogLevel.DEBUG: if settings.DEBUG: @@ -129,7 +197,7 @@ class AbstractVendor: case _: raise LoggingError("Wrong type of logging level passed: %s", level) - def save_response(self, data: dict[Any, Any] | list[Any]) -> None: + def _save_response(self, data: dict[Any, Any] | list[Any]) -> None: with suppress(Exception): if settings.DEBUG or config.SAVE_VENDORS_RESPONSES: vendor_instance = self.get_vendor_instance() @@ -161,13 +229,13 @@ class AbstractVendor: filename = f"response_{timestamp}.json" content = ContentFile(json_bytes) - self.log(LogLevel.DEBUG, f"Saving vendor's response to {filename}") + self._log(LogLevel.DEBUG, f"Saving vendor's response to {filename}") vendor_instance.last_processing_response.save( filename, content, save=True ) - self.log( + self._log( LogLevel.DEBUG, f"Saved vendor's response to {filename} successfuly!", ) @@ -176,9 +244,10 @@ class AbstractVendor: raise VendorDebuggingError("Could not save response") @staticmethod - def chunk_data( + def _chunk_data( data: list[Any] | None = None, num_chunks: int = 20 ) -> list[list[Any]] | list[Any]: + """Split data into approximately equal chunks for batch processing.""" if not data: return [] total = len(data) @@ -188,12 +257,15 @@ class AbstractVendor: return [data[i : i + chunk_size] for i in range(0, total, chunk_size)] @staticmethod - def auto_convert_value(value: Any) -> tuple[Any, str]: + def _auto_convert_value(value: Any) -> tuple[Any, str]: """ - Attempts to convert a value to a more specific type. + Convert a value to a more specific type for attribute storage. + Handles booleans, numbers, objects (dicts), and arrays (lists), even when they are provided as strings. - Returns a tuple of (converted_value, type_label). + + Returns: + Tuple of (converted_value, type_label). """ # First, handle native types if isinstance(value, bool): @@ -247,9 +319,10 @@ class AbstractVendor: return value, "string" @staticmethod - def auto_resolver_helper( + def _auto_resolver_helper( model: type[Brand] | type[Category], resolving_name: str ) -> Brand | Category | None: + """Internal helper for resolving Brand/Category by name with deduplication.""" queryset = model.objects.filter(name=resolving_name) if not queryset.exists(): if len(resolving_name) > 255: @@ -288,7 +361,7 @@ class AbstractVendor: except Category.DoesNotExist: pass - return self.auto_resolver_helper(Category, category_name) + return self._auto_resolver_helper(Category, category_name) def auto_resolve_brand(self, brand_name: str = "") -> Brand | None: if brand_name: @@ -306,7 +379,7 @@ class AbstractVendor: except Brand.DoesNotExist: pass - return self.auto_resolver_helper(Brand, brand_name) + return self._auto_resolver_helper(Brand, brand_name) def resolve_price( self, @@ -350,9 +423,9 @@ class AbstractVendor: return float(round(price / rate, 2)) if rate else float(round(price, 2)) # ty: ignore[unsupported-operator] @staticmethod - def round_price_marketologically(price: float) -> float: + def _round_price_marketologically(price: float) -> float: """ - Marketological rounding with no cents: + Apply psychological pricing rounding. - Prices < 1: leave exactly as-is. - Prices ≥ 1: drop any fractional part, then @@ -383,6 +456,19 @@ class AbstractVendor: return float(psychological) def get_vendor_instance(self, safe: bool = False) -> Vendor | None: + """ + Retrieve the Vendor model instance for this integration. + + Args: + safe: If True, return None instead of raising exceptions. + + Returns: + The Vendor instance if found and active, None if safe=True and not found. + + Raises: + VendorInactiveError: If vendor exists but is inactive (when safe=False). + Exception: If vendor does not exist (when safe=False). + """ try: vendor = Vendor.objects.get(name=self.vendor_name) if vendor.is_active: @@ -397,80 +483,127 @@ class AbstractVendor: f"No matching vendor found with name {self.vendor_name!r}..." ) from dne + @abstractmethod def get_products(self) -> Any: - pass + """ + Fetch products from the vendor's external API or data source. - def get_products_queryset(self) -> QuerySet[Product]: - return Product.objects.filter( - stocks__vendor=self.get_vendor_instance(), orderproduct__isnull=True - ) + This method should be implemented to retrieve product data from + the vendor's system. The format of returned data is vendor-specific. - def get_stocks_queryset(self) -> QuerySet[Stock]: - return Stock.objects.filter( - product__in=self.get_products_queryset(), product__orderproduct__isnull=True - ) + Returns: + Product data in vendor-specific format (list, dict, etc.) + """ + ... - def get_attribute_values_queryset(self) -> QuerySet[AttributeValue]: - return AttributeValue.objects.filter( - product__in=self.get_products_queryset(), product__orderproduct__isnull=True - ) + def _get_products_queryset(self) -> ProductQuerySet: + """ + Get a queryset of products associated with this vendor. + + Returns products that: + - Have stocks from this vendor + - Are not part of any orders (safe to modify/delete) + """ + vendor = self.get_vendor_instance() + if not vendor: + return Product.objects.none() # type: ignore[return-value] + return Product.objects.for_vendor_not_in_orders(vendor) + + def _get_stocks_queryset(self) -> StockQuerySet: + """ + Get a queryset of stocks associated with this vendor. + + Returns stocks that: + - Belong to this vendor + - Are for products not in any orders + """ + vendor = self.get_vendor_instance() + if not vendor: + return Stock.objects.none() # type: ignore[return-value] + return Stock.objects.for_vendor_not_in_orders(vendor) + + def _get_attribute_values_queryset(self) -> AttributeValueQuerySet: + """ + Get a queryset of attribute values for this vendor's products. + + Returns attribute values for products that: + - Have stocks from this vendor + - Are not part of any orders + """ + vendor = self.get_vendor_instance() + if not vendor: + return AttributeValue.objects.none() # type: ignore[return-value] + return AttributeValue.objects.for_vendor_not_in_orders(vendor) def prepare_for_stock_update(self, method: str = "deactivate") -> None: - products = self.get_products_queryset() - if products is None: + """ + Prepare products for stock update by marking them for potential deletion. + + This should be called before update_stock() to mark existing products. + Products that are re-activated during update_stock() will be kept; + those that remain marked will be cleaned up by delete_inactives(). + + Args: + method: How to mark products: + - "deactivate": Set is_active=False (default) + - "delete": Delete immediately (use with caution) + - "description": Mark with special description marker + """ + products = self._get_products_queryset() + if not products.exists(): return - # noinspection PyUnreachableCode match method: case "deactivate": - products.update(is_active=False) + products.mark_inactive() case "delete": products.delete() case "description": - products.update(description="EVIBES_DELETED_PRODUCT") + products.mark_for_deletion() case _: raise ValueError(f"Invalid method {method!r} for products update...") def delete_inactives( - self, inactivation_method: str = "deactivate", size: int = 5000 - ) -> None: - filter_kwargs: dict[str, Any] = dict() + self, inactivation_method: str = "deactivate", batch_size: int = 5000 + ) -> int: + """ + Delete products that were marked during prepare_for_stock_update(). + + This should be called after update_stock() completes to clean up + products that no longer exist in the vendor's catalog. + + Args: + inactivation_method: The method used in prepare_for_stock_update(): + - "deactivate": Delete products with is_active=False + - "description": Delete products with deletion marker + batch_size: Number of products to delete per batch. + + Returns: + Total number of products deleted. + """ + products_qs = self._get_products_queryset() match inactivation_method: case "deactivate": - filter_kwargs: dict[str, Any] = {"is_active": False} + products_qs = products_qs.filter(is_active=False) case "description": - filter_kwargs: dict[str, Any] = { - "description__exact": "EVIBES_DELETED_PRODUCT" - } + products_qs = products_qs.marked_for_deletion() case _: raise ValueError( f"Invalid method {inactivation_method!r} for products cleaner..." ) - if filter_kwargs == {}: - raise ValueError("Invalid filter kwargs...") - - while True: - products = self.get_products_queryset() - - if products is None: - return - - batch_ids = list( - products.filter(**filter_kwargs).values_list("pk", flat=True)[:size] - ) - if not batch_ids: - break - with suppress(Exception): - AttributeValue.objects.filter(product_id__in=batch_ids).delete() - ProductImage.objects.filter(product_id__in=batch_ids).delete() - Product.objects.filter(pk__in=batch_ids).delete() + return products_qs.delete_with_related(batch_size=batch_size) def delete_belongings(self) -> None: - self.get_products_queryset().delete() - self.get_stocks_queryset().delete() - self.get_attribute_values_queryset().delete() + """ + Delete all products, stocks, and attribute values for this vendor. + + Warning: This is a destructive operation. Use with caution. + """ + self._get_attribute_values_queryset().delete() + self._get_stocks_queryset().delete() + self._get_products_queryset().delete() def get_or_create_attribute_safe( self, *, name: str, attr_group: AttributeGroup @@ -499,20 +632,20 @@ class AbstractVendor: def process_attribute( self, key: str, value: Any, product: Product, attr_group: AttributeGroup ) -> AttributeValue | None: - self.log( + self._log( LogLevel.DEBUG, f"Trying to save attribute {key} with value {value} to {attr_group.name} of {product.pk}", ) if not value: - self.log( + self._log( LogLevel.WARNING, f"No value for attribute {key!r} at {product.name!r}...", ) return None if not attr_group: - self.log( + self._log( LogLevel.WARNING, f"No group for attribute {key!r} at {product.name!r}...", ) @@ -521,7 +654,7 @@ class AbstractVendor: if key in self.blocked_attributes: return None - value, attr_value_type = self.auto_convert_value(value) + value, attr_value_type = self._auto_convert_value(value) if len(key) > 255: key = key[:255] @@ -557,7 +690,7 @@ class AbstractVendor: continue raise except IntegrityError: - self.log( + self._log( LogLevel.WARNING, f"IntegrityError while processing attribute {key!r}...", ) @@ -570,23 +703,95 @@ class AbstractVendor: defaults={"is_active": True}, ) - self.log( + self._log( LogLevel.DEBUG, f"Succesfully saved attribute {key} with value {value} to {attr_group.name} of {product.pk} into {av.uuid}", ) return av - def check_updatable(self, product: Product) -> None: + def _check_updatable(self, product: Product) -> None: + """ + Check if a product can be updated by vendor sync. + + Args: + product: The product to check. + + Raises: + ProductUnapdatableError: If the product is marked as non-updatable. + """ if not product.is_updatable: raise ProductUnapdatableError("Product %s is not updatable", product.sku) + @abstractmethod def update_stock(self) -> None: - pass + """ + Synchronize product stock data from the vendor's system. + This method should: + 1. Call prepare_for_stock_update() to mark existing products + 2. Fetch current product data via get_products() + 3. Create/update products, stocks, and attributes + 4. Call delete_inactives() to remove stale products + + Example implementation: + def update_stock(self) -> None: + self.prepare_for_stock_update(method="deactivate") + products_data = self.get_products() + for item in products_data: + # Process and save product... + pass + self.delete_inactives(inactivation_method="deactivate") + """ + ... + + @abstractmethod def update_order_products_statuses(self) -> None: - pass + """ + Update the statuses of order products from the vendor's system. + + This method should check the vendor's API for status updates + on pending orders and update the corresponding OrderProduct + records in the database. + + Example implementation: + def update_order_products_statuses(self) -> None: + pending_orders = OrderProduct.objects.filter( + status="DELIVERING", + product__stocks__vendor__name=self.vendor_name + ) + for order_product in pending_orders: + status = self.api.check_status(order_product.external_id) + if status == "delivered": + order_product.status = "FINISHED" + order_product.save() + """ + ... + + @abstractmethod + def buy_order_product(self, order_product: "OrderProduct") -> None: + """ + Process the purchase of a product from the vendor. + + This method is called when a customer orders a digital product + that needs to be fulfilled through the vendor's API. + + Args: + order_product: The OrderProduct instance to fulfill. + + Example implementation: + def buy_order_product(self, order_product: OrderProduct) -> None: + result = self.api.purchase( + sku=order_product.product.sku, + quantity=order_product.quantity + ) + order_product.external_id = result["order_id"] + order_product.status = "DELIVERING" + order_product.save() + """ + ... def delete_stale() -> None: - Product.objects.filter(stocks__isnull=True, orderproduct__isnull=True).delete() + """Delete all stale products (products with no stocks and not in orders).""" + Product.objects.stale().delete() diff --git a/engine/core/vendors/docs/.gitkeep b/engine/core/vendors/docs/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/engine/core/views.py b/engine/core/views.py index 28816274..07d9404b 100644 --- a/engine/core/views.py +++ b/engine/core/views.py @@ -86,7 +86,7 @@ from engine.core.utils.commerce import ( from engine.core.utils.emailing import contact_us_email from engine.core.utils.languages import get_flag_by_language from engine.payments.serializers import TransactionProcessSerializer -from evibes.utils.renderers import camelize +from schon.utils.renderers import camelize logger = logging.getLogger(__name__) @@ -207,7 +207,7 @@ class CacheOperatorView(APIView): return Response( data=web_cache( request, - request.data.get("key") or "", # ty: ignore[invalid-argument-type] + request.data.get("key") or "", request.data.get("data", {}), request.data.get("timeout"), ), @@ -414,7 +414,7 @@ def favicon_view(request: HttpRequest) -> HttpResponse | FileResponse: # noinspection PyTypeChecker favicon_view.__doc__ = str( - _( # ty: ignore[invalid-assignment] + _( "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static directory of the project. " "If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." @@ -428,7 +428,7 @@ def index(request: HttpRequest, *args, **kwargs) -> HttpResponse | HttpResponseR # noinspection PyTypeChecker index.__doc__ = str( - _( # ty: ignore[invalid-assignment] + _( "Redirects the request to the admin index page. " "The function handles incoming HTTP requests and redirects them to the Django " "admin interface index page. It uses Django's `redirect` function for handling " @@ -438,11 +438,11 @@ index.__doc__ = str( def version(request: HttpRequest, *args, **kwargs) -> HttpResponse: - return JsonResponse(camelize({"version": settings.EVIBES_VERSION}), status=200) + return JsonResponse(camelize({"version": settings.SCHON_VERSION}), status=200) # noinspection PyTypeChecker -version.__doc__ = str(_("Returns current version of the eVibes. ")) # ty: ignore[invalid-assignment] +version.__doc__ = str(_("Returns current version of the Schon. ")) def dashboard_callback(request: HttpRequest, context: Context) -> Context: @@ -457,80 +457,70 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: prev_end = cur_start revenue_gross_cur: float = get_revenue(clear=False, period=period) - revenue_net_cur: float = get_revenue(clear=True, period=period) returns_cur: float = get_returns(period=period) + revenue_net_before_returns: float = get_revenue(clear=True, period=period) + revenue_net_cur: float = max(revenue_net_before_returns - returns_cur, 0.0) processed_orders_cur: int = get_total_processed_orders(period=period) - orders_finished_cur = 0 - - with suppress(Exception): - orders_finished_cur: int = Order.objects.filter( - status="FINISHED", buy_time__lte=now_dt, buy_time__gte=cur_start - ).count() + orders_finished_cur: int = Order.objects.filter( + status="FINISHED", buy_time__lte=now_dt, buy_time__gte=cur_start + ).count() def sum_gross_between(start: date | None, end: date | None) -> float: - result = 0.0 - with suppress(Exception): - qs = ( - OrderProduct.objects.filter( - status__in=["FINISHED"], order__status="FINISHED" - ) - .filter(order__buy_time__lt=end, order__buy_time__gte=start) - .aggregate(total=Sum(F("buy_price") * F("quantity"))) + qs = ( + OrderProduct.objects.filter( + status__in=["FINISHED"], order__status="FINISHED" ) - total = qs.get("total") or 0.0 - result = round(float(total), 2) + .filter(order__buy_time__lt=end, order__buy_time__gte=start) + .aggregate(total=Sum(F("buy_price") * F("quantity"))) + ) + total = qs.get("total") or 0.0 + result = round(float(total), 2) return result def sum_returns_between(start: date | None, end: date | None) -> float: - result = 0.0 - with suppress(Exception): - qs = ( - OrderProduct.objects.filter(status__in=["RETURNED"]) # returned items - .filter(order__buy_time__lt=end, order__buy_time__gte=start) - .aggregate(total=Sum(F("buy_price") * F("quantity"))) - ) - total = qs.get("total") or 0.0 - result = round(float(total), 2) + qs = ( + OrderProduct.objects.filter(status__in=["RETURNED"]) # returned items + .filter(order__buy_time__lt=end, order__buy_time__gte=start) + .aggregate(total=Sum(F("buy_price") * F("quantity"))) + ) + total = qs.get("total") or 0.0 + result = round(float(total), 2) return result def count_finished_orders_between(start: date | None, end: date | None) -> int: - result = 0 - with suppress(Exception): - result = Order.objects.filter( - status="FINISHED", buy_time__lt=end, buy_time__gte=start - ).count() + result = Order.objects.filter( + status="FINISHED", buy_time__lt=end, buy_time__gte=start + ).count() return result revenue_gross_prev = sum_gross_between(prev_start, prev_end) returns_prev = sum_returns_between(prev_start, prev_end) orders_finished_prev = count_finished_orders_between(prev_start, prev_end) - tax_rate = 0.0 - tax_included = False - with suppress(Exception): - tax_rate = float(getattr(config, "TAX_RATE", 0.0) or 0.0) - tax_included = bool(getattr(config, "TAX_INCLUDED", False)) + tax_rate = float(getattr(config, "TAX_RATE", 0.0) or 0.0) + tax_included = bool(getattr(config, "TAX_INCLUDED", False)) if tax_rate <= 0: - revenue_net_prev = revenue_gross_prev + revenue_net_before_returns_prev = revenue_gross_prev else: if tax_included: divisor = 1.0 + (tax_rate / 100.0) - revenue_net_prev = ( + revenue_net_before_returns_prev = ( revenue_gross_prev / divisor if divisor > 0 else revenue_gross_prev ) else: - revenue_net_prev = revenue_gross_prev - revenue_net_prev = round(float(revenue_net_prev or 0.0), 2) + revenue_net_before_returns_prev = revenue_gross_prev + revenue_net_prev = max( + round(float(revenue_net_before_returns_prev or 0.0), 2) - returns_prev, 0.0 + ) def pct_delta(cur: float | int, prev: float | int) -> float: - result = 0.0 - with suppress(Exception): - cur_f = float(cur or 0) - prev_f = float(prev or 0) - if prev_f == 0: - result = 0.0 if cur_f == 0 else 100.0 + cur_f = float(cur or 0) + prev_f = float(prev or 0) + if prev_f == 0: + result = 0.0 if cur_f == 0 else 100.0 + else: result = round(((cur_f - prev_f) / prev_f) * 100.0, 1) return result @@ -584,13 +574,15 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: }, } currency_symbol: str = "" - with suppress(Exception): + try: currency_symbol = dict(getattr(settings, "CURRENCIES_WITH_SYMBOLS", ())).get( getattr(settings, "CURRENCY_CODE", ""), "" ) + except Exception as exc: + logger.error("Failed to get currency symbol: %s", exc) quick_links: list[dict[str, str]] = [] - with suppress(Exception): + try: quick_links_section = settings.UNFOLD.get("SIDEBAR", {}).get("navigation", [])[ 1 ] @@ -606,10 +598,12 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: **({"icon": item.get("icon")} if item.get("icon") else {}), } ) + except Exception as exc: + logger.error("Failed to build quick links: %s", exc) most_wished: dict[str, str | int | float | None] | None = None most_wished_list: list[dict[str, str | int | float | None]] = [] - with suppress(Exception): + try: wished_qs = ( Wishlist.objects.filter(user__is_active=True, user__is_staff=False) .values("products") @@ -655,6 +649,8 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "count": int(row.get("cnt", 0)), } ) + except Exception as exc: + logger.error("Failed to build most wished list: %s", exc) try: today = tz_now().date() @@ -679,7 +675,7 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: context["daily_labels"] = [] context["daily_orders"] = [] context["daily_gross"] = [] - with suppress(Exception): + try: today = tz_now().date() days = period_days date_axis = [today - timedelta(days=i) for i in range(days - 1, -1, -1)] @@ -689,31 +685,35 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: context["daily_title"] = _("Revenue & Orders (last %(days)d)") % { "days": period_days } + except Exception as exc: + logger.error("Failed to build daily stats: %s", exc) - low_stock_list: list[dict[str, str | int]] = [] - with suppress(Exception): + low_stock_list: list[dict[str, str | int | None]] = [] + try: products = ( Product.objects.annotate(total_qty=Sum("stocks__quantity")) - .values("id", "name", "sku", "total_qty") + .prefetch_related("images") .order_by("total_qty")[:5] ) for p in products: - qty = int(p.get("total_qty") or 0) + qty = int(p.total_qty or 0) + img = "" + with suppress(Exception): + img = p.images.first().image_url if p.images.exists() else "" low_stock_list.append( { - "name": str(p.get("name") or ""), - "sku": str(p.get("sku") or ""), + "name": p.name, + "sku": p.sku or "", "qty": qty, - "admin_url": reverse( - "admin:core_product_change", args=[p.get("id")] - ), + "image": img, + "admin_url": reverse("admin:core_product_change", args=[p.pk]), } ) + except Exception as exc: + logger.error(f"Error fetching low stock products: {exc}") cache_key = f"dashboard_cb:{period_days}" - cached_pack = None - with suppress(Exception): - cached_pack = cache.get(cache_key) + cached_pack = cache.get(cache_key, None) if cached_pack is None: cached_pack = { "kpi": kpi, @@ -725,12 +725,11 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "refund_rate": refund_rate_cur, "low_stock_products": low_stock_list, } - with suppress(Exception): - cache.set(cache_key, cached_pack, 600) + cache.set(cache_key, cached_pack, 600) most_popular: dict[str, str | int | float | None] | None = None most_popular_list: list[dict[str, str | int | float | None]] = [] - with suppress(Exception): + try: popular_qs = ( OrderProduct.objects.filter( status="FINISHED", order__status="FINISHED", product__isnull=False @@ -777,6 +776,8 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "count": int(row.get("total_qty", 0) or 0), } ) + except Exception as exc: + logger.error("Failed to build most popular list: %s", exc) customers_mix: dict[str, int | float] = { "new": 0, @@ -784,7 +785,7 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "new_pct": 0.0, "returning_pct": 0.0, } - with suppress(Exception): + try: mix = get_customer_mix() n = int(mix.get("new", 0)) r = int(mix.get("returning", 0)) @@ -798,6 +799,8 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "returning_pct": ret_pct, "total": t, } + except Exception as exc: + logger.error("Failed to build customer mix: %s", exc) shipped_vs_digital: dict[str, int | float] = { "digital_qty": 0, @@ -807,7 +810,7 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "digital_pct": 0.0, "shipped_pct": 0.0, } - with suppress(Exception): + try: svd = get_shipped_vs_digital_mix() dq = int(svd.get("digital_qty", 0)) sq = int(svd.get("shipped_qty", 0)) @@ -824,14 +827,12 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "shipped_pct": shipped_pct, } ) + except Exception as exc: + logger.error("Failed to build shipped vs digital mix: %s", exc) - most_returned_products: list[dict[str, str | int | float]] = [] - with suppress(Exception): - most_returned_products = get_top_returned_products() + most_returned_products = get_top_returned_products() - top_categories: list[dict[str, str | int | float]] = [] - with suppress(Exception): - top_categories = get_top_categories_by_qty() + top_categories = get_top_categories_by_qty() context.update( { @@ -849,7 +850,7 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: "revenue_net_30": revenue_net_cur, "returns_30": returns_cur, "processed_orders_30": processed_orders_cur, - "evibes_version": settings.EVIBES_VERSION, + "schon_version": settings.SCHON_VERSION, "quick_links": quick_links, "most_wished_product": most_wished, "most_popular_product": most_popular, @@ -867,4 +868,4 @@ def dashboard_callback(request: HttpRequest, context: Context) -> Context: return context -dashboard_callback.__doc__ = str(_("Returns custom variables for Dashboard. ")) # ty: ignore[invalid-assignment] +dashboard_callback.__doc__ = str(_("Returns custom variables for Dashboard. ")) diff --git a/engine/core/viewsets.py b/engine/core/viewsets.py index b06111f9..d0519a17 100644 --- a/engine/core/viewsets.py +++ b/engine/core/viewsets.py @@ -67,7 +67,7 @@ from engine.core.models import ( Vendor, Wishlist, ) -from engine.core.permissions import EvibesPermission +from engine.core.permissions import SchonPermission from engine.core.serializers import ( AddOrderProductSerializer, AddressAutocompleteInputSerializer, @@ -134,20 +134,20 @@ from engine.payments.serializers import TransactionProcessSerializer logger = logging.getLogger(__name__) -class EvibesViewSet(ModelViewSet): +class SchonViewSet(ModelViewSet): __doc__ = _( - "Defines a viewset for managing Evibes-related operations. " - "The EvibesViewSet class inherits from ModelViewSet and provides functionality " - "for handling actions and operations on Evibes entities. It includes support " + "Defines a viewset for managing Schon-related operations. " + "The SchonViewSet class inherits from ModelViewSet and provides functionality " + "for handling actions and operations on Schon entities. It includes support " "for dynamic serializer classes based on the current action, customizable " "permissions, and rendering formats." ) action_serializer_classes: dict[str, Type[Serializer]] = {} additional: dict[str, str] = {} - permission_classes = [EvibesPermission] + permission_classes = [SchonPermission] - def get_serializer_class(self) -> Type[Any]: # ty: ignore[invalid-return-type] + def get_serializer_class(self) -> Type[Any]: # noinspection PyTypeChecker return self.action_serializer_classes.get( self.action, super().get_serializer_class() @@ -155,7 +155,7 @@ class EvibesViewSet(ModelViewSet): @extend_schema_view(**ATTRIBUTE_GROUP_SCHEMA) -class AttributeGroupViewSet(EvibesViewSet): +class AttributeGroupViewSet(SchonViewSet): __doc__ = _( "Represents a viewset for managing AttributeGroup objects. " "Handles operations related to AttributeGroup, including filtering, " @@ -174,7 +174,7 @@ class AttributeGroupViewSet(EvibesViewSet): @extend_schema_view(**ATTRIBUTE_SCHEMA) -class AttributeViewSet(EvibesViewSet): +class AttributeViewSet(SchonViewSet): __doc__ = _( "Handles operations related to Attribute objects within the application. " "Provides a set of API endpoints to interact with Attribute data. This class " @@ -193,7 +193,7 @@ class AttributeViewSet(EvibesViewSet): @extend_schema_view(**ATTRIBUTE_VALUE_SCHEMA) -class AttributeValueViewSet(EvibesViewSet): +class AttributeValueViewSet(SchonViewSet): __doc__ = _( "A viewset for managing AttributeValue objects. " "This viewset provides functionality for listing, retrieving, creating, updating, and deleting " @@ -212,7 +212,7 @@ class AttributeValueViewSet(EvibesViewSet): @extend_schema_view(**CATEGORY_SCHEMA) -class CategoryViewSet(EvibesViewSet): +class CategoryViewSet(SchonViewSet): __doc__ = _( "Manages views for Category-related operations. " "The CategoryViewSet class is responsible for handling operations related to " @@ -341,7 +341,7 @@ class CategoryViewSet(EvibesViewSet): @extend_schema_view(**BRAND_SCHEMA) -class BrandViewSet(EvibesViewSet): +class BrandViewSet(SchonViewSet): __doc__ = _( "Represents a viewset for managing Brand instances. " "This class provides functionality for querying, filtering, and " @@ -453,11 +453,11 @@ class BrandViewSet(EvibesViewSet): @extend_schema_view(**PRODUCT_SCHEMA) -class ProductViewSet(EvibesViewSet): +class ProductViewSet(SchonViewSet): __doc__ = _( "Manages operations related to the `Product` model in the system. " "This class provides a viewset for managing products, including their filtering, serialization, " - "and operations on specific instances. It extends from `EvibesViewSet` to use common " + "and operations on specific instances. It extends from `SchonViewSet` to use common " "functionality and integrates with the Django REST framework for RESTful API operations. " "Includes methods for retrieving product details, applying permissions, and accessing " "related feedback of a product." @@ -600,7 +600,7 @@ class ProductViewSet(EvibesViewSet): @extend_schema_view(**VENDOR_SCHEMA) -class VendorViewSet(EvibesViewSet): +class VendorViewSet(SchonViewSet): __doc__ = _( "Represents a viewset for managing Vendor objects. " "This viewset allows fetching, filtering, and serializing Vendor data. " @@ -620,13 +620,13 @@ class VendorViewSet(EvibesViewSet): @extend_schema_view(**FEEDBACK_SCHEMA) -class FeedbackViewSet(EvibesViewSet): +class FeedbackViewSet(SchonViewSet): __doc__ = _( "Representation of a view set handling Feedback objects. " "This class manages operations related to Feedback objects, including listing, " "filtering, and retrieving details. The purpose of this view set is to provide " "different serializers for different actions and implement permission-based " - "handling of accessible Feedback objects. It extends the base `EvibesViewSet` " + "handling of accessible Feedback objects. It extends the base `SchonViewSet` " "and makes use of Django's filtering system for querying data." ) @@ -647,7 +647,7 @@ class FeedbackViewSet(EvibesViewSet): # noinspection PyUnusedLocal @extend_schema_view(**ORDER_SCHEMA) -class OrderViewSet(EvibesViewSet): +class OrderViewSet(SchonViewSet): __doc__ = _( "ViewSet for managing orders and related operations. " "This class provides functionality to retrieve, modify, and manage order objects. " @@ -909,7 +909,7 @@ class OrderViewSet(EvibesViewSet): # noinspection PyUnusedLocal @extend_schema_view(**ORDER_PRODUCT_SCHEMA) -class OrderProductViewSet(EvibesViewSet): +class OrderProductViewSet(SchonViewSet): __doc__ = _( "Provides a viewset for managing OrderProduct entities. " "This viewset enables CRUD operations and custom actions specific to the " @@ -970,7 +970,7 @@ class OrderProductViewSet(EvibesViewSet): @extend_schema_view(**PRODUCT_IMAGE_SCHEMA) -class ProductImageViewSet(EvibesViewSet): +class ProductImageViewSet(SchonViewSet): __doc__ = _("Manages operations related to Product images in the application. ") queryset = ProductImage.objects.all() @@ -983,7 +983,7 @@ class ProductImageViewSet(EvibesViewSet): @extend_schema_view(**PROMOCODE_SCHEMA) -class PromoCodeViewSet(EvibesViewSet): +class PromoCodeViewSet(SchonViewSet): __doc__ = _( "Manages the retrieval and handling of PromoCode instances through various API actions." ) @@ -1015,7 +1015,7 @@ class PromoCodeViewSet(EvibesViewSet): @extend_schema_view(**PROMOTION_SCHEMA) -class PromotionViewSet(EvibesViewSet): +class PromotionViewSet(SchonViewSet): __doc__ = _("Represents a view set for managing promotions. ") queryset = Promotion.objects.all() @@ -1028,7 +1028,7 @@ class PromotionViewSet(EvibesViewSet): @extend_schema_view(**STOCK_SCHEMA) -class StockViewSet(EvibesViewSet): +class StockViewSet(SchonViewSet): __doc__ = _("Handles operations related to Stock data in the system.") queryset = Stock.objects.all() @@ -1041,7 +1041,7 @@ class StockViewSet(EvibesViewSet): @extend_schema_view(**WISHLIST_SCHEMA) -class WishlistViewSet(EvibesViewSet): +class WishlistViewSet(SchonViewSet): __doc__ = _( "ViewSet for managing Wishlist operations. " "The WishlistViewSet provides endpoints for interacting with a user's wish list, " @@ -1178,7 +1178,7 @@ class WishlistViewSet(EvibesViewSet): @extend_schema_view(**ADDRESS_SCHEMA) -class AddressViewSet(EvibesViewSet): +class AddressViewSet(SchonViewSet): __doc__ = _( "This class provides viewset functionality for managing `Address` objects. " "The AddressViewSet class enables CRUD operations, filtering, and custom actions " @@ -1257,7 +1257,7 @@ class AddressViewSet(EvibesViewSet): @extend_schema_view(**PRODUCT_TAG_SCHEMA) -class ProductTagViewSet(EvibesViewSet): +class ProductTagViewSet(SchonViewSet): __doc__ = _( "Handles operations related to Product Tags within the application. " "This class provides functionality for retrieving, filtering, and serializing " diff --git a/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo b/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo index d992cc60..e24bc220 100644 Binary files a/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo and b/engine/payments/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/ar_AR/LC_MESSAGES/django.po b/engine/payments/locale/ar_AR/LC_MESSAGES/django.po index 197e386c..8200d6ef 100644 --- a/engine/payments/locale/ar_AR/LC_MESSAGES/django.po +++ b/engine/payments/locale/ar_AR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:59+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo index 1e660dcc..0730d7cf 100644 Binary files a/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo and b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/cs_CZ/LC_MESSAGES/django.po b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.po index b928084b..abd12a59 100644 --- a/engine/payments/locale/cs_CZ/LC_MESSAGES/django.po +++ b/engine/payments/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/da_DK/LC_MESSAGES/django.mo b/engine/payments/locale/da_DK/LC_MESSAGES/django.mo index 8dd26ab7..4d49d5d1 100644 Binary files a/engine/payments/locale/da_DK/LC_MESSAGES/django.mo and b/engine/payments/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/da_DK/LC_MESSAGES/django.po b/engine/payments/locale/da_DK/LC_MESSAGES/django.po index 99d64984..8027f513 100644 --- a/engine/payments/locale/da_DK/LC_MESSAGES/django.po +++ b/engine/payments/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:02+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/de_DE/LC_MESSAGES/django.mo b/engine/payments/locale/de_DE/LC_MESSAGES/django.mo index fdbdb52d..3f1ba692 100644 Binary files a/engine/payments/locale/de_DE/LC_MESSAGES/django.mo and b/engine/payments/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/de_DE/LC_MESSAGES/django.po b/engine/payments/locale/de_DE/LC_MESSAGES/django.po index 125a9e25..23ae3381 100644 --- a/engine/payments/locale/de_DE/LC_MESSAGES/django.po +++ b/engine/payments/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/en_GB/LC_MESSAGES/django.mo b/engine/payments/locale/en_GB/LC_MESSAGES/django.mo index 72852c67..d21c64ed 100644 Binary files a/engine/payments/locale/en_GB/LC_MESSAGES/django.mo and b/engine/payments/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/en_GB/LC_MESSAGES/django.po b/engine/payments/locale/en_GB/LC_MESSAGES/django.po index 0d4bcb0f..f65e2d3c 100644 --- a/engine/payments/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/payments/locale/en_GB/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ -# eVibes Translations. +# Schon Translations. # Copyright (C) 2025 Egor "fureunoir" Gorbunov -# This file is distributed under the same license as the eVibes package. +# This file is distributed under the same license as the Schon package. # EGOR GORBUNOV , 2025. # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/en_US/LC_MESSAGES/django.mo b/engine/payments/locale/en_US/LC_MESSAGES/django.mo index b7263d76..f7f5e7f8 100644 Binary files a/engine/payments/locale/en_US/LC_MESSAGES/django.mo and b/engine/payments/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/en_US/LC_MESSAGES/django.po b/engine/payments/locale/en_US/LC_MESSAGES/django.po index 451a4779..5a710551 100644 --- a/engine/payments/locale/en_US/LC_MESSAGES/django.po +++ b/engine/payments/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:21+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/es_ES/LC_MESSAGES/django.mo b/engine/payments/locale/es_ES/LC_MESSAGES/django.mo index 075c2934..0114e10c 100644 Binary files a/engine/payments/locale/es_ES/LC_MESSAGES/django.mo and b/engine/payments/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/es_ES/LC_MESSAGES/django.po b/engine/payments/locale/es_ES/LC_MESSAGES/django.po index 310d1ba2..554243da 100644 --- a/engine/payments/locale/es_ES/LC_MESSAGES/django.po +++ b/engine/payments/locale/es_ES/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/fa_IR/LC_MESSAGES/django.mo b/engine/payments/locale/fa_IR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/payments/locale/fa_IR/LC_MESSAGES/django.mo and b/engine/payments/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/fa_IR/LC_MESSAGES/django.po b/engine/payments/locale/fa_IR/LC_MESSAGES/django.po index 6c7f4325..854aec3d 100644 --- a/engine/payments/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/payments/locale/fa_IR/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo b/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo index a4864670..3058b96f 100644 Binary files a/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo and b/engine/payments/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/fr_FR/LC_MESSAGES/django.po b/engine/payments/locale/fr_FR/LC_MESSAGES/django.po index 71ba30dc..c69a3536 100644 --- a/engine/payments/locale/fr_FR/LC_MESSAGES/django.po +++ b/engine/payments/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/he_IL/LC_MESSAGES/django.mo b/engine/payments/locale/he_IL/LC_MESSAGES/django.mo index 7c302b92..38300190 100644 Binary files a/engine/payments/locale/he_IL/LC_MESSAGES/django.mo and b/engine/payments/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/he_IL/LC_MESSAGES/django.po b/engine/payments/locale/he_IL/LC_MESSAGES/django.po index d3a6f6c2..3babca65 100644 --- a/engine/payments/locale/he_IL/LC_MESSAGES/django.po +++ b/engine/payments/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo b/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo and b/engine/payments/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/hi_IN/LC_MESSAGES/django.po b/engine/payments/locale/hi_IN/LC_MESSAGES/django.po index e7190169..995aaf8a 100644 --- a/engine/payments/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/payments/locale/hi_IN/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:26+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/payments/locale/hr_HR/LC_MESSAGES/django.mo b/engine/payments/locale/hr_HR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/payments/locale/hr_HR/LC_MESSAGES/django.mo and b/engine/payments/locale/hr_HR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/hr_HR/LC_MESSAGES/django.po b/engine/payments/locale/hr_HR/LC_MESSAGES/django.po index 6c7f4325..854aec3d 100644 --- a/engine/payments/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/payments/locale/hr_HR/LC_MESSAGES/django.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/engine/payments/locale/id_ID/LC_MESSAGES/django.mo b/engine/payments/locale/id_ID/LC_MESSAGES/django.mo index 0b1c2bff..0826089a 100644 Binary files a/engine/payments/locale/id_ID/LC_MESSAGES/django.mo and b/engine/payments/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/id_ID/LC_MESSAGES/django.po b/engine/payments/locale/id_ID/LC_MESSAGES/django.po index a5fab24f..cc55618b 100644 --- a/engine/payments/locale/id_ID/LC_MESSAGES/django.po +++ b/engine/payments/locale/id_ID/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/it_IT/LC_MESSAGES/django.mo b/engine/payments/locale/it_IT/LC_MESSAGES/django.mo index f34f93cd..255d22d2 100644 Binary files a/engine/payments/locale/it_IT/LC_MESSAGES/django.mo and b/engine/payments/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/it_IT/LC_MESSAGES/django.po b/engine/payments/locale/it_IT/LC_MESSAGES/django.po index 1186c6c3..77316157 100644 --- a/engine/payments/locale/it_IT/LC_MESSAGES/django.po +++ b/engine/payments/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:02+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo b/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo index bf301a34..ee40724c 100644 Binary files a/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo and b/engine/payments/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/ja_JP/LC_MESSAGES/django.po b/engine/payments/locale/ja_JP/LC_MESSAGES/django.po index 1b985535..28d59839 100644 --- a/engine/payments/locale/ja_JP/LC_MESSAGES/django.po +++ b/engine/payments/locale/ja_JP/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:19+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo and b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/kk_KZ/LC_MESSAGES/django.po b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.po index e7190169..e68301f8 100644 --- a/engine/payments/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/payments/locale/kk_KZ/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:13+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo b/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo index b8330561..cb92c0dc 100644 Binary files a/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo and b/engine/payments/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/ko_KR/LC_MESSAGES/django.po b/engine/payments/locale/ko_KR/LC_MESSAGES/django.po index f85e7c01..6850a1eb 100644 --- a/engine/payments/locale/ko_KR/LC_MESSAGES/django.po +++ b/engine/payments/locale/ko_KR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:50+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo b/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo index 7c69a709..6a8ef5f1 100644 Binary files a/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo and b/engine/payments/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/nl_NL/LC_MESSAGES/django.po b/engine/payments/locale/nl_NL/LC_MESSAGES/django.po index cb0a9d88..8f3b14b8 100644 --- a/engine/payments/locale/nl_NL/LC_MESSAGES/django.po +++ b/engine/payments/locale/nl_NL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/no_NO/LC_MESSAGES/django.mo b/engine/payments/locale/no_NO/LC_MESSAGES/django.mo index a99e14ba..76095aab 100644 Binary files a/engine/payments/locale/no_NO/LC_MESSAGES/django.mo and b/engine/payments/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/no_NO/LC_MESSAGES/django.po b/engine/payments/locale/no_NO/LC_MESSAGES/django.po index c6460b48..64b34183 100644 --- a/engine/payments/locale/no_NO/LC_MESSAGES/django.po +++ b/engine/payments/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo b/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo index 3a7dd23d..6922c392 100644 Binary files a/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo and b/engine/payments/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/pl_PL/LC_MESSAGES/django.po b/engine/payments/locale/pl_PL/LC_MESSAGES/django.po index 9286382d..fa9c3f04 100644 --- a/engine/payments/locale/pl_PL/LC_MESSAGES/django.po +++ b/engine/payments/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo b/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo index 08993ac4..7d33b01e 100644 Binary files a/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo and b/engine/payments/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/pt_BR/LC_MESSAGES/django.po b/engine/payments/locale/pt_BR/LC_MESSAGES/django.po index 5a214174..5bae6a05 100644 --- a/engine/payments/locale/pt_BR/LC_MESSAGES/django.po +++ b/engine/payments/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo b/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo index b49eb1be..000cda30 100644 Binary files a/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo and b/engine/payments/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/ro_RO/LC_MESSAGES/django.po b/engine/payments/locale/ro_RO/LC_MESSAGES/django.po index 2f2d2566..cb0d6358 100644 --- a/engine/payments/locale/ro_RO/LC_MESSAGES/django.po +++ b/engine/payments/locale/ro_RO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:19+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo b/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo index 7cecbf17..6430f00d 100644 Binary files a/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo and b/engine/payments/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/ru_RU/LC_MESSAGES/django.po b/engine/payments/locale/ru_RU/LC_MESSAGES/django.po index ee4c1962..f0a7687b 100644 --- a/engine/payments/locale/ru_RU/LC_MESSAGES/django.po +++ b/engine/payments/locale/ru_RU/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:47+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo b/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo index 8e425615..dc180bc1 100644 Binary files a/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo and b/engine/payments/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/sv_SE/LC_MESSAGES/django.po b/engine/payments/locale/sv_SE/LC_MESSAGES/django.po index 0aedf8ab..f1481824 100644 --- a/engine/payments/locale/sv_SE/LC_MESSAGES/django.po +++ b/engine/payments/locale/sv_SE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 02:04+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/th_TH/LC_MESSAGES/django.mo b/engine/payments/locale/th_TH/LC_MESSAGES/django.mo index b65d34e9..cd77b5d7 100644 Binary files a/engine/payments/locale/th_TH/LC_MESSAGES/django.mo and b/engine/payments/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/th_TH/LC_MESSAGES/django.po b/engine/payments/locale/th_TH/LC_MESSAGES/django.po index f75e801e..1a6d0938 100644 --- a/engine/payments/locale/th_TH/LC_MESSAGES/django.po +++ b/engine/payments/locale/th_TH/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo b/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo index a7382d45..7de79a0a 100644 Binary files a/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo and b/engine/payments/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/tr_TR/LC_MESSAGES/django.po b/engine/payments/locale/tr_TR/LC_MESSAGES/django.po index 47f57781..b4b7ca98 100644 --- a/engine/payments/locale/tr_TR/LC_MESSAGES/django.po +++ b/engine/payments/locale/tr_TR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo b/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo index df9a4ee6..c6a06dec 100644 Binary files a/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo and b/engine/payments/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/vi_VN/LC_MESSAGES/django.po b/engine/payments/locale/vi_VN/LC_MESSAGES/django.po index 9a0787ef..82b5c950 100644 --- a/engine/payments/locale/vi_VN/LC_MESSAGES/django.po +++ b/engine/payments/locale/vi_VN/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo index 172e2f2d..08cb0fe7 100644 Binary files a/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo and b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/engine/payments/locale/zh_Hans/LC_MESSAGES/django.po b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.po index 5989cf9d..8379a6a0 100644 --- a/engine/payments/locale/zh_Hans/LC_MESSAGES/django.po +++ b/engine/payments/locale/zh_Hans/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" diff --git a/engine/payments/models.py b/engine/payments/models.py index 27af14f9..6070c97f 100644 --- a/engine/payments/models.py +++ b/engine/payments/models.py @@ -20,7 +20,7 @@ from django.utils.translation import gettext_lazy as _ from engine.core.abstract import NiceModel from engine.payments.gateways import AbstractGateway from engine.payments.managers import GatewayManager -from evibes.utils.misc import create_object +from schon.utils.misc import create_object class Transaction(NiceModel): diff --git a/engine/payments/utils/gateways.py b/engine/payments/utils/gateways.py index 65ccfd54..9dbb3de4 100644 --- a/engine/payments/utils/gateways.py +++ b/engine/payments/utils/gateways.py @@ -2,7 +2,7 @@ from typing import Type from engine.payments.gateways import AbstractGateway from engine.payments.models import Gateway -from evibes.utils.misc import create_object +from schon.utils.misc import create_object def get_gateways_integrations(name: str | None = None) -> list[Type[AbstractGateway]]: diff --git a/engine/payments/viewsets.py b/engine/payments/viewsets.py index c8644bf0..6fecb702 100644 --- a/engine/payments/viewsets.py +++ b/engine/payments/viewsets.py @@ -2,7 +2,7 @@ from django.utils.translation import gettext_lazy as _ from drf_spectacular.utils import extend_schema_view from rest_framework.viewsets import ReadOnlyModelViewSet -from engine.core.permissions import EvibesPermission, IsOwner +from engine.core.permissions import IsOwner, SchonPermission from engine.payments.docs.drf.viewsets import TRANSACTION_SCHEMA from engine.payments.models import Transaction from engine.payments.serializers import TransactionSerializer @@ -22,4 +22,4 @@ class TransactionViewSet(ReadOnlyModelViewSet): lookup_field = "uuid" lookup_url_kwarg = "uuid" serializer_class = TransactionSerializer - permission_classes = (EvibesPermission, IsOwner) + permission_classes = (SchonPermission, IsOwner) diff --git a/engine/vibes_auth/admin.py b/engine/vibes_auth/admin.py index 73c85b5b..ae88e25b 100644 --- a/engine/vibes_auth/admin.py +++ b/engine/vibes_auth/admin.py @@ -1,6 +1,6 @@ from typing import Any -from django.contrib import admin +from django.contrib import admin, messages from django.contrib.admin import register from django.contrib.auth.admin import ( GroupAdmin as BaseGroupAdmin, @@ -13,6 +13,8 @@ from django.contrib.auth.models import Permission from django.core.exceptions import PermissionDenied from django.db.models import Prefetch, QuerySet from django.http import HttpRequest +from django.utils import timezone +from django.utils.html import format_html from django.utils.translation import gettext_lazy as _ from rest_framework_simplejwt.token_blacklist.admin import ( BlacklistedTokenAdmin as BaseBlacklistedTokenAdmin, @@ -27,11 +29,23 @@ from rest_framework_simplejwt.token_blacklist.models import ( OutstandingToken as BaseOutstandingToken, ) from unfold.admin import ModelAdmin, TabularInline +from unfold.contrib.forms.widgets import WysiwygWidget from unfold.forms import AdminPasswordChangeForm, UserCreationForm from engine.core.admin import ActivationActionsMixin from engine.core.models import Order from engine.payments.models import Balance +from engine.vibes_auth.emailing.choices import CampaignStatus +from engine.vibes_auth.emailing.models import ( + CampaignRecipient, + EmailCampaign, + EmailImage, + EmailTemplate, +) +from engine.vibes_auth.emailing.tasks import ( + prepare_campaign_recipients, + send_campaign_email_batch, +) from engine.vibes_auth.forms import UserForm from engine.vibes_auth.models import ( BlacklistedToken, @@ -182,6 +196,234 @@ class ChatMessageAdmin(admin.ModelAdmin): readonly_fields = ("created", "modified") +@register(EmailImage) +class EmailImageAdmin(ActivationActionsMixin, ModelAdmin): + list_display = ("name", "image_preview", "alt_text", "is_active", "created") + list_filter = ("is_active",) + search_fields = ("name", "alt_text") + readonly_fields = ("uuid", "created", "modified", "image_preview_large") + + fieldsets = ( + (None, {"fields": ("name", "image", "alt_text")}), + (_("Preview"), {"fields": ("image_preview_large",)}), + (_("Metadata"), {"fields": ("uuid", "is_active", "created", "modified")}), + ) + + @admin.display(description=_("preview")) + def image_preview(self, obj: EmailImage) -> str: + if obj.image: + return format_html( + '', + obj.image.url, + ) + return "-" + + @admin.display(description=_("image preview")) + def image_preview_large(self, obj: EmailImage) -> str: + if obj.image: + return format_html( + '', + obj.image.url, + ) + return "-" + + +@register(EmailTemplate) +class EmailTemplateAdmin(ActivationActionsMixin, ModelAdmin): + list_display = ("name", "slug", "subject", "is_active", "modified") + list_filter = ("is_active",) + search_fields = ("name", "slug", "subject") + prepopulated_fields = {"slug": ("name",)} + readonly_fields = ("uuid", "created", "modified") + + fieldsets = ( + (None, {"fields": ("name", "slug", "subject")}), + (_("Content"), {"fields": ("html_content", "plain_content")}), + ( + _("Documentation"), + { + "fields": ("available_variables",), + "classes": ("collapse",), + }, + ), + (_("Metadata"), {"fields": ("uuid", "is_active", "created", "modified")}), + ) + + def formfield_for_dbfield(self, db_field, request, **kwargs): + if db_field.name == "html_content": + kwargs["widget"] = WysiwygWidget + return super().formfield_for_dbfield(db_field, request, **kwargs) + + +class CampaignRecipientInline(TabularInline): + model = CampaignRecipient + extra = 0 + readonly_fields = ( + "user", + "status", + "sent_at", + "opened_at", + "clicked_at", + "error_message", + ) + can_delete = False + max_num = 0 # Prevent adding new recipients via inline + + def has_add_permission(self, request, obj=None): + return False + + +@register(EmailCampaign) +class EmailCampaignAdmin(ActivationActionsMixin, ModelAdmin): + list_display = ( + "name", + "template", + "status", + "scheduled_at", + "sent_at", + "stats_display", + "is_active", + ) + list_filter = ("status", "is_active", "template") + search_fields = ("name",) + readonly_fields = ( + "uuid", + "created", + "modified", + "sent_at", + "total_recipients", + "sent_count", + "failed_count", + "opened_count", + "clicked_count", + ) + autocomplete_fields = ("template",) + inlines = (CampaignRecipientInline,) + actions = [ + "delete_selected", + "activate_selected", + "deactivate_selected", + "prepare_recipients", + "send_campaign_now", + "cancel_campaign", + ] + + fieldsets = ( + (None, {"fields": ("name", "template", "status")}), + (_("Scheduling"), {"fields": ("scheduled_at", "sent_at")}), + ( + _("Statistics"), + { + "fields": ( + "total_recipients", + "sent_count", + "failed_count", + "opened_count", + "clicked_count", + ) + }, + ), + (_("Metadata"), {"fields": ("uuid", "is_active", "created", "modified")}), + ) + + @admin.display(description=_("stats")) + def stats_display(self, obj: EmailCampaign) -> str: + return ( + f"{obj.sent_count}/{obj.total_recipients} sent, {obj.opened_count} opened" + ) + + @admin.action(description=_("Prepare recipients (subscribed users)")) + def prepare_recipients( + self, request: HttpRequest, queryset: QuerySet[EmailCampaign] + ) -> None: + for campaign in queryset: + if campaign.status != CampaignStatus.DRAFT: + self.message_user( + request, + _("Campaign '{}' is not in draft status.").format(campaign.name), + level=messages.WARNING, + ) + continue + prepare_campaign_recipients.delay(str(campaign.uuid)) + self.message_user( + request, + _("Preparing recipients for campaign '{}'.").format(campaign.name), + level=messages.SUCCESS, + ) + + @admin.action(description=_("Send campaign now")) + def send_campaign_now( + self, request: HttpRequest, queryset: QuerySet[EmailCampaign] + ) -> None: + for campaign in queryset: + if campaign.status not in (CampaignStatus.DRAFT, CampaignStatus.SCHEDULED): + self.message_user( + request, + _("Campaign '{}' cannot be sent (status: {}).").format( + campaign.name, campaign.status + ), + level=messages.WARNING, + ) + continue + if campaign.total_recipients == 0: + self.message_user( + request, + _( + "Campaign '{}' has no recipients. Prepare recipients first." + ).format(campaign.name), + level=messages.WARNING, + ) + continue + + campaign.status = CampaignStatus.SENDING + campaign.save(update_fields=["status", "modified"]) + send_campaign_email_batch.delay(str(campaign.uuid)) + self.message_user( + request, + _("Started sending campaign '{}'.").format(campaign.name), + level=messages.SUCCESS, + ) + + @admin.action(description=_("Cancel campaign")) + def cancel_campaign( + self, request: HttpRequest, queryset: QuerySet[EmailCampaign] + ) -> None: + updated = queryset.filter( + status__in=(CampaignStatus.DRAFT, CampaignStatus.SCHEDULED) + ).update(status=CampaignStatus.CANCELLED, modified=timezone.now()) + self.message_user( + request, + _("{} campaign(s) cancelled.").format(updated), + level=messages.SUCCESS, + ) + + +@register(CampaignRecipient) +class CampaignRecipientAdmin(ModelAdmin): + list_display = ( + "campaign", + "user", + "status", + "sent_at", + "opened_at", + "clicked_at", + ) + list_filter = ("status", "campaign") + search_fields = ("user__email", "campaign__name") + readonly_fields = ( + "uuid", + "campaign", + "user", + "tracking_id", + "created", + "modified", + ) + autocomplete_fields = ("campaign", "user") + + def has_add_permission(self, request): + return False # Recipients are added via campaign preparation + + class GroupAdmin(BaseGroupAdmin, ModelAdmin): pass diff --git a/engine/vibes_auth/apps.py b/engine/vibes_auth/apps.py index 7f213c59..82f6b125 100644 --- a/engine/vibes_auth/apps.py +++ b/engine/vibes_auth/apps.py @@ -5,7 +5,7 @@ from django.utils.translation import gettext_lazy as _ class VibesAuthConfig(AppConfig): default_auto_field = "django.db.models.BigAutoField" name = "engine.vibes_auth" - verbose_name = _("authentication") + verbose_name = _("Accounting") icon = "fa fa-solid fa-user" priority = 89 hide = False diff --git a/engine/vibes_auth/emailing/__init__.py b/engine/vibes_auth/emailing/__init__.py new file mode 100644 index 00000000..c8ec8f4f --- /dev/null +++ b/engine/vibes_auth/emailing/__init__.py @@ -0,0 +1,13 @@ +from engine.vibes_auth.emailing.models import ( + CampaignRecipient, + EmailCampaign, + EmailImage, + EmailTemplate, +) + +__all__ = [ + "EmailImage", + "EmailTemplate", + "EmailCampaign", + "CampaignRecipient", +] diff --git a/engine/vibes_auth/emailing/choices.py b/engine/vibes_auth/emailing/choices.py new file mode 100644 index 00000000..1fc06654 --- /dev/null +++ b/engine/vibes_auth/emailing/choices.py @@ -0,0 +1,18 @@ +from django.db.models import TextChoices +from django.utils.translation import gettext_lazy as _ + + +class CampaignStatus(TextChoices): + DRAFT = "draft", _("Draft") + SCHEDULED = "scheduled", _("Scheduled") + SENDING = "sending", _("Sending") + SENT = "sent", _("Sent") + CANCELLED = "cancelled", _("Cancelled") + + +class RecipientStatus(TextChoices): + PENDING = "pending", _("Pending") + SENT = "sent", _("Sent") + FAILED = "failed", _("Failed") + OPENED = "opened", _("Opened") + CLICKED = "clicked", _("Clicked") diff --git a/engine/vibes_auth/emailing/models.py b/engine/vibes_auth/emailing/models.py new file mode 100644 index 00000000..e160d4f8 --- /dev/null +++ b/engine/vibes_auth/emailing/models.py @@ -0,0 +1,248 @@ +from uuid import uuid4 + +from django.conf import settings +from django.db.models import ( + CASCADE, + SET_NULL, + CharField, + DateTimeField, + ForeignKey, + ImageField, + Index, + PositiveIntegerField, + SlugField, + TextField, + UUIDField, +) +from django.utils.translation import gettext_lazy as _ + +from engine.core.abstract import NiceModel +from engine.vibes_auth.emailing.choices import CampaignStatus, RecipientStatus + + +def get_email_image_path(instance, filename: str) -> str: + return f"email_images/{instance.uuid}/{filename}" + + +class EmailImage(NiceModel): + """ + Stores images that can be used in email templates. + Images are uploaded to filesystem and referenced by URL in templates. + """ + + name = CharField( + max_length=100, + verbose_name=_("name"), + help_text=_("descriptive name for the image"), + ) + image = ImageField( + upload_to=get_email_image_path, + verbose_name=_("image"), + help_text=_("image file to use in email templates"), + ) + alt_text = CharField( + max_length=255, + blank=True, + default="", + verbose_name=_("alt text"), + help_text=_("alternative text for accessibility"), + ) + + class Meta: + verbose_name = _("email image") + verbose_name_plural = _("email images") + ordering = ("-created",) + + def __str__(self) -> str: + return self.name + + +class EmailTemplate(NiceModel): + """ + Customizable email template stored in the database. + Uses WYSIWYG editor for rich HTML content editing. + + Available context variables should be documented in the template + to help administrators understand what placeholders they can use. + """ + + name = CharField( + max_length=100, + verbose_name=_("name"), + help_text=_("internal name for the template"), + ) + slug = SlugField( + unique=True, + verbose_name=_("slug"), + help_text=_("unique identifier for the template"), + ) + subject = CharField( + max_length=255, + verbose_name=_("subject"), + help_text=_("email subject line - supports {{ variables }}"), + ) + html_content = TextField( + verbose_name=_("HTML content"), + help_text=_( + "email body content - supports {{ user.first_name }}, " + "{{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}" + ), + ) + plain_content = TextField( + blank=True, + default="", + verbose_name=_("plain text content"), + help_text=_("plain text fallback (auto-generated if empty)"), + ) + available_variables = TextField( + blank=True, + default="user.first_name, user.last_name, user.email, project_name, unsubscribe_url", + verbose_name=_("available variables"), + help_text=_("documentation of available template variables"), + ) + + class Meta: + verbose_name = _("email template") + verbose_name_plural = _("email templates") + ordering = ("name",) + + def __str__(self) -> str: + return self.name + + +class EmailCampaign(NiceModel): + """ + Represents an email campaign that can be sent to subscribed users. + Only campaigns send emails with unsubscribe links. + """ + + name = CharField( + max_length=200, + verbose_name=_("name"), + help_text=_("internal name for the campaign"), + ) + template = ForeignKey( + EmailTemplate, + on_delete=SET_NULL, + null=True, + related_name="campaigns", + verbose_name=_("template"), + help_text=_("email template to use for this campaign"), + ) + status = CharField( + max_length=16, + choices=CampaignStatus.choices, + default=CampaignStatus.DRAFT, + verbose_name=_("status"), + ) + scheduled_at = DateTimeField( + null=True, + blank=True, + verbose_name=_("scheduled at"), + help_text=_("when to send the campaign (leave empty for manual send)"), + ) + sent_at = DateTimeField( + null=True, + blank=True, + verbose_name=_("sent at"), + help_text=_("when the campaign was actually sent"), + ) + # Statistics + total_recipients = PositiveIntegerField( + default=0, + verbose_name=_("total recipients"), + ) + sent_count = PositiveIntegerField( + default=0, + verbose_name=_("sent count"), + ) + failed_count = PositiveIntegerField( + default=0, + verbose_name=_("failed count"), + ) + opened_count = PositiveIntegerField( + default=0, + verbose_name=_("opened count"), + ) + clicked_count = PositiveIntegerField( + default=0, + verbose_name=_("clicked count"), + ) + + class Meta: + verbose_name = _("email campaign") + verbose_name_plural = _("email campaigns") + ordering = ("-created",) + indexes = [ + Index(fields=["status", "scheduled_at"], name="campaign_status_sched_idx"), + ] + + def __str__(self) -> str: + return self.name + + +class CampaignRecipient(NiceModel): + """ + Tracks individual email sends for a campaign. + Used for delivery tracking and preventing duplicate sends. + """ + + campaign = ForeignKey( + EmailCampaign, + on_delete=CASCADE, + related_name="recipients", + verbose_name=_("campaign"), + ) + user = ForeignKey( + settings.AUTH_USER_MODEL, + on_delete=CASCADE, + related_name="campaign_emails", + verbose_name=_("user"), + ) + status = CharField( + max_length=16, + choices=RecipientStatus.choices, + default=RecipientStatus.PENDING, + verbose_name=_("status"), + ) + sent_at = DateTimeField( + null=True, + blank=True, + verbose_name=_("sent at"), + ) + opened_at = DateTimeField( + null=True, + blank=True, + verbose_name=_("opened at"), + ) + clicked_at = DateTimeField( + null=True, + blank=True, + verbose_name=_("clicked at"), + ) + # For tracking pixel and link tracking + tracking_id = UUIDField( + default=uuid4, + unique=True, + verbose_name=_("tracking ID"), + help_text=_("unique ID for tracking opens and clicks"), + ) + error_message = TextField( + blank=True, + default="", + verbose_name=_("error message"), + help_text=_("error details if sending failed"), + ) + + class Meta: + verbose_name = _("campaign recipient") + verbose_name_plural = _("campaign recipients") + ordering = ("-created",) + indexes = [ + Index(fields=["campaign", "status"], name="recipient_camp_status_idx"), + Index(fields=["tracking_id"], name="recipient_tracking_idx"), + ] + constraints = [] + + def __str__(self) -> str: + return f"{self.campaign.name} -> {self.user.email}" diff --git a/engine/vibes_auth/emailing/tasks.py b/engine/vibes_auth/emailing/tasks.py new file mode 100644 index 00000000..52c222a0 --- /dev/null +++ b/engine/vibes_auth/emailing/tasks.py @@ -0,0 +1,316 @@ +import logging +import re +from html import unescape + +from celery import shared_task +from constance import config +from django.conf import settings +from django.core.mail import EmailMultiAlternatives +from django.template import Context, Template +from django.utils import timezone +from django.utils.html import strip_tags +from django.utils.translation import activate + +from engine.core.utils import get_dynamic_email_connection +from engine.vibes_auth.emailing.choices import CampaignStatus, RecipientStatus + +logger = logging.getLogger(__name__) + +# Batch size for sending emails +BATCH_SIZE = 50 + + +def render_template_string(template_str: str, context: dict) -> str: + """Render a Django template string with the given context.""" + template = Template(template_str) + return template.render(Context(context)) + + +def html_to_plain_text(html: str) -> str: + """Convert HTML to plain text, preserving some structure.""" + # Replace
and

with newlines + text = re.sub(r"", "\n", html, flags=re.IGNORECASE) + text = re.sub(r"

", "\n\n", text, flags=re.IGNORECASE) + text = re.sub(r"", "\n", text, flags=re.IGNORECASE) + text = re.sub(r"", "\n", text, flags=re.IGNORECASE) + # Strip remaining HTML tags + text = strip_tags(text) + # Unescape HTML entities + text = unescape(text) + # Clean up excessive whitespace + text = re.sub(r"\n{3,}", "\n\n", text) + text = re.sub(r" {2,}", " ", text) + return text.strip() + + +def build_unsubscribe_url(user) -> str: + """Build the unsubscribe URL for a user.""" + return ( + f"https://{settings.STOREFRONT_DOMAIN}/{user.language}" + f"/unsubscribe?token={user.unsubscribe_token}" + ) + + +@shared_task(queue="default") +def prepare_campaign_recipients(campaign_pk: str) -> tuple[bool, str]: + """ + Prepare recipients for a campaign by adding all subscribed users. + + Args: + campaign_pk: The primary key of the EmailCampaign. + + Returns: + Tuple of (success, message). + """ + from engine.vibes_auth.emailing.models import CampaignRecipient, EmailCampaign + from engine.vibes_auth.models import User + + try: + campaign = EmailCampaign.objects.get(pk=campaign_pk) + + if campaign.status != CampaignStatus.DRAFT: + return False, f"Campaign is not in draft status: {campaign.status}" + + # Get all subscribed and active users + subscribed_users = User.objects.filter( + is_subscribed=True, + is_active=True, + ).exclude( + # Exclude users already added as recipients + campaign_emails__campaign=campaign + ) + + # Create recipient records in bulk + recipients_to_create = [ + CampaignRecipient( + campaign=campaign, + user=user, + status=RecipientStatus.PENDING, + ) + for user in subscribed_users + ] + + CampaignRecipient.objects.bulk_create( + recipients_to_create, ignore_conflicts=True + ) + + # Update campaign statistics + total = campaign.recipients.count() + campaign.total_recipients = total + campaign.status = CampaignStatus.SCHEDULED + campaign.save(update_fields=["total_recipients", "status", "modified"]) + + return True, f"Prepared {total} recipients for campaign {campaign.name}" + + except EmailCampaign.DoesNotExist: + return False, f"Campaign not found: {campaign_pk}" + except Exception as e: + logger.exception("Error preparing campaign recipients") + return False, f"Error: {e!s}" + + +@shared_task(queue="default", bind=True, max_retries=3) +def send_campaign_email_batch( + self, campaign_pk: str, offset: int = 0 +) -> tuple[bool, str]: + """ + Send a batch of campaign emails. + + This task processes emails in batches to avoid overwhelming the mail server. + It automatically schedules the next batch when done. + + Args: + campaign_pk: The primary key of the EmailCampaign. + offset: Starting offset for this batch. + + Returns: + Tuple of (success, message). + """ + from engine.vibes_auth.emailing.models import EmailCampaign + + try: + campaign = EmailCampaign.objects.select_related("template").get(pk=campaign_pk) + + if campaign.status not in (CampaignStatus.SENDING, CampaignStatus.SCHEDULED): + return False, f"Campaign status is {campaign.status}, cannot send" + + if not campaign.template: + campaign.status = CampaignStatus.CANCELLED + campaign.save(update_fields=["status", "modified"]) + return False, "Campaign has no template" + + # Mark as sending if not already + if campaign.status != CampaignStatus.SENDING: + campaign.status = CampaignStatus.SENDING + campaign.save(update_fields=["status", "modified"]) + + # Get pending recipients for this batch + pending_recipients = campaign.recipients.filter( + status=RecipientStatus.PENDING + ).select_related("user")[offset : offset + BATCH_SIZE] + + if not pending_recipients: + # No more recipients, mark campaign as sent + campaign.status = CampaignStatus.SENT + campaign.sent_at = timezone.now() + campaign.save(update_fields=["status", "sent_at", "modified"]) + return True, f"Campaign {campaign.name} completed" + + # Get email connection + connection = get_dynamic_email_connection() + + sent_count = 0 + failed_count = 0 + + for recipient in pending_recipients: + try: + send_single_campaign_email(campaign, recipient, connection) + recipient.status = RecipientStatus.SENT + recipient.sent_at = timezone.now() + recipient.save(update_fields=["status", "sent_at", "modified"]) + sent_count += 1 + except Exception as e: + logger.exception("Failed to send email to %s", recipient.user.email) + recipient.status = RecipientStatus.FAILED + recipient.error_message = str(e)[:500] + recipient.save(update_fields=["status", "error_message", "modified"]) + failed_count += 1 + + # Update campaign statistics + campaign.refresh_from_db() + campaign.sent_count = campaign.recipients.filter( + status=RecipientStatus.SENT + ).count() + campaign.failed_count = campaign.recipients.filter( + status=RecipientStatus.FAILED + ).count() + campaign.save(update_fields=["sent_count", "failed_count", "modified"]) + + # Schedule next batch if there are more pending + remaining = campaign.recipients.filter(status=RecipientStatus.PENDING).count() + if remaining > 0: + send_campaign_email_batch.apply_async( + args=(campaign_pk, 0), # Always start from 0 since we filter by PENDING + countdown=2, # Small delay between batches + ) + + return True, f"Sent {sent_count}, failed {failed_count}, remaining {remaining}" + + except EmailCampaign.DoesNotExist: + return False, f"Campaign not found: {campaign_pk}" + except Exception as e: + logger.exception("Error sending campaign batch") + # Retry on transient errors + raise self.retry(exc=e, countdown=60) from e + + +def send_single_campaign_email(campaign, recipient, connection) -> None: + """ + Send a single campaign email to a recipient. + + Args: + campaign: The EmailCampaign instance. + recipient: The CampaignRecipient instance. + connection: The email connection to use. + """ + user = recipient.user + template = campaign.template + + # Activate user's language for any translated content + activate(user.language) + + # Build context for template rendering + unsubscribe_url = build_unsubscribe_url(user) + context = { + "user": user, + "project_name": settings.PROJECT_NAME, + "unsubscribe_url": unsubscribe_url, + "tracking_id": str(recipient.tracking_id), + } + + # Render subject and content + subject = render_template_string(template.subject, context) + html_content = render_template_string(template.html_content, context) + + # Add unsubscribe footer to HTML + html_content = add_unsubscribe_footer(html_content, unsubscribe_url) + + # Generate plain text version + if template.plain_content: + plain_content = render_template_string(template.plain_content, context) + else: + plain_content = html_to_plain_text(html_content) + + # Add unsubscribe info to plain text + plain_content += f"\n\n---\nTo unsubscribe: {unsubscribe_url}" + + # Create and send email + email = EmailMultiAlternatives( + subject=subject, + body=plain_content, + from_email=f"{settings.PROJECT_NAME} <{config.EMAIL_FROM}>", + to=[user.email], + connection=connection, + headers={ + "List-Unsubscribe": f"<{unsubscribe_url}>", + "List-Unsubscribe-Post": "List-Unsubscribe=One-Click", + }, + ) + email.attach_alternative(html_content, "text/html") + email.send() + + +def add_unsubscribe_footer(html_content: str, unsubscribe_url: str) -> str: + """ + Add an unsubscribe footer to HTML email content. + + Args: + html_content: The HTML content. + unsubscribe_url: The unsubscribe URL. + + Returns: + HTML content with unsubscribe footer. + """ + footer = f""" +
+

You received this email because you subscribed to our newsletter.

+

Unsubscribe

+
+ """ + + # Try to insert before if present, otherwise append + if "" in html_content.lower(): + return re.sub( + r"()", + f"{footer}\\1", + html_content, + flags=re.IGNORECASE, + ) + return html_content + footer + + +@shared_task(queue="default") +def send_scheduled_campaigns() -> tuple[bool, str]: + """ + Check for scheduled campaigns that are due and start sending them. + + This task should be run periodically via Celery Beat. + """ + from engine.vibes_auth.emailing.models import EmailCampaign + + now = timezone.now() + due_campaigns = EmailCampaign.objects.filter( + status=CampaignStatus.SCHEDULED, + scheduled_at__lte=now, + is_active=True, + ) + + started = 0 + for campaign in due_campaigns: + campaign.status = CampaignStatus.SENDING + campaign.save(update_fields=["status", "modified"]) + send_campaign_email_batch.delay(str(campaign.uuid)) + started += 1 + + return True, f"Started {started} scheduled campaign(s)" diff --git a/engine/vibes_auth/emailing/templates/__init__.py b/engine/vibes_auth/emailing/templates/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/engine/vibes_auth/emailing/templates/campaign_base.html b/engine/vibes_auth/emailing/templates/campaign_base.html new file mode 100644 index 00000000..6dc48f40 --- /dev/null +++ b/engine/vibes_auth/emailing/templates/campaign_base.html @@ -0,0 +1,146 @@ + + + + {% load static i18n %} + + + {{ subject }} + + + + + + diff --git a/engine/vibes_auth/emailing/urls.py b/engine/vibes_auth/emailing/urls.py new file mode 100644 index 00000000..4a44f590 --- /dev/null +++ b/engine/vibes_auth/emailing/urls.py @@ -0,0 +1,10 @@ +from django.urls import path + +from engine.vibes_auth.emailing.views import TrackingView, UnsubscribeView + +app_name = "emailing" + +urlpatterns = [ + path("unsubscribe/", UnsubscribeView.as_view(), name="unsubscribe"), + path("track/open/", TrackingView.as_view(), name="track-open"), +] diff --git a/engine/vibes_auth/emailing/views.py b/engine/vibes_auth/emailing/views.py new file mode 100644 index 00000000..ba83c082 --- /dev/null +++ b/engine/vibes_auth/emailing/views.py @@ -0,0 +1,173 @@ +from uuid import UUID + +from django.utils.translation import gettext_lazy as _ +from drf_spectacular.utils import OpenApiParameter, extend_schema +from rest_framework import status +from rest_framework.permissions import AllowAny +from rest_framework.response import Response +from rest_framework.views import APIView + +from engine.vibes_auth.models import User + + +class UnsubscribeView(APIView): + """ + Public endpoint for one-click unsubscribe from email campaigns. + + Supports both GET (for email client compatibility) and POST (RFC 8058). + """ + + permission_classes = [AllowAny] + authentication_classes = [] + + @extend_schema( + summary="Unsubscribe from email campaigns", + description="Unsubscribe a user from email campaigns using their unsubscribe token.", + parameters=[ + OpenApiParameter( + name="token", + description="Unsubscribe token from the email", + required=True, + type=str, + ), + ], + responses={ + 200: {"description": "Successfully unsubscribed"}, + 400: {"description": "Invalid or missing token"}, + 404: {"description": "User not found"}, + }, + ) + def get(self, request): + """Handle GET request for unsubscribe (email link click).""" + return self._process_unsubscribe(request) + + @extend_schema( + summary="Unsubscribe from email campaigns (One-Click)", + description="RFC 8058 compliant one-click unsubscribe endpoint.", + parameters=[ + OpenApiParameter( + name="token", + description="Unsubscribe token from the email", + required=True, + type=str, + ), + ], + responses={ + 200: {"description": "Successfully unsubscribed"}, + 400: {"description": "Invalid or missing token"}, + 404: {"description": "User not found"}, + }, + ) + def post(self, request): + """Handle POST request for one-click unsubscribe (RFC 8058).""" + return self._process_unsubscribe(request) + + def _process_unsubscribe(self, request) -> Response: + """Process the unsubscribe request.""" + token = request.query_params.get("token") or request.data.get("token") + + if not token: + return Response( + {"detail": _("Unsubscribe token is required.")}, + status=status.HTTP_400_BAD_REQUEST, + ) + + try: + token_uuid = UUID(token) + except (ValueError, TypeError): + return Response( + {"detail": _("Invalid unsubscribe token format.")}, + status=status.HTTP_400_BAD_REQUEST, + ) + + try: + user = User.objects.get(unsubscribe_token=token_uuid) + except User.DoesNotExist: + return Response( + {"detail": _("User not found.")}, + status=status.HTTP_404_NOT_FOUND, + ) + + if not user.is_subscribed: + return Response( + {"detail": _("You are already unsubscribed.")}, + status=status.HTTP_200_OK, + ) + + user.is_subscribed = False + user.save(update_fields=["is_subscribed", "modified"]) + + return Response( + {"detail": _("You have been successfully unsubscribed from our emails.")}, + status=status.HTTP_200_OK, + ) + + +class TrackingView(APIView): + """ + Endpoint for tracking email opens and clicks. + + This is optional - can be used to track engagement metrics. + """ + + permission_classes = [AllowAny] + authentication_classes = [] + + @extend_schema( + summary="Track email open", + description="Track when a campaign email is opened.", + parameters=[ + OpenApiParameter( + name="tid", + description="Tracking ID from the email", + required=True, + type=str, + ), + ], + responses={ + 200: {"description": "Tracking recorded"}, + 404: {"description": "Invalid tracking ID"}, + }, + ) + def get(self, request): + """Track email open via tracking pixel.""" + from django.utils import timezone + + from engine.vibes_auth.emailing.choices import RecipientStatus + from engine.vibes_auth.emailing.models import CampaignRecipient + + tracking_id = request.query_params.get("tid") + + if not tracking_id: + return Response(status=status.HTTP_404_NOT_FOUND) + + try: + tracking_uuid = UUID(tracking_id) + recipient = CampaignRecipient.objects.get(tracking_id=tracking_uuid) + + if not recipient.opened_at: + recipient.opened_at = timezone.now() + recipient.status = RecipientStatus.OPENED + recipient.save(update_fields=["opened_at", "status", "modified"]) + + # Update campaign opened count + campaign = recipient.campaign + campaign.opened_count = campaign.recipients.filter( + status__in=(RecipientStatus.OPENED, RecipientStatus.CLICKED) + ).count() + campaign.save(update_fields=["opened_count", "modified"]) + + except (ValueError, TypeError, CampaignRecipient.DoesNotExist): + pass # Silently ignore invalid tracking IDs + + # Return a 1x1 transparent GIF + gif_data = ( + b"GIF89a\x01\x00\x01\x00\x80\x00\x00\xff\xff\xff" + b"\x00\x00\x00!\xf9\x04\x01\x00\x00\x00\x00,\x00" + b"\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02D\x01\x00;" + ) + return Response( + gif_data, + status=status.HTTP_200_OK, + content_type="image/gif", + ) diff --git a/engine/vibes_auth/graphene/mutations.py b/engine/vibes_auth/graphene/mutations.py index 45a67b59..b04fea2a 100644 --- a/engine/vibes_auth/graphene/mutations.py +++ b/engine/vibes_auth/graphene/mutations.py @@ -227,7 +227,7 @@ class ObtainJSONWebToken(Mutation): try: serializer.is_valid(raise_exception=True) obtained_user = User.objects.get(uuid=serializer.validated_data["user"]) - return ObtainJSONWebToken( # ty: ignore[unknown-argument] + return ObtainJSONWebToken( user=obtained_user, # ty: ignore[unknown-argument] refresh_token=serializer.validated_data["refresh"], # ty: ignore[unknown-argument] access_token=serializer.validated_data["access"], # ty: ignore[unknown-argument] @@ -251,7 +251,7 @@ class RefreshJSONWebToken(Mutation): try: serializer.is_valid(raise_exception=True) refreshed_user = User.objects.get(uuid=serializer.validated_data["user"]) - return RefreshJSONWebToken( # ty: ignore[unknown-argument] + return RefreshJSONWebToken( user=refreshed_user, # ty: ignore[unknown-argument] access_token=serializer.validated_data["access"], # ty: ignore[unknown-argument] refresh_token=serializer.validated_data["refresh"], # ty: ignore[unknown-argument] @@ -274,16 +274,16 @@ class VerifyJSONWebToken(Mutation): serializer.is_valid(raise_exception=True) verified_user = User.objects.get(uuid=serializer.validated_data["user"]) # noinspection PyTypeChecker - return VerifyJSONWebToken( # ty: ignore[unknown-argument] - token_is_valid=True, # ty: ignore[unknown-argument] - user=verified_user, # ty: ignore[unknown-argument] + return VerifyJSONWebToken( + token_is_valid=True, # ty:ignore[unknown-argument] + user=verified_user, # ty:ignore[unknown-argument] ) detail = traceback.format_exc() if settings.DEBUG else "" # noinspection PyTypeChecker - return VerifyJSONWebToken( # ty: ignore[unknown-argument] - token_is_valid=False, # ty: ignore[unknown-argument] - user=None, # ty: ignore[unknown-argument] - detail=detail, # ty: ignore[unknown-argument] + return VerifyJSONWebToken( + token_is_valid=False, + user=None, + detail=detail, ) diff --git a/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo index 9e100142..412b5d89 100644 Binary files a/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po index cd90dc73..0b9172c1 100644 --- a/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/ar_AR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "الرصيد" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "الطلب" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "الطلبات" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "معلومات شخصية" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "الأذونات" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "تواريخ مهمة" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "معلومات إضافية" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "لا يمكنك القفز فوق رأسك!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "إغلاق المواضيع المحددة" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "فتح المواضيع المحددة" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "معاينة" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "البيانات الوصفية" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "معاينة" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "معاينة الصورة" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "المحتوى" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "التوثيق" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "الجدولة" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "الإحصاءات" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "حالة" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "تحضير المستلمين (المستخدمين المشتركين)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "الحملة '{}' ليست في حالة مسودة." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "تحضير المستلمين لحملة \"{}\"." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "أرسل الحملة الآن" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "لا يمكن إرسال الحملة '{}' (الحالة: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "الحملة '{}' ليس لها مستلمون. قم بإعداد المستلمين أولاً." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "بدأت حملة إرسال \"{}\"." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "إلغاء الحملة" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "تم إلغاء الحملة (الحملات)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "المصادقة" +msgid "Accounting" +msgstr "المحاسبة" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -161,8 +234,8 @@ msgstr "حذف مستخدم" #: engine/vibes_auth/docs/drf/viewsets.py:57 msgid "reset a user's password by sending a reset password email" msgstr "" -"إعادة تعيين كلمة مرور المستخدم عن طريق إرسال بريد إلكتروني لإعادة تعيين كلمة " -"المرور" +"إعادة تعيين كلمة مرور المستخدم عن طريق إرسال بريد إلكتروني لإعادة تعيين كلمة" +" المرور" #: engine/vibes_auth/docs/drf/viewsets.py:65 msgid "handle avatar upload for a user" @@ -191,6 +264,267 @@ msgstr "رابط التفعيل غير صالح أو أن الحساب مفعل msgid "merge client-stored recently viewed products" msgstr "دمج المنتجات التي تم عرضها مؤخراً المخزنة لدى العميل" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "مسودة" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "مجدول" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "إرسال" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "متأخر" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "ألغيت" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "قيد الانتظار" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "فشل" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "افتتح" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "نقرت" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "الاسم" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "اسم وصفي للصورة" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "صورة" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "ملف صورة لاستخدامه في قوالب البريد الإلكتروني" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "نص آخر" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "نص بديل لضمان إمكانية الوصول" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "صورة البريد الإلكتروني" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "صور البريد الإلكتروني" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "الاسم الداخلي للقالب" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "المعرف الفريد للقالب" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "الموضوع" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "موضوع البريد الإلكتروني - يدعم {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "محتوى HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"محتوى نص البريد الإلكتروني - يدعم {{ user.first_name }}, {{ user.email }}, " +"{{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "محتوى نص عادي" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "نص عادي احتياطي (يتم إنشاؤه تلقائيًا إذا كان فارغًا)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "المتغيرات المتاحة" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "توثيق متغيرات القوالب المتاحة" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "نموذج البريد الإلكتروني" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "قوالب البريد الإلكتروني" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "الاسم الداخلي للحملة" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "قالب" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "نموذج البريد الإلكتروني الذي سيتم استخدامه في هذه الحملة" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "الحالة" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "مقرر في" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "متى يتم إرسال الحملة (اتركه فارغًا للإرسال اليدوي)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "في وقت متأخر من ذلك" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "عندما تم إرسال الحملة فعليًا" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "إجمالي عدد المستفيدين" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "عدد المرسلة" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "عدد الفاشلين" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "عدد مرات الفتح" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "عدد النقرات" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "حملة بريد إلكتروني" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "حملات البريد الإلكتروني" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "حملة" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "المستخدم" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "افتتح في" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "نقرت على" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "رقم التتبع" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "معرف فريد لتتبع عمليات الفتح والنقرات" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "رسالة خطأ" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "تفاصيل الخطأ في حالة فشل الإرسال" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "مستلم الحملة" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "مستلمو الحملة" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "جميع الحقوق محفوظة" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "لقد تلقيت هذا البريد الإلكتروني لأنك اشتركت في نشرتنا الإخبارية." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "إلغاء الاشتراك" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "رمز إلغاء الاشتراك مطلوب." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "تنسيق رمز إلغاء الاشتراك غير صالح." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "لم يتم العثور على المستخدم." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "لقد تم إلغاء اشتراكك بالفعل." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "لقد تم إلغاء اشتراكك في رسائلنا الإلكترونية بنجاح." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "معرّف المستخدم الذي تم ترميزه بـ b64 الذي أحال المستخدم الجديد إلينا." @@ -240,13 +574,13 @@ msgstr "الرمز غير صالح!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "المنتجات التي شاهدها هذا المستخدم مؤخرًا (بحد أقصى 48)، بترتيب زمني عكسي." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "المجموعات" @@ -254,7 +588,8 @@ msgstr "المجموعات" msgid "wishlist" msgstr "قائمة الرغبات" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "الصورة الرمزية" @@ -265,8 +600,8 @@ msgstr "يمكن استخدام السمات لتخزين البيانات ال #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "اللغة هي واحدة من {settings.LANGUAGES} مع {settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 @@ -302,8 +637,8 @@ msgstr "" "يمثل كيان مستخدم مع حقول وأساليب مخصصة لوظائف موسعة. توسع هذه الفئة نموذج " "AbstractUser وتدمج ميزات إضافية مثل تسجيل الدخول إلى البريد الإلكتروني " "المخصص، وطرق التحقق من الصحة، وحالة الاشتراك، والتحقق، وتخزين السمات. كما " -"يوفر أيضًا أدوات مساعدة لإدارة العناصر التي تم عرضها مؤخرًا والتفعيل المستند " -"إلى الرمز المميز للتحقق من الحسابات. تم تصميم نموذج المستخدم للتعامل مع " +"يوفر أيضًا أدوات مساعدة لإدارة العناصر التي تم عرضها مؤخرًا والتفعيل المستند" +" إلى الرمز المميز للتحقق من الحسابات. تم تصميم نموذج المستخدم للتعامل مع " "حالات استخدام محددة لإدارة المستخدم المحسنة." #: engine/vibes_auth/models.py:53 @@ -362,63 +697,67 @@ msgstr "حالة اشتراك المستخدم في النشرة الإخبار msgid "activation token" msgstr "رمز التفعيل" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "رمز إلغاء الاشتراك" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "رمز مميز لإلغاء الاشتراك الآمن بنقرة واحدة من الحملات" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "السمات" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "المستخدم" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "المستخدمون" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "بالنسبة للمواضيع المجهولة" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "موضوع المحادثة" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "خيوط الدردشة" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "توفير مستخدم أو بريد إلكتروني لموضوع مجهول." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "يجب أن يكون المُحال إليه مستخدمًا من الموظفين." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "رسالة الدردشة" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "رسائل المحادثة" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "المجموعة" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "الرمز المميز" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "الرموز المميزة المعلقة" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "الرمز المميز المدرج في القائمة السوداء" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "الرموز المميزة المدرجة في القائمة السوداء" @@ -481,8 +820,7 @@ msgstr "مرحباً %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "لقد تلقينا طلباً لإعادة تعيين كلمة المرور الخاصة بك. يرجى إعادة تعيين كلمة " @@ -566,29 +904,29 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"يمثل طريقة عرض للحصول على زوج من رموز الوصول والتحديث وبيانات المستخدم. تدير " -"طريقة العرض هذه عملية التعامل مع المصادقة المستندة إلى الرمز المميز حيث يمكن " -"للعملاء الحصول على زوج من رموز JWT (الوصول والتحديث) باستخدام بيانات " +"يمثل طريقة عرض للحصول على زوج من رموز الوصول والتحديث وبيانات المستخدم. تدير" +" طريقة العرض هذه عملية التعامل مع المصادقة المستندة إلى الرمز المميز حيث " +"يمكن للعملاء الحصول على زوج من رموز JWT (الوصول والتحديث) باستخدام بيانات " "الاعتماد المقدمة. وهو مبني على طريقة عرض الرمز المميز الأساسي ويضمن تحديد " "المعدل المناسب للحماية من هجمات القوة الغاشمة." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "يعالج تحديث الرموز المميزة لأغراض المصادقة. يتم استخدام هذه الفئة لتوفير " -"وظيفة لعمليات تحديث الرموز كجزء من نظام المصادقة. وهي تضمن أن العملاء يمكنهم " -"طلب رمز محدث ضمن حدود المعدل المحدد. تعتمد طريقة العرض على أداة التسلسل " +"وظيفة لعمليات تحديث الرموز كجزء من نظام المصادقة. وهي تضمن أن العملاء يمكنهم" +" طلب رمز محدث ضمن حدود المعدل المحدد. تعتمد طريقة العرض على أداة التسلسل " "المرتبطة بها للتحقق من صحة مدخلات تحديث الرمز المميز وإنتاج مخرجات مناسبة." #: engine/vibes_auth/views.py:83 @@ -606,17 +944,10 @@ msgstr "الرمز المميز غير صالح" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "تنفيذ مجموعة عرض المستخدم.\n" -"يوفر مجموعة من الإجراءات التي تدير البيانات المتعلقة بالمستخدم مثل الإنشاء " -"والاسترجاع والتحديثات والحذف والإجراءات المخصصة بما في ذلك إعادة تعيين كلمة " -"المرور وتحميل الصورة الرمزية وتفعيل الحساب ودمج العناصر التي تم عرضها مؤخرًا. " -"تعمل هذه الفئة على توسيع mixins و GenericViewSet لمعالجة واجهة برمجة " -"التطبيقات القوية." +"يوفر مجموعة من الإجراءات التي تدير البيانات المتعلقة بالمستخدم مثل الإنشاء والاسترجاع والتحديثات والحذف والإجراءات المخصصة بما في ذلك إعادة تعيين كلمة المرور وتحميل الصورة الرمزية وتفعيل الحساب ودمج العناصر التي تم عرضها مؤخرًا. تعمل هذه الفئة على توسيع mixins و GenericViewSet لمعالجة واجهة برمجة التطبيقات القوية." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo index 273ef0f2..039c28db 100644 Binary files a/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po b/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po index 76aa4594..b9197f04 100644 --- a/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Bilance" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Objednávka" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Objednávky" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Osobní informace" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Oprávnění" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Důležitá data" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Další informace" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Nemůžete skákat přes hlavu!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Zavřít vybraná vlákna" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Otevřít vybraná vlákna" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Náhled" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "náhled" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "náhled obrázku" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Obsah" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentace" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Plánování" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistiky" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "stát" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Připravte příjemce (přihlášené uživatele)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampaň „{}“ není ve stavu konceptu." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Příprava příjemců pro kampaň „{}“." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Odeslat kampaň nyní" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Kampaň '{}' nelze odeslat (stav: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Kampaň „{}“ nemá žádné příjemce. Nejprve připravte příjemce." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Zahájena kampaň „{}“." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Zrušit kampaň" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} kampaň(e) zrušena." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Ověřování" +msgid "Accounting" +msgstr "Účetnictví" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -189,6 +262,269 @@ msgstr "Aktivační odkaz je neplatný nebo je účet již aktivován" msgid "merge client-stored recently viewed products" msgstr "Sloučení naposledy zobrazených produktů uložených u klienta" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Návrh" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Plánované" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Odesílání" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Pozdě" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Zrušeno" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Čeká na vyřízení" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Neúspěšný" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Otevřeno" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Kliknuto" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "název" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "popisný název obrázku" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "obrázek" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "obrazový soubor pro použití v e-mailových šablonách" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "jiný text" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternativní text pro přístupnost" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "e-mailový obrázek" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "e-mailové obrázky" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "interní název šablony" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "služebníci" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "jedinečný identifikátor šablony" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "předmět" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "předmět e-mailu – podporuje {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Obsah HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"obsah těla e-mailu – podporuje {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "obsah ve formě prostého textu" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "záložní text (automaticky generovaný, pokud je pole prázdné)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "dostupné proměnné" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "dokumentace dostupných proměnných šablony" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "šablona e-mailu" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "e-mailové šablony" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "interní název kampaně" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "šablona" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "šablona e-mailu, která se použije pro tuto kampaň" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "naplánováno na" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "kdy odeslat kampaň (pro ruční odeslání nechte pole prázdné)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "pozdě to" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "když byla kampaň skutečně odeslána" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "celkový počet příjemců" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "počet odeslaných" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "neúspěšný pokus" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "otevřený počet" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "počet kliknutí" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "e-mailová kampaň" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "e-mailové kampaně" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampaň" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Uživatel" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "otevřeno v" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "kliknuto na" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "sledovací číslo" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "jedinečné ID pro sledování otevření a kliknutí" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "chybová zpráva" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "podrobnosti o chybě, pokud se odeslání nezdařilo" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "příjemce kampaně" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "příjemci kampaně" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Všechna práva vyhrazena" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Tento e-mail jste obdrželi, protože jste se přihlásili k odběru našeho " +"zpravodaje." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Odhlásit se" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Je vyžadován token pro odhlášení." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Neplatný formát tokenu pro odhlášení." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Uživatel nebyl nalezen." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Již jste odhlášeni." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Byli jste úspěšně odhlášeni z odběru našich e-mailů." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "Uuid uživatele s kódem b64, který nám nového uživatele doporučil." @@ -238,14 +574,14 @@ msgstr "Token je neplatný!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Produkty, které si tento uživatel prohlížel naposledy (max. 48), seřazené v " "opačném pořadí." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Skupiny" @@ -253,7 +589,8 @@ msgstr "Skupiny" msgid "wishlist" msgstr "Seznam přání" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -264,8 +601,8 @@ msgstr "Atributy lze použít k uložení vlastních dat." #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "Jazyk je jeden z {settings.LANGUAGES} s výchozím {settings.LANGUAGE_CODE}" @@ -300,11 +637,11 @@ msgid "" "for enhanced user management." msgstr "" "Reprezentuje entitu User s upravenými poli a metodami pro rozšířenou " -"funkčnost. Tato třída rozšiřuje model AbstractUser a integruje další funkce, " -"jako je vlastní přihlašování e-mailem, ověřovací metody, stav odběru, " +"funkčnost. Tato třída rozšiřuje model AbstractUser a integruje další funkce," +" jako je vlastní přihlašování e-mailem, ověřovací metody, stav odběru, " "ověřování a ukládání atributů. Poskytuje také nástroje pro správu naposledy " -"zobrazených položek a aktivaci založenou na tokenu pro ověřování účtů. Model " -"User je navržen tak, aby zvládal specifické případy použití pro rozšířenou " +"zobrazených položek a aktivaci založenou na tokenu pro ověřování účtů. Model" +" User je navržen tak, aby zvládal specifické případy použití pro rozšířenou " "správu uživatelů." #: engine/vibes_auth/models.py:53 @@ -363,63 +700,67 @@ msgstr "Stav odběru newsletteru uživatele" msgid "activation token" msgstr "Aktivační token" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "token pro odhlášení" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token pro bezpečné odhlášení z kampaní jedním kliknutím" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Atributy" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Uživatel" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Uživatelé" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Pro anonymní vlákna" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Vlákno chatu" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Vlákna chatu" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "zadejte uživatele nebo e-mail pro anonymní vlákno." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "Příjemce musí být personálním uživatelem." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Zpráva na chatu" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Zprávy v chatu" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Skupina" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Vynikající žeton" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Nevyplacené žetony" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token na černé listině" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Tokeny na černé listině" @@ -482,8 +823,7 @@ msgstr "Ahoj %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Obdrželi jsme žádost o obnovení vašeho hesla. Kliknutím na níže uvedené " @@ -499,8 +839,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Pokud výše uvedené tlačítko nefunguje, zkopírujte a vložte následující " -"adresu URL\n" +"Pokud výše uvedené tlačítko nefunguje, zkopírujte a vložte následující adresu URL\n" " do webového prohlížeče:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -568,26 +907,26 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Představuje zobrazení pro získání dvojice přístupových a obnovovacích tokenů " -"a dat uživatele. Toto zobrazení řídí proces zpracování ověřování na základě " -"tokenů, kdy klienti mohou získat dvojici tokenů JWT (přístupový a " +"Představuje zobrazení pro získání dvojice přístupových a obnovovacích tokenů" +" a dat uživatele. Toto zobrazení řídí proces zpracování ověřování na základě" +" tokenů, kdy klienti mohou získat dvojici tokenů JWT (přístupový a " "obnovovací) pomocí poskytnutých pověření. Je postaven nad základním " "zobrazením tokenu a zajišťuje správné omezení rychlosti pro ochranu před " "útoky hrubou silou." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Zpracovává obnovování tokenů pro účely ověřování. Tato třída slouží k " "zajištění funkčnosti operací obnovení tokenů v rámci systému ověřování. " @@ -610,17 +949,10 @@ msgstr "Token je neplatný" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementace sady uživatelských zobrazení.\n" -"Poskytuje sadu akcí, které spravují data související s uživatelem, jako je " -"vytváření, načítání, aktualizace, mazání a vlastní akce včetně obnovení " -"hesla, nahrání avatara, aktivace účtu a sloučení naposledy zobrazených " -"položek. Tato třída rozšiřuje mixiny a GenericViewSet pro robustní " -"zpracování API." +"Poskytuje sadu akcí, které spravují data související s uživatelem, jako je vytváření, načítání, aktualizace, mazání a vlastní akce včetně obnovení hesla, nahrání avatara, aktivace účtu a sloučení naposledy zobrazených položek. Tato třída rozšiřuje mixiny a GenericViewSet pro robustní zpracování API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo index 18405011..42d67c77 100644 Binary files a/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.po b/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.po index de359fb0..b3adc9cd 100644 --- a/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Balance" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Bestil" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Bestillinger" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Personlig information" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Tilladelser" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Vigtige datoer" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Yderligere information" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Du kan ikke hoppe over hovedet!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Luk udvalgte tråde" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Åbn udvalgte tråde" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "forhåndsvisning" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "billedforhåndsvisning" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Indhold" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentation" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Planlægning" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistik" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "tilstand" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Forbered modtagere (abonnenter)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampagnen '{}' er ikke i udkaststatus." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Forberedelse af modtagere til kampagnen '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Send kampagne nu" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Kampagnen '{}' kan ikke sendes (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Kampagnen '{}' har ingen modtagere. Forbered først modtagerne." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Startede med at sende kampagnen '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Annuller kampagne" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} kampagne(r) annulleret." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autentificering" +msgid "Accounting" +msgstr "Regnskab" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -191,6 +264,269 @@ msgstr "Aktiveringslinket er ugyldigt, eller kontoen er allerede aktiveret" msgid "merge client-stored recently viewed products" msgstr "Flet nyligt viste produkter, der er gemt af klienten" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Udkast" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Planlagt" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Afsendelse" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Sen" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Aflyst" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Afventende" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Mislykket" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Åbnet" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Klikket" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "navn" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "beskrivende navn for billedet" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "billede" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "billedfil til brug i e-mailskabeloner" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "andet tekst" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternativ tekst for tilgængelighed" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "e-mail-billede" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "e-mail-billeder" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "internt navn for skabelonen" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "tjenere" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unik identifikator for skabelonen" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "emne" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "e-mail-emnelinje - understøtter {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML-indhold" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"e-mail-indhold - understøtter {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "almindeligt tekstindhold" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "plain text fallback (genereres automatisk, hvis feltet er tomt)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "tilgængelige variabler" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "dokumentation af tilgængelige skabelonvariabler" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "e-mail-skabelon" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "e-mail-skabeloner" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "internt navn for kampagnen" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "skabelon" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "e-mailskabelon til brug for denne kampagne" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "planlagt til" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" +"hvornår kampagnen skal sendes (lad feltet være tomt for manuel afsendelse)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "sent det" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "når kampagnen faktisk blev sendt" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "samlet antal modtagere" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "sendt antal" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "fejl i optællingen" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "åben optælling" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "klikket antal" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "e-mail-kampagne" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "e-mail-kampagner" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampagne" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Bruger" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "åbnet kl." + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "klikket på" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "sporings-ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unik ID til sporing af åbninger og klik" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "fejlmeddelelse" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "fejldetaljer, hvis afsendelsen mislykkedes" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "kampagnemodtager" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "kampagnemodtagere" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Alle rettigheder forbeholdes" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Du har modtaget denne e-mail, fordi du har tilmeldt dig vores nyhedsbrev." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Afmeld" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Afmeldingstoken er påkrævet." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Ugyldigt format for afmeldingstoken." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Bruger ikke fundet." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Du er allerede afmeldt." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Du er nu afmeldt vores e-mails." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "Brugerens b64-kodede uuid, som henviste den nye bruger til os." @@ -240,14 +576,14 @@ msgstr "Token er ugyldig!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "De produkter, som denne bruger har set for nylig (maks. 48), i omvendt " "kronologisk rækkefølge." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupper" @@ -255,7 +591,8 @@ msgstr "Grupper" msgid "wishlist" msgstr "Ønskeliste" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -266,8 +603,8 @@ msgstr "Attributter kan bruges til at gemme brugerdefinerede data" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "Sprog er en af {settings.LANGUAGES} med standard {settings.LANGUAGE_CODE}." @@ -365,63 +702,67 @@ msgstr "Status for brugerens abonnement på nyhedsbrev" msgid "activation token" msgstr "Aktiveringstoken" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "afmeldingstoken" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token til sikker afmelding af kampagner med et enkelt klik" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Egenskaber" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Bruger" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Brugere" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Til anonyme tråde" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Chat-tråd" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Chat-tråde" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "Angiv bruger eller e-mail for anonym tråd." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "modtageren skal være en personalebruger." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chat-besked" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chat-beskeder" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Gruppe" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Enestående token" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Udestående tokens" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Sortlistet token" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Sortlistede tokens" @@ -485,8 +826,7 @@ msgstr "Hej %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Vi har modtaget en anmodning om at nulstille din adgangskode. Nulstil " @@ -502,8 +842,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Hvis ovenstående knap ikke virker, bedes du kopiere og indsætte følgende " -"URL\n" +"Hvis ovenstående knap ikke virker, bedes du kopiere og indsætte følgende URL\n" " i din webbrowser:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -570,8 +909,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -580,16 +919,16 @@ msgstr "" "brugerens data. Denne visning administrerer processen med at håndtere " "tokenbaseret godkendelse, hvor klienter kan få et par JWT-tokens (adgang og " "opdatering) ved hjælp af de angivne legitimationsoplysninger. Den er bygget " -"oven på en basis-tokenvisning og sikrer korrekt hastighedsbegrænsning for at " -"beskytte mod brute force-angreb." +"oven på en basis-tokenvisning og sikrer korrekt hastighedsbegrænsning for at" +" beskytte mod brute force-angreb." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Håndterer opfriskning af tokens til autentificeringsformål. Denne klasse " "bruges til at levere funktionalitet til token-opdatering som en del af et " @@ -603,8 +942,8 @@ msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -"Repræsenterer en visning til verificering af JSON Web Tokens (JWT) ved hjælp " -"af specifik serialiserings- og valideringslogik." +"Repræsenterer en visning til verificering af JSON Web Tokens (JWT) ved hjælp" +" af specifik serialiserings- og valideringslogik." #: engine/vibes_auth/views.py:103 msgid "the token is invalid" @@ -613,17 +952,10 @@ msgstr "Tokenet er ugyldigt" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementering af brugervisningssæt.\n" -"Indeholder et sæt handlinger, der håndterer brugerrelaterede data såsom " -"oprettelse, hentning, opdateringer, sletning og brugerdefinerede handlinger, " -"herunder nulstilling af adgangskode, upload af avatar, kontoaktivering og " -"sammenlægning af nyligt viste elementer. Denne klasse udvider mixins og " -"GenericViewSet til robust API-håndtering." +"Indeholder et sæt handlinger, der håndterer brugerrelaterede data såsom oprettelse, hentning, opdateringer, sletning og brugerdefinerede handlinger, herunder nulstilling af adgangskode, upload af avatar, kontoaktivering og sammenlægning af nyligt viste elementer. Denne klasse udvider mixins og GenericViewSet til robust API-håndtering." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo index f0c2223e..e92f0a3a 100644 Binary files a/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.po b/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.po index 0854830a..aa1b817d 100644 --- a/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,125 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Waage" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Bestellung" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Bestellungen" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Persönliche Informationen" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Erlaubnisse" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Wichtige Termine" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Zusätzliche Informationen" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Sie können nicht über Ihren Kopf springen!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Ausgewählte Threads schließen" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Ausgewählte Themen öffnen" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Vorschau" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadaten" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "Vorschau" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "Bildvorschau" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Inhalt" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentation" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Terminplanung" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistiken" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "Staats" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Empfänger vorbereiten (abonnierte Benutzer)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Die Kampagne „{}“ befindet sich nicht im Entwurfsstatus." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Empfänger für Kampagne „{}“ vorbereiten." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Kampagne jetzt senden" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Die Kampagne '{}' kann nicht gesendet werden (Status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" +"Die Kampagne „{}“ hat keine Empfänger. Bereiten Sie zunächst die Empfänger " +"vor." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Kampagne „{}“ gestartet." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Kampagne abbrechen" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Kampagne(n) abgebrochen." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Authentifizierung" +msgid "Accounting" +msgstr "Buchhaltung" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -193,11 +268,275 @@ msgid "merge client-stored recently viewed products" msgstr "" "Zusammenführen der vom Kunden gespeicherten, zuletzt angesehenen Produkte" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Entwurf" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Geplant" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Senden" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Spät" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Abgesagt" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Ausstehend" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Fehlgeschlagen" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Geöffnet" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Geklickt" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "Name" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "beschreibender Name für das Bild" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "Bild" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "Bilddatei zur Verwendung in E-Mail-Vorlagen" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "anderer Text" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "Alternativtext für Barrierefreiheit" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "E-Mail-Bild" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "E-Mail-Bilder" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "interner Name für die Vorlage" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "Eindeutige Kennung für die Vorlage" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "Thema" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "E-Mail-Betreffzeile – unterstützt {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML-Inhalt" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"E-Mail-Textinhalt – unterstützt {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "Klartextinhalt" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "Fallback für Klartext (wird automatisch generiert, wenn leer)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "verfügbare Variablen" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "Dokumentation der verfügbaren Vorlagenvariablen" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "E-Mail-Vorlage" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "E-Mail-Vorlagen" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "Interner Name für die Kampagne" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "Vorlage" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "E-Mail-Vorlage für diese Kampagne" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "Status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "geplant für" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" +"Wann soll die Kampagne versendet werden (für manuellen Versand leer lassen)?" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "spät als" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "als die Kampagne tatsächlich verschickt wurde" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "Gesamtzahl der Empfänger" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "Gesendete Anzahl" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "fehlgeschlagene Zählung" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "geöffnete Zählung" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "Klickzahl" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "E-Mail-Kampagne" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "E-Mail-Kampagnen" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "Kampagne" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Benutzer" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "eröffnet am" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "angeklickt" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "Tracking-ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "Eindeutige ID zur Nachverfolgung von Öffnungen und Klicks" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "Fehlermeldung" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "Fehlerdetails, wenn der Versand fehlgeschlagen ist" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "Kampagnenempfänger" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "Empfänger der Kampagne" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Alle Rechte vorbehalten" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Sie haben diese E-Mail erhalten, weil Sie unseren Newsletter abonniert " +"haben." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Abmelden" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Ein Abmeldetoken ist erforderlich." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Ungültiges Format des Abmelde-Tokens." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Benutzer nicht gefunden." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Sie sind bereits abgemeldet." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Sie haben sich erfolgreich von unseren E-Mails abgemeldet." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" -"Die b64-kodierte uuid des Benutzers, der den neuen Benutzer an uns verwiesen " -"hat." +"Die b64-kodierte uuid des Benutzers, der den neuen Benutzer an uns verwiesen" +" hat." #: engine/vibes_auth/graphene/mutations.py:68 msgid "password too weak" @@ -244,14 +583,14 @@ msgstr "Token ist ungültig!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Die Produkte, die dieser Benutzer zuletzt angesehen hat (maximal 48), in " "umgekehrter chronologischer Reihenfolge." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Gruppen" @@ -259,7 +598,8 @@ msgstr "Gruppen" msgid "wishlist" msgstr "Wunschzettel" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -271,11 +611,11 @@ msgstr "" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Sprache ist eine der {settings.LANGUAGES} mit Voreinstellung {settings." -"LANGUAGE_CODE}" +"Sprache ist eine der {settings.LANGUAGES} mit Voreinstellung " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -375,64 +715,68 @@ msgstr "Status des Newsletter-Abonnements des Benutzers" msgid "activation token" msgstr "Aktivierungs-Token" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "Abmeldungs-Token" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "Token für sicheres Abmelden von Kampagnen mit einem Klick" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attribute" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Benutzer" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Benutzer" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Für anonyme Themen" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Chat-Thread" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Chat-Themen" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" "Geben Sie einen Benutzer oder eine E-Mail für einen anonymen Thread an." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "Der Beauftragte muss ein Mitarbeiter sein." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chat-Nachricht" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chat-Nachrichten" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Gruppe" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Hervorragende Wertmarke" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Ausstehende Wertmarken" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token auf der schwarzen Liste" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Token auf der schwarzen Liste" @@ -497,8 +841,7 @@ msgstr "Hallo %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Wir haben eine Anfrage erhalten, Ihr Passwort zurückzusetzen. Bitte setzen " @@ -514,8 +857,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Wenn die obige Schaltfläche nicht funktioniert, kopieren Sie bitte die " -"folgende URL und fügen Sie sie in Ihren Browser ein\n" +"Wenn die obige Schaltfläche nicht funktioniert, kopieren Sie bitte die folgende URL und fügen Sie sie in Ihren Browser ein\n" " in Ihren Webbrowser ein:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -523,8 +865,8 @@ msgid "" "if you did not send this request, please ignore this\n" " email." msgstr "" -"Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-" -"Mail." +"Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese " +"E-Mail." #: engine/vibes_auth/templates/user_reset_password_email.html:102 #, python-format @@ -583,35 +925,35 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Stellt eine Ansicht zum Abrufen eines Paars von Zugangs- und Aktualisierungs-" -"Tokens und der Benutzerdaten dar. Diese Ansicht verwaltet den Prozess der " -"Handhabung der Token-basierten Authentifizierung, bei der Clients ein Paar " -"JWT-Tokens (Zugriffs- und Aktualisierungs-Token) unter Verwendung der " -"bereitgestellten Anmeldeinformationen abrufen können. Sie baut auf einer " -"Basis-Token-Ansicht auf und gewährleistet eine angemessene Ratenbegrenzung " -"zum Schutz vor Brute-Force-Angriffen." +"Stellt eine Ansicht zum Abrufen eines Paars von Zugangs- und " +"Aktualisierungs-Tokens und der Benutzerdaten dar. Diese Ansicht verwaltet " +"den Prozess der Handhabung der Token-basierten Authentifizierung, bei der " +"Clients ein Paar JWT-Tokens (Zugriffs- und Aktualisierungs-Token) unter " +"Verwendung der bereitgestellten Anmeldeinformationen abrufen können. Sie " +"baut auf einer Basis-Token-Ansicht auf und gewährleistet eine angemessene " +"Ratenbegrenzung zum Schutz vor Brute-Force-Angriffen." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Verwaltet die Auffrischung von Token für Authentifizierungszwecke. Diese " -"Klasse wird verwendet, um Funktionen für die Auffrischung von Token als Teil " -"eines Authentifizierungssystems bereitzustellen. Sie stellt sicher, dass " +"Klasse wird verwendet, um Funktionen für die Auffrischung von Token als Teil" +" eines Authentifizierungssystems bereitzustellen. Sie stellt sicher, dass " "Clients ein aktualisiertes Token innerhalb definierter Ratengrenzen " "anfordern können. Die Ansicht verlässt sich auf den zugehörigen Serializer, " -"um die Eingaben für die Token-Aktualisierung zu validieren und entsprechende " -"Ausgaben zu erzeugen." +"um die Eingaben für die Token-Aktualisierung zu validieren und entsprechende" +" Ausgaben zu erzeugen." #: engine/vibes_auth/views.py:83 msgid "" @@ -628,17 +970,10 @@ msgstr "Das Token ist ungültig" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementierung der Benutzeransicht.\n" -"Stellt eine Reihe von Aktionen zur Verfügung, die benutzerbezogene Daten wie " -"Erstellung, Abruf, Aktualisierung, Löschung und benutzerdefinierte Aktionen " -"wie Kennwortrücksetzung, Avatar-Upload, Kontoaktivierung und Zusammenführung " -"kürzlich angesehener Elemente verwalten. Diese Klasse erweitert die Mixins " -"und GenericViewSet für eine robuste API-Behandlung." +"Stellt eine Reihe von Aktionen zur Verfügung, die benutzerbezogene Daten wie Erstellung, Abruf, Aktualisierung, Löschung und benutzerdefinierte Aktionen wie Kennwortrücksetzung, Avatar-Upload, Kontoaktivierung und Zusammenführung kürzlich angesehener Elemente verwalten. Diese Klasse erweitert die Mixins und GenericViewSet für eine robuste API-Behandlung." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo index 024468cc..309cbaad 100644 Binary files a/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po index 80e26e52..8c2e6d88 100644 --- a/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/en_GB/LC_MESSAGES/django.po @@ -1,13 +1,13 @@ -# eVibes Translations. +# Schon Translations. # Copyright (C) 2025 Egor "fureunoir" Gorbunov -# This file is distributed under the same license as the eVibes package. +# This file is distributed under the same license as the Schon package. # EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -17,50 +17,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Balance" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Order" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Orders" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Personal Info" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permissions" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Important dates" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Additional Info" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "You cannot jump over your head!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Close selected threads" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Open selected threads" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Preview" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "preview" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "image preview" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Content" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentation" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Scheduling" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistics" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "stats" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Prepare recipients (subscribed users)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Campaign '{}' is not in draft status." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Preparing recipients for campaign '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Send campaign now" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Campaign '{}' cannot be sent (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Campaign '{}' has no recipients. Prepare recipients first." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Started sending campaign '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Cancel campaign" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} campaign(s) cancelled." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Authentication" +msgid "Accounting" +msgstr "Accounting" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -193,6 +266,267 @@ msgstr "Activation link is invalid or account already activated" msgid "merge client-stored recently viewed products" msgstr "Merge client-stored recently viewed products" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Draft" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Scheduled" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Sending" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Sent" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Cancelled" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Pending" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Failed" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Opened" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Clicked" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "name" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "descriptive name for the image" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "image" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "image file to use in email templates" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "alt text" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternative text for accessibility" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "email image" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "email images" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "internal name for the template" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unique identifier for the template" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "subject" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "email subject line - supports {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML content" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "plain text content" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "plain text fallback (auto-generated if empty)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "available variables" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentation of available template variables" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "email template" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "email templates" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "internal name for the campaign" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "template" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "email template to use for this campaign" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "scheduled at" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "when to send the campaign (leave empty for manual send)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "sent at" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "when the campaign was actually sent" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "total recipients" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "sent count" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "failed count" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "opened count" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "clicked count" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "email campaign" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "email campaigns" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campaign" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "User" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "opened at" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "clicked at" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "tracking ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unique ID for tracking opens and clicks" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "error message" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "error details if sending failed" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "campaign recipient" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "campaign recipients" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "All rights reserved" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "You received this email because you subscribed to our newsletter." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Unsubscribe" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Unsubscribe token is required." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Invalid unsubscribe token format." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "User not found." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "You are already unsubscribed." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "You have been successfully unsubscribed from our emails." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "The user's b64-encoded uuid who referred the new user to us." @@ -242,14 +576,14 @@ msgstr "Token is invalid!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "The products this user has viewed most recently (max 48), in reverse-" "chronological order." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Groups" @@ -257,7 +591,8 @@ msgstr "Groups" msgid "wishlist" msgstr "Wishlist" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -268,11 +603,11 @@ msgstr "Attributes may be used to store custom data" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"Language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -368,63 +703,67 @@ msgstr "User's newsletter subscription status" msgid "activation token" msgstr "Activation token" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "unsubscribe token" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token for secure one-click unsubscribe from campaigns" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attributes" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "User" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Users" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "For anonymous threads" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Chat thread" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Chat threads" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "provide user or email for anonymous thread." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "assignee must be a staff user." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chat message" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chat messages" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Group" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Outstanding token" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Outstanding tokens" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Blacklisted token" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Blacklisted tokens" @@ -487,8 +826,7 @@ msgstr "Hello %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "We have received a request to reset your password. Please reset your " @@ -572,31 +910,31 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." #: engine/vibes_auth/views.py:83 msgid "" @@ -613,16 +951,10 @@ msgstr "The token is invalid" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.mo index 3b16d8dd..2bf3c191 100644 Binary files a/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.po b/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.po index 54bb23f7..752056d7 100644 --- a/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Balance" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Order" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Orders" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Personal Info" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permissions" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Important dates" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Additional Info" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "You cannot jump over your head!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Close selected threads" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Open selected threads" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Preview" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "preview" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "image preview" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Content" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentation" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Scheduling" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistics" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "state" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Prepare recipients (subscribed users)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Campaign '{}' is not in draft status." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Preparing recipients for campaign '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Send campaign now" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Campaign '{}' cannot be sent (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Campaign '{}' has no recipients. Prepare recipients first." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Started sending campaign '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Cancel campaign" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} campaign(s) cancelled." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Authentication" +msgid "Accounting" +msgstr "Accounting" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -189,6 +262,267 @@ msgstr "Activation link is invalid or account already activated" msgid "merge client-stored recently viewed products" msgstr "Merge client-stored recently viewed products" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Draft" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Scheduled" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Sending" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Late" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Cancelled" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Pending" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Failed" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Opened" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Clicked" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "name" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "descriptive name for the image" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "image" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "image file to use in email templates" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "other text" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternative text for accessibility" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "email image" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "email images" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "internal name for the template" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "servants" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unique identifier for the template" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "subject" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "email subject line - supports {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML content" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "plain text content" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "plain text fallback (auto-generated if empty)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "available variables" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentation of available template variables" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "email template" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "email templates" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "internal name for the campaign" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "template" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "email template to use for this campaign" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "scheduled at" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "when to send the campaign (leave empty for manual send)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "late that" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "when the campaign was actually sent" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "total recipients" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "sent count" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "failed count" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "opened count" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "clicked count" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "email campaign" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "email campaigns" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campaign" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "User" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "opened at" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "clicked at" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "tracking ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unique ID for tracking opens and clicks" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "error message" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "error details if sending failed" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "campaign recipient" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "campaign recipients" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "All rights reserved" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "You received this email because you subscribed to our newsletter." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Unsubscribe" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Unsubscribe token is required." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Invalid unsubscribe token format." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "User not found." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "You are already unsubscribed." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "You have been successfully unsubscribed from our emails." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "The user's b64-encoded uuid who referred the new user to us." @@ -238,14 +572,14 @@ msgstr "Token is invalid!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "The products this user has viewed most recently (max 48), in reverse-" "chronological order." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Groups" @@ -253,7 +587,8 @@ msgstr "Groups" msgid "wishlist" msgstr "Wishlist" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -264,11 +599,11 @@ msgstr "Attributes may be used to store custom data" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"Language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -364,63 +699,67 @@ msgstr "User's newsletter subscription status" msgid "activation token" msgstr "Activation token" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "unsubscribe token" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token for secure one-click unsubscribe from campaigns" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attributes" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "User" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Users" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "For anonymous threads" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Chat thread" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Chat threads" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "provide user or email for anonymous thread." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "assignee must be a staff user." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chat message" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chat messages" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Group" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Outstanding token" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Outstanding tokens" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Blacklisted token" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Blacklisted tokens" @@ -483,8 +822,7 @@ msgstr "Hello %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "We have received a request to reset your password. Please reset your " @@ -568,31 +906,31 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." #: engine/vibes_auth/views.py:83 msgid "" @@ -609,16 +947,10 @@ msgstr "The token is invalid" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo index 80b64289..529f100a 100644 Binary files a/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.po b/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.po index 7d7e8b7a..9321fa5c 100644 --- a/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/es_ES/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,124 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Saldo" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Pida" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Pedidos" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Información personal" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permisos" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Fechas importantes" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Información adicional" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "¡No puedes saltar por encima de tu cabeza!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Cerrar los hilos seleccionados" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Abrir los hilos seleccionados" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Vista previa" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadatos" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "vista previa" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "vista previa de la imagen" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Contenido" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentación" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Programación" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Estadísticas" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "estatal" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Preparar destinatarios (usuarios suscritos)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "La campaña «{}» no se encuentra en estado de borrador." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Preparando destinatarios para la campaña «{}»." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Enviar campaña ahora" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "No se puede enviar la campaña «{}» (estado: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" +"La campaña «{}» no tiene destinatarios. Prepare primero los destinatarios." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Se ha iniciado el envío de la campaña «{}»." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Cancelar campaña" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Campaña(s) cancelada(s)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autenticación" +msgid "Accounting" +msgstr "Contabilidad" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -191,6 +265,271 @@ msgstr "El enlace de activación no es válido o la cuenta ya está activada" msgid "merge client-stored recently viewed products" msgstr "Fusionar productos vistos recientemente almacenados por el cliente" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Borrador" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Programado" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Envío" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Tarde" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Cancelado" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Pendiente" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Fallido" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Abierto" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Hacido clic" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nombre" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "nombre descriptivo de la imagen" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "imagen" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "archivo de imagen para usar en plantillas de correo electrónico" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "otro texto" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "texto alternativo para accesibilidad" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "imagen de correo electrónico" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "imágenes de correo electrónico" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "nombre interno de la plantilla" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "esclavo" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "identificador único para la plantilla" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "asunto" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "Asunto del correo electrónico: compatible con {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Contenido HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"Contenido del cuerpo del correo electrónico: admite {{ user.first_name }}, " +"{{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}." + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "contenido de texto sin formato" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "texto sin formato de reserva (generado automáticamente si está vacío)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "variables disponibles" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "Documentación de las variables de plantilla disponibles." + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "Plantilla de correo electrónico" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "plantillas de correo electrónico" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "nombre interno de la campaña" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "plantilla" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "Plantilla de correo electrónico que se utilizará para esta campaña." + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "estado" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "programado para" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "Cuándo enviar la campaña (déjelo en blanco para enviarla manualmente)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "tarde que" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "cuando se envió realmente la campaña" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "receptores totales" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "número de envíos" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "recuento fallido" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "recuento abierto" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "recuento de clics" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "campaña de correo electrónico" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "campañas por correo electrónico" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campaña" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Usuario" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "abierto en" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "hizo clic en" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "ID de seguimiento" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "" +"Identificador único para realizar un seguimiento de las aperturas y los " +"clics." + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "mensaje de error" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "Detalles del error si el envío ha fallado" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "destinatario de la campaña" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "destinatarios de la campaña" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Todos los derechos reservados" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Ha recibido este correo electrónico porque se ha suscrito a nuestro boletín " +"informativo." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Cancelar suscripción" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Se requiere un token de cancelación de suscripción." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Formato de token de cancelación de suscripción no válido." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Usuario no encontrado." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Ya estás dado de baja." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Te hemos dado de baja de nuestros correos electrónicos." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -241,14 +580,14 @@ msgstr "¡La ficha no es válida!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Los productos que este usuario ha visto más recientemente (máx. 48), en " "orden cronológico inverso." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupos" @@ -256,7 +595,8 @@ msgstr "Grupos" msgid "wishlist" msgstr "Lista de deseos" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -267,8 +607,8 @@ msgstr "Los atributos pueden utilizarse para almacenar datos personalizados" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "El idioma es uno de los {settings.LANGUAGES} con {settings.LANGUAGE_CODE} " "por defecto" @@ -368,63 +708,68 @@ msgstr "Estado de suscripción del usuario al boletín" msgid "activation token" msgstr "Ficha de activación" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "Token para cancelar suscripción" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"Token para darse de baja de forma segura con un solo clic de las campañas." + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Atributos" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Usuario" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Usuarios" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Para hilos anónimos" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Hilo de conversación" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Hilos de chat" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "proporcionar usuario o email para hilo anónimo." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "El cesionario debe ser un usuario del personal." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Mensaje de chat" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Mensajes de chat" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Grupo" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Ficha pendiente" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Fichas pendientes" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Ficha en la lista negra" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Fichas en la lista negra" @@ -434,7 +779,8 @@ msgstr "`attributes` debe ser un diccionario" #: engine/vibes_auth/serializers.py:97 msgid "business identificator is required when registering as a business" -msgstr "El identificador de empresa es necesario para registrarse como empresa" +msgstr "" +"El identificador de empresa es necesario para registrarse como empresa" #: engine/vibes_auth/serializers.py:127 #, python-brace-format @@ -487,8 +833,7 @@ msgstr "Hola %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Hemos recibido una solicitud para restablecer su contraseña. Por favor, " @@ -572,14 +917,14 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Representa una vista para obtener un par de tokens de acceso y actualización " -"y los datos del usuario. Esta vista gestiona el proceso de autenticación " +"Representa una vista para obtener un par de tokens de acceso y actualización" +" y los datos del usuario. Esta vista gestiona el proceso de autenticación " "basada en tokens donde los clientes pueden obtener un par de tokens JWT " "(acceso y actualización) utilizando las credenciales proporcionadas. Se " "construye sobre una vista de token base y asegura una limitación de tasa " @@ -587,18 +932,18 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Maneja la actualización de tokens con fines de autenticación. Esta clase se " "utiliza para proporcionar funcionalidad a las operaciones de actualización " "de tokens como parte de un sistema de autenticación. Garantiza que los " "clientes puedan solicitar un token actualizado dentro de los límites de " -"velocidad definidos. La vista depende del serializador asociado para validar " -"las entradas de actualización de tokens y producir las salidas apropiadas." +"velocidad definidos. La vista depende del serializador asociado para validar" +" las entradas de actualización de tokens y producir las salidas apropiadas." #: engine/vibes_auth/views.py:83 msgid "" @@ -615,18 +960,10 @@ msgstr "El token no es válido" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementación del conjunto de vistas de usuario.\n" -"Proporciona un conjunto de acciones que gestionan los datos relacionados con " -"el usuario, como la creación, recuperación, actualización, eliminación y " -"acciones personalizadas, incluyendo el restablecimiento de la contraseña, la " -"carga de avatares, la activación de cuentas y la fusión de elementos vistos " -"recientemente. Esta clase extiende los mixins y GenericViewSet para un " -"manejo robusto de la API." +"Proporciona un conjunto de acciones que gestionan los datos relacionados con el usuario, como la creación, recuperación, actualización, eliminación y acciones personalizadas, incluyendo el restablecimiento de la contraseña, la carga de avatares, la activación de cuentas y la fusión de elementos vistos recientemente. Esta clase extiende los mixins y GenericViewSet para un manejo robusto de la API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po index 7d298896..f8c18374 100644 --- a/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/fa_IR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,49 +16,122 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "" + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" +msgid "Accounting" msgstr "" #: engine/vibes_auth/choices.py:6 @@ -188,6 +261,265 @@ msgstr "" msgid "merge client-stored recently viewed products" msgstr "" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, " +"{{ project_name }}, {{ unsubscribe_url }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -242,7 +574,7 @@ msgid "" msgstr "" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "" @@ -352,63 +684,67 @@ msgstr "" msgid "activation token" msgstr "" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "" diff --git a/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo index dd1fab78..412f3fc0 100644 Binary files a/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po index a23b231f..71839586 100644 --- a/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,125 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Balance" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Commande" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Commandes" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Informations personnelles" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permissions" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Important dates" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Informations complémentaires" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Vous ne pouvez pas sauter par-dessus votre tête !" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Fermer les fils sélectionnés" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Ouvrir les fils sélectionnés" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Aperçu" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Métadonnées" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "aperçu" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "aperçu de l'image" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Contenu" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentation" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Planification" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistiques" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "étatique" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Préparez les destinataires (utilisateurs abonnés)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "La campagne « {} » n'est pas en statut brouillon." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Préparation des destinataires pour la campagne « {} »." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Envoyer la campagne maintenant" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "La campagne « {} » ne peut pas être envoyée (statut : {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" +"La campagne « {} » n'a pas de destinataires. Préparez d'abord les " +"destinataires." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Début de l'envoi de la campagne « {} »." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Annuler la campagne" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Campagne(s) annulée(s)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Authentification" +msgid "Accounting" +msgstr "Comptabilité" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -194,6 +269,269 @@ msgstr "Le lien d'activation n'est pas valide ou le compte est déjà activé" msgid "merge client-stored recently viewed products" msgstr "Fusionner les produits récemment consultés stockés par le client" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Projet" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Prévu" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Envoi" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Tard" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Annulé" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "En attente" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Échec" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Ouvert" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Clic" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nom" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "nom descriptif de l'image" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "image" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "fichier image à utiliser dans les modèles d'e-mails" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "autre texte" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "texte alternatif pour l'accessibilité" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "image de courriel" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "images par e-mail" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "nom interne du modèle" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "serviteurs" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "identifiant unique pour le modèle" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "sujet" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "Objet de l'e-mail - prend en charge {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Contenu HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"Contenu du corps de l'e-mail - prend en charge {{ user.first_name }}, {{ " +"user.email }}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "contenu en texte brut" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "texte brut de secours (généré automatiquement s'il est vide)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "variables disponibles" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentation des variables de modèle disponibles" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "modèle d'e-mail" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "modèles d'e-mails" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "nom interne de la campagne" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "modèle" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "Modèle d'e-mail à utiliser pour cette campagne" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "statut" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "prévu à" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "Quand envoyer la campagne (laisser vide pour un envoi manuel)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "tard que" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "lorsque la campagne a été effectivement envoyée" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "nombre total de destinataires" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "nombre envoyé" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "nombre d'échecs" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "nombre ouvert" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "nombre de clics" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "campagne par e-mail" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "campagnes par e-mail" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campagne" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Utilisateur" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "ouvert à" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "cliqué sur" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "identifiant de suivi" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "identifiant unique pour suivre les ouvertures et les clics" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "message d'erreur" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "détails de l'erreur si l'envoi a échoué" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "destinataire de la campagne" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "destinataires de la campagne" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Tous droits réservés" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Vous avez reçu cet e-mail parce que vous vous êtes abonné à notre " +"newsletter." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Se désabonner" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Le jeton de désabonnement est requis." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Format du jeton de désabonnement non valide." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Utilisateur introuvable." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Vous êtes déjà désabonné." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Vous êtes désormais désabonné de nos e-mails." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -245,14 +583,14 @@ msgstr "Le jeton n'est pas valide !" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" -"Les produits que cet utilisateur a consultés le plus récemment (max 48), par " -"ordre chronologique inverse." +"Les produits que cet utilisateur a consultés le plus récemment (max 48), par" +" ordre chronologique inverse." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Groupes" @@ -260,7 +598,8 @@ msgstr "Groupes" msgid "wishlist" msgstr "Liste de souhaits" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -272,8 +611,8 @@ msgstr "" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "La langue est l'une des {settings.LANGUAGES} avec la valeur par défaut " "{settings.LANGUAGE_CODE}." @@ -375,65 +714,71 @@ msgstr "Statut de l'abonnement à la lettre d'information de l'utilisateur" msgid "activation token" msgstr "Jeton d'activation" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "jeton de désabonnement" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"jeton permettant de se désabonner en toute sécurité d'une campagne en un " +"seul clic" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attributs" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Utilisateur" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Utilisateurs" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Pour les fils de discussion anonymes" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Fil de discussion" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Fils de discussion" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" "Indiquer l'utilisateur ou l'adresse électronique pour le fil de discussion " "anonyme." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "L'attributaire doit être un utilisateur du personnel." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Message de chat" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Messages de chat" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Groupe" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Jeton exceptionnel" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Jetons en circulation" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Jeton sur liste noire" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Jetons sur liste noire" @@ -471,7 +816,8 @@ msgstr "Jeton non valide" #: engine/vibes_auth/serializers.py:286 msgid "no user uuid claim present in token" -msgstr "Aucune revendication d'uuid d'utilisateur n'est présente dans le jeton" +msgstr "" +"Aucune revendication d'uuid d'utilisateur n'est présente dans le jeton" #: engine/vibes_auth/serializers.py:288 msgid "user does not exist" @@ -498,8 +844,7 @@ msgstr "Bonjour %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Nous avons reçu une demande de réinitialisation de votre mot de passe. " @@ -516,8 +861,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Si le bouton ci-dessus ne fonctionne pas, veuillez copier et coller l'URL " -"suivante\n" +"Si le bouton ci-dessus ne fonctionne pas, veuillez copier et coller l'URL suivante\n" " suivante dans votre navigateur web :" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -549,8 +893,8 @@ msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -"Merci de vous être inscrit à %(project_name)s. Veuillez activer votre compte " -"en cliquant sur le bouton ci-dessous :" +"Merci de vous être inscrit à %(project_name)s. Veuillez activer votre compte" +" en cliquant sur le bouton ci-dessous :" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -585,8 +929,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -601,11 +945,11 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Gère le rafraîchissement des jetons à des fins d'authentification. Cette " "classe est utilisée pour fournir une fonctionnalité pour les opérations de " @@ -620,8 +964,8 @@ msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -"Représente une vue permettant de vérifier les jetons Web JSON (JWT) à l'aide " -"d'une logique de sérialisation et de validation spécifique." +"Représente une vue permettant de vérifier les jetons Web JSON (JWT) à l'aide" +" d'une logique de sérialisation et de validation spécifique." #: engine/vibes_auth/views.py:103 msgid "the token is invalid" @@ -630,18 +974,10 @@ msgstr "Le jeton n'est pas valide" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Mise en œuvre de l'ensemble des vues de l'utilisateur.\n" -"Fournit un ensemble d'actions qui gèrent les données liées à l'utilisateur, " -"telles que la création, la récupération, les mises à jour, la suppression et " -"les actions personnalisées, notamment la réinitialisation du mot de passe, " -"le téléchargement de l'avatar, l'activation du compte et la fusion des " -"éléments récemment consultés. Cette classe étend les mixins et " -"GenericViewSet pour une gestion robuste de l'API." +"Fournit un ensemble d'actions qui gèrent les données liées à l'utilisateur, telles que la création, la récupération, les mises à jour, la suppression et les actions personnalisées, notamment la réinitialisation du mot de passe, le téléchargement de l'avatar, l'activation du compte et la fusion des éléments récemment consultés. Cette classe étend les mixins et GenericViewSet pour une gestion robuste de l'API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo index c51124bc..b74dcc46 100644 Binary files a/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.po b/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.po index 75772612..eef0d07b 100644 --- a/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "מאזניים" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "הזמנה" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "הזמנות" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "מידע אישי" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "הרשאות" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "תאריכים חשובים" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "מידע נוסף" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "אי אפשר לקפוץ מעל הראש!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "סגור את השרשורים הנבחרים" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "פתח את השרשורים הנבחרים" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "תצוגה מקדימה" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "מטא-נתונים" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "תצוגה מקדימה" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "תצוגה מקדימה של תמונה" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "תוכן" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "תיעוד" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "תזמון" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "סטטיסטיקה" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "מדינה" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "הכן את הנמענים (משתמשים מנויים)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "הקמפיין '{}' אינו במצב טיוטה." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "הכנת הנמענים לקמפיין '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "שלח קמפיין עכשיו" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "לא ניתן לשלוח את הקמפיין '{}' (סטטוס: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "לקמפיין '{}' אין נמענים. הכן תחילה את הנמענים." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "התחלתי לשלוח את הקמפיין '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "בטל קמפיין" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} קמפיין/קמפיינים בוטלו." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "אימות" +msgid "Accounting" +msgstr "חשבונאות" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -189,6 +262,267 @@ msgstr "קישור ההפעלה אינו תקף או שהחשבון כבר הו msgid "merge client-stored recently viewed products" msgstr "מיזוג מוצרים שנצפו לאחרונה המאוחסנים אצל הלקוח" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "טיוטה" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "מתוכנן" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "שליחה" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "מאוחר" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "בוטל" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "בהמתנה" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "נכשל" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "נפתח" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "לחיצה" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "שם" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "שם תיאורי לתמונה" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "תמונה" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "קובץ תמונה לשימוש בתבניות דוא\"ל" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "טקסט אחר" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "טקסט חלופי לנגישות" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "תמונה בדוא\"ל" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "תמונות דוא\"ל" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "שם פנימי לתבנית" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "משרתים" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "מזהה ייחודי לתבנית" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "נושא" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "שורת הנושא של הדוא\"ל - תומך ב-{{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "תוכן HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"תוכן גוף הדוא\"ל - תומך ב-{{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "תוכן טקסט רגיל" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "טקסט רגיל חלופי (נוצר אוטומטית אם ריק)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "משתנים זמינים" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "תיעוד של משתני תבנית זמינים" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "תבנית דוא\"ל" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "תבניות דוא\"ל" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "שם פנימי לקמפיין" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "תבנית" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "תבנית דוא\"ל לשימוש בקמפיין זה" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "סטטוס" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "מתוכנן ב" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "מתי לשלוח את הקמפיין (השאר ריק לשליחה ידנית)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "מאוחר יותר" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "כאשר הקמפיין נשלח בפועל" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "סך כל הנמענים" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "מספר נשלח" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "ספירה כושלת" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "נפתח ספירה" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "מספר הקליקים" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "קמפיין דוא\"ל" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "קמפיינים בדוא\"ל" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "קמפיין" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "משתמש" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "נפתח ב" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "לחץ על" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "מספר מעקב" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "מזהה ייחודי למעקב אחר פתיחות ולחיצות" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "הודעת שגיאה" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "פרטי השגיאה אם השליחה נכשלה" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "מקבל הקמפיין" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "נמעני הקמפיין" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "כל הזכויות שמורות" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "קיבלת דוא\"ל זה מכיוון שנרשמת לניוזלטר שלנו." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "ביטול מנוי" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "נדרש אסימון ביטול מנוי." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "פורמט אסימון ביטול המנוי אינו חוקי." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "המשתמש לא נמצא." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "ההרשמה שלך כבר בוטלה." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "ההרשמה שלך לדיוור שלנו בוטלה בהצלחה." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "ה-uuid המקודד ב-b64 של המשתמש שהפנה אלינו את המשתמש החדש." @@ -238,12 +572,12 @@ msgstr "האסימון אינו חוקי!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "המוצרים שהמשתמש צפה בהם לאחרונה (מקסימום 48), בסדר כרונולוגי הפוך." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "קבוצות" @@ -251,7 +585,8 @@ msgstr "קבוצות" msgid "wishlist" msgstr "רשימת משאלות" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "אוואטר" @@ -262,8 +597,8 @@ msgstr "ניתן להשתמש בתכונות לאחסון נתונים מותא #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "השפה היא אחת ה-{settings.LANGUAGES} עם ברירת מחדל {settings.LANGUAGE_CODE}" @@ -297,10 +632,10 @@ msgid "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." msgstr "" -"מייצג ישות משתמש עם שדות ושיטות מותאמים אישית לפונקציונליות מורחבת. מחלקה זו " -"מרחיבה את המודל AbstractUser ומשלבת תכונות נוספות כגון כניסה מותאמת אישית " -"באמצעות דוא\"ל, שיטות אימות, מצב מנוי, אימות ואחסון תכונות. היא מספקת גם כלי " -"עזר לניהול פריטים שנצפו לאחרונה והפעלה מבוססת אסימון לאימות חשבונות. המודל " +"מייצג ישות משתמש עם שדות ושיטות מותאמים אישית לפונקציונליות מורחבת. מחלקה זו" +" מרחיבה את המודל AbstractUser ומשלבת תכונות נוספות כגון כניסה מותאמת אישית " +"באמצעות דוא\"ל, שיטות אימות, מצב מנוי, אימות ואחסון תכונות. היא מספקת גם כלי" +" עזר לניהול פריטים שנצפו לאחרונה והפעלה מבוססת אסימון לאימות חשבונות. המודל " "User נועד לטפל במקרי שימוש ספציפיים לניהול משתמשים משופר." #: engine/vibes_auth/models.py:53 @@ -359,63 +694,67 @@ msgstr "סטטוס המנוי לניוזלטר של המשתמש" msgid "activation token" msgstr "אסימון הפעלה" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "אסימון ביטול מנוי" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "אסימון לביטול מנוי מאובטח בלחיצה אחת מקמפיינים" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "תכונות" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "משתמש" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "משתמשים" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "לשרשורים אנונימיים" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "שרשור צ'אט" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "שרשורי צ'אט" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "ציין משתמש או דוא\"ל עבור שרשור אנונימי." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "המקבל חייב להיות משתמש צוות." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "הודעת צ'אט" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "הודעות צ'אט" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "קבוצה" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "אסימון יוצא מן הכלל" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "אסימונים מצטיינים" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "אסימון ברשימה השחורה" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "אסימונים ברשימה השחורה" @@ -478,12 +817,11 @@ msgstr "שלום %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" -"קיבלנו בקשה לאיפוס הסיסמה שלך. אנא איפס את הסיסמה שלך על ידי לחיצה על הכפתור " -"שלהלן:" +"קיבלנו בקשה לאיפוס הסיסמה שלך. אנא איפס את הסיסמה שלך על ידי לחיצה על הכפתור" +" שלהלן:" #: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" @@ -559,8 +897,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -572,11 +910,11 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "מטפל ברענון אסימונים למטרות אימות. מחלקה זו משמשת לספק פונקציונליות עבור " "פעולות רענון אסימונים כחלק ממערכת אימות. היא מבטיחה שלקוחות יוכלו לבקש " @@ -598,10 +936,7 @@ msgstr "האסימון אינו חוקי" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "יישום הגדרת תצוגת משתמש. מספק סט פעולות לניהול נתונים הקשורים למשתמש, כגון " "יצירה, אחזור, עדכונים, מחיקה ופעולות מותאמות אישית, כולל איפוס סיסמה, העלאת " diff --git a/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po index 34a17a46..bff3415f 100644 --- a/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/hi_IN/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,49 +12,122 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "" + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" +msgid "Accounting" msgstr "" #: engine/vibes_auth/choices.py:6 @@ -188,6 +257,265 @@ msgstr "" msgid "merge client-stored recently viewed products" msgstr "" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, " +"{{ project_name }}, {{ unsubscribe_url }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -242,7 +570,7 @@ msgid "" msgstr "" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "" @@ -352,63 +680,67 @@ msgstr "" msgid "activation token" msgstr "" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "" diff --git a/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po index 7d298896..f8c18374 100644 --- a/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/hr_HR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,49 +16,122 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "" + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" +msgid "Accounting" msgstr "" #: engine/vibes_auth/choices.py:6 @@ -188,6 +261,265 @@ msgstr "" msgid "merge client-stored recently viewed products" msgstr "" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, " +"{{ project_name }}, {{ unsubscribe_url }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -242,7 +574,7 @@ msgid "" msgstr "" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "" @@ -352,63 +684,67 @@ msgstr "" msgid "activation token" msgstr "" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "" diff --git a/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo index 3350b6b6..e43d894b 100644 Binary files a/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.po b/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.po index f95a3f13..c70a924b 100644 --- a/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/id_ID/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,124 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Keseimbangan" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Pesan" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Pesanan" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Informasi Pribadi" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Izin" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Tanggal-tanggal penting" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Informasi Tambahan" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Anda tidak bisa melompati kepala Anda!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Menutup utas yang dipilih" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Buka utas yang dipilih" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Pratinjau" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "pratinjau" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "pratinjau gambar" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Konten" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentasi" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Penjadwalan" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistik" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "negara" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Siapkan penerima (pengguna yang berlangganan)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampanye '{}' tidak dalam status draf." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Mempersiapkan penerima untuk kampanye '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Kirim kampanye sekarang" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Kampanye '{}' tidak dapat dikirim (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" +"Kampanye '{}' tidak memiliki penerima. Siapkan penerima terlebih dahulu." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Mulai mengirim kampanye '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Batalkan kampanye" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} kampanye(s) dibatalkan." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Otentikasi" +msgid "Accounting" +msgstr "Akuntansi" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -191,6 +265,267 @@ msgstr "Tautan aktivasi tidak valid atau akun sudah diaktifkan" msgid "merge client-stored recently viewed products" msgstr "Menggabungkan produk yang baru saja dilihat yang disimpan klien" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Rancangan" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Jadwal" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Pengiriman" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Terlambat" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Dibatalkan" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Menunggu" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Gagal" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Dibuka" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Diklik" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nama" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "Nama deskriptif untuk gambar" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "gambar" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "Berkas gambar yang akan digunakan dalam templat email" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "teks alternatif" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "Teks alternatif untuk aksesibilitas" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "gambar email" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "gambar email" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "Nama internal untuk templat" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "pelayan" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "pengidentifikasi unik untuk templat" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "subjek" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "Baris subjek email - mendukung {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Konten HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"Isi badan email - mendukung {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "konten teks biasa" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "Teks biasa sebagai cadangan (dibuat secara otomatis jika kosong)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "variabel yang tersedia" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "Dokumentasi variabel template yang tersedia" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "email template" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "templat email" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "Nama internal untuk kampanye" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "templat" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "Template email yang akan digunakan untuk kampanye ini" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "direncanakan pada" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "Kapan mengirim kampanye (biarkan kosong untuk pengiriman manual)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "terlambat" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "ketika kampanye tersebut benar-benar dikirimkan" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "jumlah penerima" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "jumlah pesan yang dikirim" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "penghitungan yang gagal" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "jumlah yang dibuka" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "jumlah klik" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "kampanye email" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "kampanye email" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampanye" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Pengguna" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "dibuka pada" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "diklik pada" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "ID pelacakan" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "ID unik untuk melacak pembukaan dan klik" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "pesan kesalahan" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "Rincian kesalahan jika pengiriman gagal" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "penerima kampanye" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "penerima kampanye" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Semua hak dilindungi undang-undang." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "Anda menerima email ini karena Anda telah berlangganan buletin kami." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Berhenti berlangganan" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Token unsubscribe diperlukan." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Format token unsubscribe tidak valid." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Pengguna tidak ditemukan." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Anda sudah berhenti berlangganan." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Anda telah berhasil unsubscribe dari email kami." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -241,14 +576,14 @@ msgstr "Token tidak valid!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Produk yang terakhir dilihat pengguna ini (maksimal 48), dalam urutan " "kronologis terbalik." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grup" @@ -256,7 +591,8 @@ msgstr "Grup" msgid "wishlist" msgstr "Daftar keinginan" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -267,11 +603,11 @@ msgstr "Atribut dapat digunakan untuk menyimpan data khusus" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Bahasa adalah salah satu dari {settings.LANGUAGES} dengan default {settings." -"LANGUAGE_CODE}" +"Bahasa adalah salah satu dari {settings.LANGUAGES} dengan default " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -368,63 +704,68 @@ msgstr "Status berlangganan buletin pengguna" msgid "activation token" msgstr "Token aktivasi" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "Token unsubscribe" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"Token untuk unsubscribe dengan aman hanya dengan satu klik dari kampanye." + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Atribut" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Pengguna" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Pengguna" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Untuk utas anonim" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Utas obrolan" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Utas obrolan" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "menyediakan pengguna atau email untuk utas anonim." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "Penerima tugas haruslah seorang staf pengguna." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Pesan obrolan" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Pesan obrolan" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Kelompok" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Token yang luar biasa" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Token yang beredar" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token yang masuk daftar hitam" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Token yang masuk daftar hitam" @@ -487,12 +828,11 @@ msgstr "Halo %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" -"Kami telah menerima permintaan untuk mengatur ulang kata sandi Anda. Silakan " -"atur ulang kata sandi Anda dengan mengeklik tombol di bawah ini:" +"Kami telah menerima permintaan untuk mengatur ulang kata sandi Anda. Silakan" +" atur ulang kata sandi Anda dengan mengeklik tombol di bawah ini:" #: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" @@ -504,8 +844,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Jika tombol di atas tidak berfungsi, silakan salin dan tempelkan URL " -"berikut\n" +"Jika tombol di atas tidak berfungsi, silakan salin dan tempelkan URL berikut\n" " ke dalam peramban web Anda:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -573,8 +912,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -588,11 +927,11 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Menangani penyegaran token untuk tujuan otentikasi. Kelas ini digunakan " "untuk menyediakan fungsionalitas untuk operasi penyegaran token sebagai " @@ -616,17 +955,10 @@ msgstr "Token tidak valid" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementasi set tampilan pengguna.\n" -"Menyediakan serangkaian tindakan yang mengelola data terkait pengguna " -"seperti pembuatan, pengambilan, pembaruan, penghapusan, dan tindakan khusus " -"termasuk pengaturan ulang kata sandi, unggahan avatar, aktivasi akun, dan " -"penggabungan item yang baru dilihat. Kelas ini memperluas mixin dan " -"GenericViewSet untuk penanganan API yang kuat." +"Menyediakan serangkaian tindakan yang mengelola data terkait pengguna seperti pembuatan, pengambilan, pembaruan, penghapusan, dan tindakan khusus termasuk pengaturan ulang kata sandi, unggahan avatar, aktivasi akun, dan penggabungan item yang baru dilihat. Kelas ini memperluas mixin dan GenericViewSet untuk penanganan API yang kuat." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo index e4fcff66..73ae85d2 100644 Binary files a/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.po b/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.po index 06078812..e48286a3 100644 --- a/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Equilibrio" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Ordine" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Ordini" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Informazioni personali" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permessi" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Date importanti" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Ulteriori informazioni" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Non si può saltare sopra la testa!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Chiudere le filettature selezionate" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Aprire le discussioni selezionate" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Anteprima" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadati" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "anteprima" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "anteprima immagine" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Contenuto" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentazione" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Pianificazione" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistiche" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "statale" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Preparare i destinatari (utenti iscritti)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "La campagna \"{}\" non è in stato di bozza." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Preparazione dei destinatari per la campagna \"{}\"." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Invia campagna ora" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "La campagna '{}' non può essere inviata (stato: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "La campagna \"{}\" non ha destinatari. Preparare prima i destinatari." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Avviata l'invio della campagna '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Annulla campagna" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Campagna/e annullata/e." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autenticazione" +msgid "Accounting" +msgstr "Contabilità" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -99,8 +172,8 @@ msgid "" "Staff-only actions: list_open, assign, reply, close, ping. Unified event " "payloads are emitted." msgstr "" -"Azioni solo per il personale: list_open, assign, reply, close, ping. Vengono " -"emessi payload di eventi unificati." +"Azioni solo per il personale: list_open, assign, reply, close, ping. Vengono" +" emessi payload di eventi unificati." #: engine/vibes_auth/docs/drf/messaging.py:43 msgid "Per-thread staff channel" @@ -109,7 +182,8 @@ msgstr "Canale del personale per thread" #: engine/vibes_auth/docs/drf/messaging.py:44 msgid "Reply, close, and ping within a specific thread." msgstr "" -"Rispondere, chiudere e inviare ping all'interno di una discussione specifica." +"Rispondere, chiudere e inviare ping all'interno di una discussione " +"specifica." #: engine/vibes_auth/docs/drf/views.py:18 msgid "obtain a token pair" @@ -193,6 +267,269 @@ msgstr "Il link di attivazione non è valido o l'account è già stato attivato. msgid "merge client-stored recently viewed products" msgstr "Unire i prodotti memorizzati dal cliente e visti di recente" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Bozza" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Pianificato" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Invio" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Tardi" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Annullato" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "In sospeso" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Fallito" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Aperto" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Cliccato" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nome" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "nome descrittivo dell'immagine" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "immagine" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "file immagine da utilizzare nei modelli di email" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "altro testo" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "testo alternativo per l'accessibilità" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "immagine e-mail" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "immagini e-mail" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "nome interno del modello" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "servitori" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "identificatore univoco per il modello" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "oggetto" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "Oggetto dell'e-mail - supporta {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Contenuto HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"contenuto del corpo dell'e-mail - supporta {{ user.first_name }}, {{ " +"user.email }}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "contenuto in testo semplice" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "fallback in testo semplice (generato automaticamente se vuoto)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "variabili disponibili" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentazione delle variabili dei modelli disponibili" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "modello di email" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "modelli di email" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "nome interno della campagna" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "modello" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "modello di email da utilizzare per questa campagna" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "stato" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "in programma alle" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "quando inviare la campagna (lasciare vuoto per l'invio manuale)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "tardi che" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "quando la campagna è stata effettivamente inviata" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "destinatari totali" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "numero inviato" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "conteggio fallito" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "conteggio aperto" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "numero di clic" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "campagna e-mail" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "campagne e-mail" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campagna" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Utente" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "aperto a" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "cliccato su" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "ID di tracciamento" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "ID univoco per tracciare aperture e clic" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "messaggio di errore" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "dettagli dell'errore se l'invio non è andato a buon fine" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "destinatario della campagna" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "destinatari della campagna" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Tutti i diritti riservati" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Hai ricevuto questa e-mail perché ti sei iscritto alla nostra newsletter." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Annulla iscrizione" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "È necessario il token di cancellazione dell'iscrizione." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Formato token di cancellazione non valido." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Utente non trovato." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Ti sei già cancellato." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "" +"La tua iscrizione alla nostra mailing list è stata cancellata con successo." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "L'uuid b64-encoded dell'utente che ci ha segnalato il nuovo utente." @@ -242,14 +579,14 @@ msgstr "Il gettone non è valido!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "I prodotti che questo utente ha visualizzato più di recente (max 48), in " "ordine cronologico inverso." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Gruppi" @@ -257,7 +594,8 @@ msgstr "Gruppi" msgid "wishlist" msgstr "Lista dei desideri" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -269,8 +607,8 @@ msgstr "" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "La lingua è una delle {settings.LANGUAGES} con il codice predefinito " "{settings.LANGUAGE_CODE}." @@ -306,13 +644,13 @@ msgid "" "for enhanced user management." msgstr "" "Rappresenta un'entità Utente con campi e metodi personalizzati per " -"funzionalità estese. Questa classe estende il modello AbstractUser e integra " -"funzionalità aggiuntive come il login via e-mail personalizzato, i metodi di " -"convalida, lo stato di iscrizione, la verifica e la memorizzazione degli " +"funzionalità estese. Questa classe estende il modello AbstractUser e integra" +" funzionalità aggiuntive come il login via e-mail personalizzato, i metodi " +"di convalida, lo stato di iscrizione, la verifica e la memorizzazione degli " "attributi. Fornisce inoltre utilità per la gestione degli elementi " "visualizzati di recente e l'attivazione basata su token per la verifica " -"degli account. Il modello User è progettato per gestire casi d'uso specifici " -"per una migliore gestione degli utenti." +"degli account. Il modello User è progettato per gestire casi d'uso specifici" +" per una migliore gestione degli utenti." #: engine/vibes_auth/models.py:53 msgid "email" @@ -370,63 +708,67 @@ msgstr "Stato di iscrizione alla newsletter dell'utente" msgid "activation token" msgstr "Token di attivazione" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "Token di cancellazione" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token per la cancellazione sicura con un solo clic dalle campagne" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attributi" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Utente" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Utenti" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Per le discussioni anonime" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Filo della chat" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Filo conduttore della chat" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "fornire l'utente o l'e-mail per il thread anonimo." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "L'assegnatario deve essere un utente del personale." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Messaggio di chat" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Messaggi di chat" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Gruppo" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Gettone eccezionale" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Gettoni in sospeso" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token in lista nera" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Gettoni nella lista nera" @@ -491,8 +833,7 @@ msgstr "Hello %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Abbiamo ricevuto una richiesta di reimpostazione della password. La " @@ -576,8 +917,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -592,17 +933,17 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Gestisce l'aggiornamento dei token per l'autenticazione. Questa classe è " "utilizzata per fornire funzionalità per le operazioni di aggiornamento dei " "token come parte di un sistema di autenticazione. Garantisce che i client " -"possano richiedere un token aggiornato entro limiti di velocità definiti. La " -"vista si affida al serializzatore associato per convalidare gli input di " +"possano richiedere un token aggiornato entro limiti di velocità definiti. La" +" vista si affida al serializzatore associato per convalidare gli input di " "aggiornamento dei token e produrre output appropriati." #: engine/vibes_auth/views.py:83 @@ -620,18 +961,10 @@ msgstr "Il token non è valido" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementazione del set di viste utente.\n" -"Fornisce un insieme di azioni che gestiscono i dati relativi all'utente, " -"come la creazione, il recupero, gli aggiornamenti, la cancellazione e le " -"azioni personalizzate, tra cui la reimpostazione della password, il " -"caricamento dell'avatar, l'attivazione dell'account e l'unione degli " -"elementi visti di recente. Questa classe estende i mixin e GenericViewSet " -"per una gestione robusta delle API." +"Fornisce un insieme di azioni che gestiscono i dati relativi all'utente, come la creazione, il recupero, gli aggiornamenti, la cancellazione e le azioni personalizzate, tra cui la reimpostazione della password, il caricamento dell'avatar, l'attivazione dell'account e l'unione degli elementi visti di recente. Questa classe estende i mixin e GenericViewSet per una gestione robusta delle API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo index 369b9770..1e1967fc 100644 Binary files a/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po index 0ff2b694..fe4d9564 100644 --- a/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/ja_JP/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "バランス" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "オーダー" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "受注状況" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "個人情報" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "アクセス許可" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "重要な日程" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "追加情報" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "頭上を飛び越えることはできない!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "選択したスレッドを閉じる" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "選択したスレッドを開く" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "プレビュー" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "メタデータ" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "プレビュー" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "画像プレビュー" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "コンテンツ" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "ドキュメント" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "スケジュール設定" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "統計" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "国家" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "受信者(登録ユーザー)の準備" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "キャンペーン「{}」は下書き状態ではありません。" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "キャンペーン「{}」の受信者準備中" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "今すぐキャンペーンを送信" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "キャンペーン '{}' を送信できません(ステータス: {})。" + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "キャンペーン「{}」には受信者がいません。まず受信者を準備してください。" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "キャンペーン '{}' の送信を開始しました。" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "キャンペーンをキャンセルする" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "キャンペーンがキャンセルされました。" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "認証" +msgid "Accounting" +msgstr "会計" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -86,9 +159,7 @@ msgstr "ユーザーメッセージのエントリーポイント" msgid "" "Anonymous or authenticated non-staff users send messages. Also supports " "action=ping." -msgstr "" -"匿名または認証されたスタッフ以外のユーザーがメッセージを送信。action=pingもサ" -"ポートしています。" +msgstr "匿名または認証されたスタッフ以外のユーザーがメッセージを送信。action=pingもサポートしています。" #: engine/vibes_auth/docs/drf/messaging.py:30 msgid "Staff inbox control" @@ -99,8 +170,7 @@ msgid "" "Staff-only actions: list_open, assign, reply, close, ping. Unified event " "payloads are emitted." msgstr "" -"スタッフのみのアクション: list_open、assign、reply、close、ping。統一されたイ" -"ベントペイロードが発行されます。" +"スタッフのみのアクション: list_open、assign、reply、close、ping。統一されたイベントペイロードが発行されます。" #: engine/vibes_auth/docs/drf/messaging.py:43 msgid "Per-thread staff channel" @@ -183,14 +253,273 @@ msgstr "ユーザーアカウントの有効化" #: engine/vibes_auth/docs/drf/viewsets.py:101 msgid "activation link is invalid or account already activated" -msgstr "" -"アクティベーションリンクが無効であるか、アカウントがすでにアクティベーション" -"されています。" +msgstr "アクティベーションリンクが無効であるか、アカウントがすでにアクティベーションされています。" #: engine/vibes_auth/docs/drf/viewsets.py:111 msgid "merge client-stored recently viewed products" msgstr "クライアントが最近閲覧した商品をマージする" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "草案" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "予定済み" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "送信" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "遅く" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "キャンセルされました" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "保留中" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "失敗した" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "開店" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "クリックされた" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "名前" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "画像の説明名" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "画像" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "メールテンプレートで使用する画像ファイル" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "別のテキスト" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "アクセシビリティのための代替テキスト" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "メール画像" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "メール画像" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "テンプレートの内部名" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "テンプレート固有識別子" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "件名" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "メール件名 - {{ variables }} をサポートします" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTMLコンテンツ" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"メール本文の内容 - {{ user.first_name }}をサポートします、{{ user.email }}をサポートします、{{ " +"project_name }} をサポートします、{{ unsubscribe_url }}をサポートします" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "プレーンテキストコンテンツ" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "プレーンテキストのフォールバック(空の場合自動生成)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "利用可能な変数" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "利用可能なテンプレート変数のドキュメント" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "メールテンプレート" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "メールテンプレート" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "キャンペーンの内部名称" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "テンプレート" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "このキャンペーンで使用するメールテンプレート" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "ステータス" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "予定されている" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "キャンペーン送信日時(手動送信の場合は空欄のまま)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "遅れて" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "キャンペーンが実際に送信されたとき" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "総受取人数" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "送信数" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "失敗したカウント" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "開封済みカウント" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "クリック数" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "メールキャンペーン" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "メールキャンペーン" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "キャンペーン" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "ユーザー" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "開店" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "クリックされた" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "追跡ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "開封とクリックを追跡するための固有ID" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "エラーメッセージ" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "送信に失敗した場合のエラー詳細" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "キャンペーンの受取人" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "キャンペーンの受信者" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "無断複写・転載を禁じます" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "このメールは、ニュースレターに登録されたためにお送りしています。" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "配信停止" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "購読解除トークンが必要です。" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "無効な登録解除トークン形式です。" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "ユーザーが見つかりません。" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "あなたは既に購読を解除されています。" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "メール配信の登録解除が完了しました。" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "新規ユーザーを紹介したユーザーのb64エンコードされたuuid。" @@ -240,12 +569,12 @@ msgstr "トークンが無効です!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "このユーザーが最近閲覧した商品(最大48件)を逆順に表示します。" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "グループ" @@ -253,7 +582,8 @@ msgstr "グループ" msgid "wishlist" msgstr "ウィッシュリスト" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "アバター" @@ -264,11 +594,9 @@ msgstr "属性は、カスタム・データを保存するために使用する #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" -msgstr "" -"言語は {settings.LANGUAGES} のいずれかで、デフォルトは {settings." -"LANGUAGE_CODE} です。" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" +msgstr "言語は {settings.LANGUAGES} のいずれかで、デフォルトは {settings.LANGUAGE_CODE} です。" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -300,12 +628,8 @@ msgid "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." msgstr "" -"拡張機能のためにカスタマイズされたフィールドとメソッドを持つ User エンティ" -"ティを表します。このクラスは AbstractUser モデルを拡張し、カスタムメールログ" -"イン、検証メソッド、購読ステータス、検証、属性保存などの追加機能を統合してい" -"ます。また、最近閲覧したアイテムを管理するユーティリティや、アカウントを検証" -"するためのトークンベースのアクティベーションも提供します。Userモデルは、ユー" -"ザ管理を強化するための特定のユースケースを扱うように設計されています。" +"拡張機能のためにカスタマイズされたフィールドとメソッドを持つ User エンティティを表します。このクラスは AbstractUser " +"モデルを拡張し、カスタムメールログイン、検証メソッド、購読ステータス、検証、属性保存などの追加機能を統合しています。また、最近閲覧したアイテムを管理するユーティリティや、アカウントを検証するためのトークンベースのアクティベーションも提供します。Userモデルは、ユーザ管理を強化するための特定のユースケースを扱うように設計されています。" #: engine/vibes_auth/models.py:53 msgid "email" @@ -363,63 +687,67 @@ msgstr "ユーザーのニュースレター購読状況" msgid "activation token" msgstr "アクティベーション・トークン" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "登録解除トークン" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "キャンペーンからの安全なワンクリック解除用トークン" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "属性" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "ユーザー" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "ユーザー" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "匿名スレッドの場合" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "チャットスレッド" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "チャットスレッド" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "匿名スレッドの場合は、ユーザーまたは電子メールを入力してください。" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "担当者はスタッフユーザーでなければならない。" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "チャットメッセージ" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "チャットメッセージ" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "グループ" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "卓越したトークン" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "トークン残高" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "ブラックリストトークン" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "ブラックリストに載ったトークン" @@ -482,12 +810,9 @@ msgstr "こんにちは %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" -msgstr "" -"パスワードの再設定依頼が届いております。以下のボタンをクリックして、パスワー" -"ドをリセットしてください:" +msgstr "パスワードの再設定依頼が届いております。以下のボタンをクリックして、パスワードをリセットしてください:" #: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" @@ -499,8 +824,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"上記のボタンが機能しない場合は、次のURLをコピーしてウェブブラウザに貼り付けて" -"ください。\n" +"上記のボタンが機能しない場合は、次のURLをコピーしてウェブブラウザに貼り付けてください。\n" " をウェブブラウザに貼り付けてください:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -531,9 +855,7 @@ msgstr "アカウントの有効化" msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" -msgstr "" -"%(project_name)sにご登録いただきありがとうございます。下のボタンをクリックし" -"てアカウントを有効にしてください:" +msgstr "%(project_name)sにご登録いただきありがとうございます。下のボタンをクリックしてアカウントを有効にしてください:" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -562,45 +884,36 @@ msgstr "{settings.PROJECT_NAME}| パスワードのリセット" msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." -msgstr "" -"電話番号の形式が無効です。電話番号は次の形式で入力してください:" -"\"+999999999\".15桁まで入力可能です。" +msgstr "電話番号の形式が無効です。電話番号は次の形式で入力してください:\"+999999999\".15桁まで入力可能です。" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"アクセストークンとリフレッシュトークンのペアとユーザーデータを取得するための" -"ビューを表します。このビューは、クライアントが提供されたクレデンシャルを使用" -"して JWT トークンのペア(アクセスとリフレッシュ)を取得できる、トークン・ベー" -"スの認証を処理するプロセスを管理します。ベースのトークンビューの上に構築さ" -"れ、ブルートフォース攻撃から保護するために適切なレート制限を保証します。" +"アクセストークンとリフレッシュトークンのペアとユーザーデータを取得するためのビューを表します。このビューは、クライアントが提供されたクレデンシャルを使用して" +" JWT " +"トークンのペア(アクセスとリフレッシュ)を取得できる、トークン・ベースの認証を処理するプロセスを管理します。ベースのトークンビューの上に構築され、ブルートフォース攻撃から保護するために適切なレート制限を保証します。" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" -"認証目的のトークンのリフレッシュを処理します。このクラスは、認証システムの一" -"部としてトークンのリフレッシュ操作の機能を提供するために使用されます。このク" -"ラスは、クライアントがリフレッシュされたトークンを定義されたレート制限内で要" -"求できるようにします。ビューは、トークン更新の入力を検証して適切な出力を行う" -"ために、 関連するシリアライザに依存します。" +"認証目的のトークンのリフレッシュを処理します。このクラスは、認証システムの一部としてトークンのリフレッシュ操作の機能を提供するために使用されます。このクラスは、クライアントがリフレッシュされたトークンを定義されたレート制限内で要求できるようにします。ビューは、トークン更新の入力を検証して適切な出力を行うために、" +" 関連するシリアライザに依存します。" #: engine/vibes_auth/views.py:83 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " -msgstr "" -"特定のシリアライズと検証ロジックを使用して JSON ウェブトークン (JWT) を検証す" -"るビューを表します。" +msgstr "特定のシリアライズと検証ロジックを使用して JSON ウェブトークン (JWT) を検証するビューを表します。" #: engine/vibes_auth/views.py:103 msgid "the token is invalid" @@ -609,16 +922,10 @@ msgstr "トークンが無効" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "ユーザービューセットの実装。\n" -"作成、取得、更新、削除、およびパスワードリセット、アバターアップロード、アカ" -"ウントの有効化、最近見たアイテムのマージなどのカスタムアクションなど、ユーザ" -"関連のデータを管理するアクションのセットを提供します。このクラスは、堅牢なAPI" -"ハンドリングのためにミキシンとGenericViewSetを拡張します。" +"作成、取得、更新、削除、およびパスワードリセット、アバターアップロード、アカウントの有効化、最近見たアイテムのマージなどのカスタムアクションなど、ユーザ関連のデータを管理するアクションのセットを提供します。このクラスは、堅牢なAPIハンドリングのためにミキシンとGenericViewSetを拡張します。" #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo index 9964f0bf..6cc44c8c 100644 Binary files a/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po index 34a17a46..bff3415f 100644 --- a/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/kk_KZ/LC_MESSAGES/django.po @@ -1,13 +1,9 @@ -# EVIBES GETTEXT TRANSLATIONS -# Copyright (C) 2025 EGOR GORBUNOV -# This file is distributed under the same license as the EVIBES package. -# EGOR GORBUNOV , 2025. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -16,49 +12,122 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "" + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" +msgid "Accounting" msgstr "" #: engine/vibes_auth/choices.py:6 @@ -188,6 +257,265 @@ msgstr "" msgid "merge client-stored recently viewed products" msgstr "" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, " +"{{ project_name }}, {{ unsubscribe_url }}" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -242,7 +570,7 @@ msgid "" msgstr "" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "" @@ -352,63 +680,67 @@ msgstr "" msgid "activation token" msgstr "" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "" diff --git a/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo index 1f33cb3c..c6cbcf53 100644 Binary files a/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po index 965e1c7c..ac457079 100644 --- a/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/ko_KR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "잔액" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "주문" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "주문" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "개인 정보" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "권한" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "중요한 날짜" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "추가 정보" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "머리 위로 점프할 수 없습니다!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "선택한 스레드 닫기" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "선택한 스레드 열기" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "미리 보기" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "메타데이터" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "미리보기" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "이미지 미리보기" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "콘텐츠" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "문서화" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "일정 관리" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "통계" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "국가" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "수신자(구독자) 준비" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "캠페인 '{}'은 초안 상태가 아닙니다." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "캠페인 '{}'의 수신자 준비 중" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "캠페인 지금 보내기" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "캠페인 '{}'을(를) 보낼 수 없습니다 (상태: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "캠페인 '{}'에는 수신자가 없습니다. 먼저 수신자를 준비하십시오." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "캠페인 '{}' 발송 시작." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "캠페인 취소" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} 캠페인(들)이 취소되었습니다." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "인증" +msgid "Accounting" +msgstr "회계" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -86,8 +159,7 @@ msgstr "사용자 메시지 진입점" msgid "" "Anonymous or authenticated non-staff users send messages. Also supports " "action=ping." -msgstr "" -"익명 또는 인증된 비직원 사용자가 메시지를 보냅니다. action=ping도 지원합니다." +msgstr "익명 또는 인증된 비직원 사용자가 메시지를 보냅니다. action=ping도 지원합니다." #: engine/vibes_auth/docs/drf/messaging.py:30 msgid "Staff inbox control" @@ -97,9 +169,7 @@ msgstr "직원 받은 편지함 제어" msgid "" "Staff-only actions: list_open, assign, reply, close, ping. Unified event " "payloads are emitted." -msgstr "" -"직원 전용 작업: 목록 열기, 할당하기, 답장하기, 닫기, 핑하기. 통합 이벤트 페이" -"로드가 전송됩니다." +msgstr "직원 전용 작업: 목록 열기, 할당하기, 답장하기, 닫기, 핑하기. 통합 이벤트 페이로드가 전송됩니다." #: engine/vibes_auth/docs/drf/messaging.py:43 msgid "Per-thread staff channel" @@ -188,6 +258,267 @@ msgstr "활성화 링크가 유효하지 않거나 계정이 이미 활성화되 msgid "merge client-stored recently viewed products" msgstr "클라이언트가 저장한 최근 본 제품 병합" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "초안" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "예정된" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "발송" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "늦게" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "취소됨" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "보류 중" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "실패함" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "개장" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "클릭됨" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "이름" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "이미지에 대한 설명적 이름" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "이미지" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "이메일 템플릿에 사용할 이미지 파일" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "다른 텍스트" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "접근성을 위한 대체 텍스트" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "이메일 이미지" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "이메일 이미지" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "템플릿의 내부 명칭" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "하인" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "템플릿의 고유 식별자" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "주제" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "이메일 제목 - {{ variables }} 지원" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML 콘텐츠" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"이메일 본문 내용 - {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ " +"unsubscribe_url }} 지원" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "일반 텍스트 콘텐츠" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "일반 텍스트 대체 (비어 있을 경우 자동 생성)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "사용 가능한 변수" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "사용 가능한 템플릿 변수에 대한 문서화" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "이메일 템플릿" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "이메일 템플릿" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "캠페인의 내부 명칭" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "템플릿" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "이 캠페인에 사용할 이메일 템플릿" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "상태" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "예정된" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "캠페인 발송 시기 (수동 발송 시 비워 두기)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "늦게" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "캠페인이 실제로 발송되었을 때" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "총 수신자" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "발송 횟수" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "실패한 카운트" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "열린 카운트" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "클릭 수" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "이메일 캠페인" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "이메일 캠페인" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "캠페인" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "사용자" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "개장" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "클릭했다" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "추적 ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "열람 및 클릭 추적을 위한 고유 ID" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "오류 메시지" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "전송 실패 시 오류 세부 정보" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "캠페인 수신자" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "캠페인 수신자" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "모든 권리 보유" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "귀하께서는 저희 뉴스레터를 구독하셨기 때문에 이 이메일을 받으셨습니다." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "구독 취소" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "구독 취소 토큰이 필요합니다." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "구독 취소 토큰 형식이 잘못되었습니다." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "사용자를 찾을 수 없습니다." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "이미 구독이 취소되었습니다." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "당사 이메일 수신 거부 요청이 성공적으로 처리되었습니다." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "새 사용자를 추천한 사용자의 b64로 인코딩된 UUID입니다." @@ -237,12 +568,12 @@ msgstr "토큰이 유효하지 않습니다!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "이 사용자가 가장 최근에 본 제품(최대 48개)을 시간 역순으로 표시합니다." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "그룹" @@ -250,7 +581,8 @@ msgstr "그룹" msgid "wishlist" msgstr "위시리스트" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "아바타" @@ -261,11 +593,9 @@ msgstr "속성을 사용하여 사용자 지정 데이터를 저장할 수 있 #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" -msgstr "" -"언어는 {settings.LANGUAGES} 중 하나이며 기본값은 {settings.LANGUAGE_CODE}입니" -"다." +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" +msgstr "언어는 {settings.LANGUAGES} 중 하나이며 기본값은 {settings.LANGUAGE_CODE}입니다." #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -297,12 +627,10 @@ msgid "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." msgstr "" -"확장 기능을 위한 사용자 정의 필드 및 메서드가 있는 사용자 엔티티를 나타냅니" -"다. 이 클래스는 AbstractUser 모델을 확장하여 사용자 지정 이메일 로그인, 유효" -"성 검사 방법, 가입 상태, 인증 및 속성 저장과 같은 추가 기능을 통합합니다. 또" -"한 최근에 본 항목을 관리하기 위한 유틸리티와 계정 인증을 위한 토큰 기반 활성" -"화도 제공합니다. 사용자 모델은 향상된 사용자 관리를 위한 특정 사용 사례를 처" -"리하도록 설계되었습니다." +"확장 기능을 위한 사용자 정의 필드 및 메서드가 있는 사용자 엔티티를 나타냅니다. 이 클래스는 AbstractUser 모델을 확장하여 " +"사용자 지정 이메일 로그인, 유효성 검사 방법, 가입 상태, 인증 및 속성 저장과 같은 추가 기능을 통합합니다. 또한 최근에 본 항목을 " +"관리하기 위한 유틸리티와 계정 인증을 위한 토큰 기반 활성화도 제공합니다. 사용자 모델은 향상된 사용자 관리를 위한 특정 사용 사례를 " +"처리하도록 설계되었습니다." #: engine/vibes_auth/models.py:53 msgid "email" @@ -360,63 +688,67 @@ msgstr "사용자의 뉴스레터 구독 상태" msgid "activation token" msgstr "활성화 토큰" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "구독 취소 토큰" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "캠페인에서 안전하게 원클릭으로 구독 취소할 수 있는 토큰" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "속성" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "사용자" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "사용자" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "익명 스레드의 경우" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "채팅 스레드" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "채팅 스레드" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "익명 스레드에 사용자 또는 이메일을 입력합니다." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "양수인은 직원 사용자여야 합니다." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "채팅 메시지" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "채팅 메시지" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "그룹" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "뛰어난 토큰" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "우수 토큰" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "블랙리스트에 오른 토큰" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "블랙리스트에 오른 토큰" @@ -479,12 +811,9 @@ msgstr "안녕하세요 %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" -msgstr "" -"비밀번호 재설정 요청을 받았습니다. 아래 버튼을 클릭하여 비밀번호를 재설정하세" -"요:" +msgstr "비밀번호 재설정 요청을 받았습니다. 아래 버튼을 클릭하여 비밀번호를 재설정하세요:" #: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" @@ -527,9 +856,7 @@ msgstr "계정 활성화" msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" -msgstr "" -"가입해 주셔서 감사합니다 %(project_name)s. 아래 버튼을 클릭하여 계정을 활성화" -"하세요:" +msgstr "가입해 주셔서 감사합니다 %(project_name)s. 아래 버튼을 클릭하여 계정을 활성화하세요:" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -559,44 +886,38 @@ msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -"잘못된 전화번호 형식입니다. 번호는 다음과 같은 형식으로 입력해야 합니다: " -"\"+999999999\". 최대 15자리까지 입력할 수 있습니다." +"잘못된 전화번호 형식입니다. 번호는 다음과 같은 형식으로 입력해야 합니다: \"+999999999\". 최대 15자리까지 입력할 수 " +"있습니다." #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"액세스 및 새로 고침 토큰과 사용자 데이터 쌍을 가져오기 위한 보기를 나타냅니" -"다. 이 보기는 클라이언트가 제공된 자격 증명을 사용하여 한 쌍의 JWT 토큰(액세" -"스 및 새로 고침)을 얻을 수 있는 토큰 기반 인증을 처리하는 프로세스를 관리합니" -"다. 기본 토큰 보기 위에 구축되며 무차별 암호 대입 공격으로부터 보호하기 위해 " -"적절한 속도 제한을 보장합니다." +"액세스 및 새로 고침 토큰과 사용자 데이터 쌍을 가져오기 위한 보기를 나타냅니다. 이 보기는 클라이언트가 제공된 자격 증명을 사용하여 한" +" 쌍의 JWT 토큰(액세스 및 새로 고침)을 얻을 수 있는 토큰 기반 인증을 처리하는 프로세스를 관리합니다. 기본 토큰 보기 위에 " +"구축되며 무차별 암호 대입 공격으로부터 보호하기 위해 적절한 속도 제한을 보장합니다." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" -"인증 목적으로 토큰을 새로 고치는 작업을 처리합니다. 이 클래스는 인증 시스템" -"의 일부로 토큰 새로 고침 작업을 위한 기능을 제공하는 데 사용됩니다. 클라이언" -"트가 정의된 속도 제한 내에서 토큰 새로 고침을 요청할 수 있도록 합니다. 이 보" -"기는 연결된 직렬화기에 의존하여 토큰 새로 고침 입력의 유효성을 검사하고 적절" -"한 출력을 생성합니다." +"인증 목적으로 토큰을 새로 고치는 작업을 처리합니다. 이 클래스는 인증 시스템의 일부로 토큰 새로 고침 작업을 위한 기능을 제공하는 데 " +"사용됩니다. 클라이언트가 정의된 속도 제한 내에서 토큰 새로 고침을 요청할 수 있도록 합니다. 이 보기는 연결된 직렬화기에 의존하여 토큰" +" 새로 고침 입력의 유효성을 검사하고 적절한 출력을 생성합니다." #: engine/vibes_auth/views.py:83 msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " -msgstr "" -"특정 직렬화 및 유효성 검사 로직을 사용하여 JSON 웹 토큰(JWT)을 확인하기 위한 " -"보기를 나타냅니다." +msgstr "특정 직렬화 및 유효성 검사 로직을 사용하여 JSON 웹 토큰(JWT)을 확인하기 위한 보기를 나타냅니다." #: engine/vibes_auth/views.py:103 msgid "the token is invalid" @@ -605,16 +926,10 @@ msgstr "토큰이 유효하지 않습니다." #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "사용자 보기 세트 구현.\n" -"생성, 검색, 업데이트, 삭제, 비밀번호 재설정, 아바타 업로드, 계정 활성화, 최근" -"에 본 항목 병합 등의 사용자 관련 데이터와 사용자 지정 작업을 관리하는 일련의 " -"작업을 제공합니다. 이 클래스는 강력한 API 처리를 위해 믹스인 및 " -"GenericViewSet을 확장합니다." +"생성, 검색, 업데이트, 삭제, 비밀번호 재설정, 아바타 업로드, 계정 활성화, 최근에 본 항목 병합 등의 사용자 관련 데이터와 사용자 지정 작업을 관리하는 일련의 작업을 제공합니다. 이 클래스는 강력한 API 처리를 위해 믹스인 및 GenericViewSet을 확장합니다." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo index f0c5399b..93104f6d 100644 Binary files a/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po b/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po index 94a42391..e6a9cd34 100644 --- a/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/nl_NL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Saldo" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Bestel" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Bestellingen" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Persoonlijke info" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Rechten" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Belangrijke data" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Extra info" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Je kunt niet over je hoofd springen!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Geselecteerde threads sluiten" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Geselecteerde draden openen" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Voorbeeld" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "voorvertoning" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "afbeeldingsvoorbeeld" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Inhoud" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentatie" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Planning" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistieken" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "staten" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Ontvangers voorbereiden (aangemelde gebruikers)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Campagne '{}' bevindt zich niet in conceptstatus." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Ontvangers voorbereiden op campagne '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Campagne nu verzenden" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Campagne '{}' kan niet worden verzonden (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Campagne '{}' heeft geen ontvangers. Bereid eerst de ontvangers voor." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Campagne '{}' gestart." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Campagne annuleren" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} campagne(s) geannuleerd." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Authenticatie" +msgid "Accounting" +msgstr "Boekhouding" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -191,6 +264,271 @@ msgstr "Activeringslink is ongeldig of account is al geactiveerd" msgid "merge client-stored recently viewed products" msgstr "Laatst bekeken producten samenvoegen" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Ontwerp" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Gepland" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Verzenden" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Laat" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "In afwachting" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Mislukt" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Geopend" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Geklikt" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "naam" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "beschrijvende naam voor de afbeelding" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "afbeelding" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "afbeeldingsbestand voor gebruik in e-mailsjablonen" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "ander tekst" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternatieve tekst voor toegankelijkheid" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "e-mailafbeelding" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "e-mailafbeeldingen" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "interne naam voor het sjabloon" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unieke identificatiecode voor de sjabloon" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "onderwerp" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "onderwerpregel van e-mail - ondersteunt {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML-inhoud" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"inhoud van e-mailbericht - ondersteunt {{ user.first_name }}, {{ user.email " +"}}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "platte tekstinhoud" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "fallback voor platte tekst (automatisch gegenereerd indien leeg)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "beschikbare variabelen" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentatie van beschikbare sjabloonvariabelen" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "e-mail sjabloon" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "e-mailsjablonen" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "interne naam voor de campagne" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "sjabloon" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "E-mailsjabloon voor deze campagne" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "gepland om" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" +"wanneer de campagne moet worden verzonden (laat leeg voor handmatige " +"verzending)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "laat dat" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "wanneer de campagne daadwerkelijk werd verstuurd" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "totaal aantal ontvangers" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "aantal verzonden berichten" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "mislukte telling" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "geopende telling" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "aantal klikken" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "e-mailcampagne" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "e-mailcampagnes" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campagne" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Gebruiker" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "geopend om" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "aangeklikt op" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "tracking-ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unieke ID voor het bijhouden van opens en clicks" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "foutmelding" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "foutdetails als verzenden mislukt is" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "campagneontvanger" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "ontvangers van de campagne" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Alle rechten voorbehouden" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Je hebt deze e-mail ontvangen omdat je je hebt aangemeld voor onze " +"nieuwsbrief." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Afmelden" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Afmeldtoken is vereist." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Ongeldig formaat van het afmeldtoken." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Gebruiker niet gevonden." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Je bent al uitgeschreven." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Je bent nu uitgeschreven voor onze e-mails." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -242,14 +580,14 @@ msgstr "Token is invalid!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "De producten die deze gebruiker het laatst heeft bekeken (max 48), in " "omgekeerd-chronologische volgorde." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Groepen" @@ -257,7 +595,8 @@ msgstr "Groepen" msgid "wishlist" msgstr "Verlanglijst" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -268,11 +607,11 @@ msgstr "Attributen kunnen worden gebruikt om aangepaste gegevens op te slaan" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Taal is een van de {settings.LANGUAGES} met standaard {settings." -"LANGUAGE_CODE}" +"Taal is een van de {settings.LANGUAGES} met standaard " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -370,63 +709,67 @@ msgstr "Inschrijvingsstatus nieuwsbrief gebruiker" msgid "activation token" msgstr "Activeringstoken" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "afmeldtoken" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token voor veilig uitschrijven uit campagnes met één klik" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attributen" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Gebruiker" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Gebruikers" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Voor anonieme threads" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Draadje chatten" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Gespreksonderwerpen" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "gebruiker of e-mail opgeven voor anonieme thread." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "De toegewezen gebruiker moet een personeelsgebruiker zijn." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chatbericht" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chatberichten" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Groep" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Uitstekende penning" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Uitstaande tokens" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token op zwarte lijst" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Tokens op de zwarte lijst" @@ -489,12 +832,11 @@ msgstr "Hallo %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" -"We hebben een verzoek ontvangen om je wachtwoord opnieuw in te stellen. Klik " -"op de knop hieronder om je wachtwoord opnieuw in te stellen:" +"We hebben een verzoek ontvangen om je wachtwoord opnieuw in te stellen. Klik" +" op de knop hieronder om je wachtwoord opnieuw in te stellen:" #: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" @@ -538,8 +880,8 @@ msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -"Bedankt voor het aanmelden bij %(project_name)s. Activeer je account door op " -"de onderstaande knop te klikken:" +"Bedankt voor het aanmelden bij %(project_name)s. Activeer je account door op" +" de onderstaande knop te klikken:" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -574,8 +916,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -584,16 +926,16 @@ msgstr "" "verversingstokens en gebruikersgegevens. Deze weergave beheert het proces " "van het afhandelen van authenticatie op basis van tokens, waarbij clients " "een paar JWT-tokens kunnen krijgen (toegang en verversen) met behulp van " -"verstrekte referenties. Het is gebouwd bovenop een basis token view en zorgt " -"voor een goede rate limiting om te beschermen tegen brute force aanvallen." +"verstrekte referenties. Het is gebouwd bovenop een basis token view en zorgt" +" voor een goede rate limiting om te beschermen tegen brute force aanvallen." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Ververst tokens voor authenticatiedoeleinden. Deze klasse wordt gebruikt om " "functionaliteit te bieden voor het verversen van tokens als onderdeel van " @@ -617,17 +959,10 @@ msgstr "Het token is ongeldig" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementatie van gebruikersviewset.\n" -"Biedt een set acties voor het beheren van gebruikersgerelateerde gegevens " -"zoals aanmaken, opvragen, bijwerken, verwijderen en aangepaste acties zoals " -"wachtwoord opnieuw instellen, avatar uploaden, account activeren en onlangs " -"bekeken items samenvoegen. Deze klasse breidt de mixins en GenericViewSet " -"uit voor robuuste API afhandeling." +"Biedt een set acties voor het beheren van gebruikersgerelateerde gegevens zoals aanmaken, opvragen, bijwerken, verwijderen en aangepaste acties zoals wachtwoord opnieuw instellen, avatar uploaden, account activeren en onlangs bekeken items samenvoegen. Deze klasse breidt de mixins en GenericViewSet uit voor robuuste API afhandeling." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo index cec22804..a243b752 100644 Binary files a/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.po b/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.po index 95dd51ba..fe07290e 100644 --- a/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Balanse" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Bestilling" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Bestillinger" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Personlig informasjon" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Tillatelser" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Viktige datoer" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Ytterligere informasjon" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Du kan ikke hoppe over hodet!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Lukk utvalgte tråder" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Åpne utvalgte tråder" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "forhåndsvisning" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "bildeforhåndsvisning" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Innhold" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentasjon" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Planlegging" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistikk" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "stats" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Forbered mottakere (abonnenter)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampanjen '{}' er ikke i utkaststatus." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Forbereder mottakere for kampanjen '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Send kampanje nå" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Kampanjen '{}' kan ikke sendes (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Kampanjen '{}' har ingen mottakere. Forbered mottakere først." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Begynte å sende kampanjen '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Avbryt kampanje" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Kampanje(r) avlyst." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autentisering" +msgid "Accounting" +msgstr "Regnskap" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -87,8 +160,8 @@ msgid "" "Anonymous or authenticated non-staff users send messages. Also supports " "action=ping." msgstr "" -"Anonyme eller autentiserte ikke-ansatte brukere kan sende meldinger. Støtter " -"også action=ping." +"Anonyme eller autentiserte ikke-ansatte brukere kan sende meldinger. Støtter" +" også action=ping." #: engine/vibes_auth/docs/drf/messaging.py:30 msgid "Staff inbox control" @@ -99,8 +172,8 @@ msgid "" "Staff-only actions: list_open, assign, reply, close, ping. Unified event " "payloads are emitted." msgstr "" -"Kun personalhandlinger: list_open, assign, reply, close, ping. Unified event " -"payloads sendes ut." +"Kun personalhandlinger: list_open, assign, reply, close, ping. Unified event" +" payloads sendes ut." #: engine/vibes_auth/docs/drf/messaging.py:43 msgid "Per-thread staff channel" @@ -191,6 +264,268 @@ msgstr "Aktiveringslenken er ugyldig eller kontoen er allerede aktivert" msgid "merge client-stored recently viewed products" msgstr "Slå sammen nylig viste produkter lagret hos kunden" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Utkast" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Planlagt" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Sending" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Sent" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Avlyst" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Venter" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Mislykket" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Åpnet" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Klikket" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "navn" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "beskrivende navn for bildet" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "bilde" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "bildefil som skal brukes i e-postmaler" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "annen tekst" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternativ tekst for tilgjengelighet" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "e-postbilde" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "e-postbilder" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "internt navn for malen" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "tjenere" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unik identifikator for malen" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "emne" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "e-postens emnelinje - støtter {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML-innhold" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"e-postinnhold - støtter {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "ren tekstinnhold" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "ren tekst som reserve (genereres automatisk hvis tom)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "tilgjengelige variabler" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "dokumentasjon av tilgjengelige malvariabler" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "e-postmal" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "e-postmaler" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "internt navn for kampanjen" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "mal" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "E-postmal som skal brukes til denne kampanjen" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "planlagt til" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "når kampanjen skal sendes (la feltet stå tomt for manuell sending)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "sent at" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "når kampanjen faktisk ble sendt" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "totalt antall mottakere" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "sendt antall" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "mislykket telling" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "åpnet telling" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "antall klikk" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "e-postkampanje" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "e-postkampanjer" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampanje" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Bruker" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "åpnet kl." + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "klikk på" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "sporings-ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unik ID for sporing av åpninger og klikk" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "feilmelding" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "feildetaljer hvis sending mislyktes" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "kampanjemottaker" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "kampanjemottakere" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Alle rettigheter forbeholdt" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Du har mottatt denne e-posten fordi du har abonnert på vårt nyhetsbrev." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Avmeld" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Avmeldingstoken er påkrevd." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Ugyldig format for avmeldingstoken." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Bruker ikke funnet." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Du er allerede meldt av." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Du har nå meldt deg av våre e-poster." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "Brukerens b64-kodede uuid som henviste den nye brukeren til oss." @@ -240,14 +575,14 @@ msgstr "Tokenet er ugyldig!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Produktene som denne brukeren har sett på sist (maks. 48), i omvendt " "kronologisk rekkefølge." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupper" @@ -255,7 +590,8 @@ msgstr "Grupper" msgid "wishlist" msgstr "Ønskeliste" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -266,8 +602,8 @@ msgstr "Attributter kan brukes til å lagre egendefinerte data" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "Språket er en av {settings.LANGUAGES} med standard {settings.LANGUAGE_CODE}." @@ -365,63 +701,67 @@ msgstr "Status for brukerens abonnement på nyhetsbrev" msgid "activation token" msgstr "Aktiveringstoken" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "avmeldingstoken" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token for sikker avmelding fra kampanjer med ett klikk" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Egenskaper" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Bruker" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Brukere" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "For anonyme tråder" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Chat-tråd" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Chat-tråder" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "oppgi bruker eller e-post for anonym tråd." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "mottakeren må være en personalbruker." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chat-melding" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chat-meldinger" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Gruppe" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Enestående symbol" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Outstanding tokens" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Svartelistet token" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Svartelistede tokens" @@ -485,8 +825,7 @@ msgstr "Hallo %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Vi har mottatt en forespørsel om å tilbakestille passordet ditt. Vennligst " @@ -570,26 +909,26 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Representerer en visning for å hente et par tilgangs- og oppdateringstokener " -"og brukerdata. Denne visningen administrerer prosessen med å håndtere " -"tokenbasert autentisering, der klienter kan hente et par JWT-tokens (tilgang " -"og oppdatering) ved hjelp av oppgitt legitimasjon. Den er bygget på toppen " -"av en grunnleggende token-visning og sørger for riktig hastighetsbegrensning " -"for å beskytte mot brute force-angrep." +"Representerer en visning for å hente et par tilgangs- og oppdateringstokener" +" og brukerdata. Denne visningen administrerer prosessen med å håndtere " +"tokenbasert autentisering, der klienter kan hente et par JWT-tokens (tilgang" +" og oppdatering) ved hjelp av oppgitt legitimasjon. Den er bygget på toppen " +"av en grunnleggende token-visning og sørger for riktig hastighetsbegrensning" +" for å beskytte mot brute force-angrep." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Håndterer oppdatering av tokens for autentiseringsformål. Denne klassen " "brukes til å tilby funksjonalitet for tokenoppdatering som en del av et " @@ -603,8 +942,8 @@ msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -"Representerer en visning for verifisering av JSON Web Tokens (JWT) ved hjelp " -"av spesifikk serialiserings- og valideringslogikk." +"Representerer en visning for verifisering av JSON Web Tokens (JWT) ved hjelp" +" av spesifikk serialiserings- og valideringslogikk." #: engine/vibes_auth/views.py:103 msgid "the token is invalid" @@ -613,17 +952,10 @@ msgstr "Tokenet er ugyldig" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementering av brukervisningssett.\n" -"Tilbyr et sett med handlinger som håndterer brukerrelaterte data som " -"oppretting, henting, oppdateringer, sletting og egendefinerte handlinger, " -"inkludert tilbakestilling av passord, opplasting av avatar, kontoaktivering " -"og sammenslåing av nylig viste elementer. Denne klassen utvider mixins og " -"GenericViewSet for robust API-håndtering." +"Tilbyr et sett med handlinger som håndterer brukerrelaterte data som oppretting, henting, oppdateringer, sletting og egendefinerte handlinger, inkludert tilbakestilling av passord, opplasting av avatar, kontoaktivering og sammenslåing av nylig viste elementer. Denne klassen utvider mixins og GenericViewSet for robust API-håndtering." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo index 92878a3a..1a1ffd68 100644 Binary files a/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po b/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po index 9737db00..881c4059 100644 --- a/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Równowaga" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Zamówienie" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Zamówienia" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Informacje osobiste" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Uprawnienia" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Ważne daty" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Dodatkowe informacje" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Nie możesz skakać na główkę!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Zamykanie wybranych wątków" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Otwieranie wybranych wątków" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Podgląd" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadane" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "podgląd" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "podgląd obrazu" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Treść" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentacja" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Planowanie" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statystyki" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "państwowy" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Przygotuj odbiorców (zarejestrowanych użytkowników)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampania „{}” nie ma statusu wersji roboczej." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Przygotowanie odbiorców do kampanii „{}”." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Wyślij kampanię teraz" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Nie można wysłać kampanii „{}” (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Kampania „{}” nie ma odbiorców. Najpierw przygotuj odbiorców." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Rozpoczęto wysyłanie kampanii „{}”." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Anuluj kampanię" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} kampania(-e) anulowana(-e)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Uwierzytelnianie" +msgid "Accounting" +msgstr "Księgowość" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -116,7 +189,8 @@ msgstr "Uzyskanie pary tokenów" #: engine/vibes_auth/docs/drf/views.py:19 msgid "obtain a token pair (refresh and access) for authentication." -msgstr "Uzyskanie pary tokenów (odświeżenie i dostęp) w celu uwierzytelnienia." +msgstr "" +"Uzyskanie pary tokenów (odświeżenie i dostęp) w celu uwierzytelnienia." #: engine/vibes_auth/docs/drf/views.py:41 msgid "refresh a token pair" @@ -191,6 +265,270 @@ msgstr "Link aktywacyjny jest nieprawidłowy lub konto zostało już aktywowane. msgid "merge client-stored recently viewed products" msgstr "Scalanie ostatnio oglądanych produktów przechowywanych przez klienta" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Projekt" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Zaplanowane" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Wysyłanie" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Późno" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Anulowane" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "W toku" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Niepowodzenie" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Otwarte" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Kliknięto" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nazwa" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "opisowa nazwa obrazu" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "obraz" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "plik obrazu do wykorzystania w szablonach wiadomości e-mail" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "inny tekst" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "tekst alternatywny dla dostępności" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "obraz e-maila" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "obrazy e-mailowe" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "wewnętrzna nazwa szablonu" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "słuch" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unikalny identyfikator szablonu" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "temat" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "Temat wiadomości e-mail – obsługuje {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Treść HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"treść wiadomości e-mail – obsługuje {{ user.first_name }}, {{ user.email }}," +" {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "treść tekstowa" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "" +"rezerwa tekstu zwykłego (generowana automatycznie, jeśli pole jest puste)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "dostępne zmienne" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "dokumentacja dostępnych zmiennych szablonu" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "szablon wiadomości e-mail" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "szablony wiadomości e-mail" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "wewnętrzna nazwa kampanii" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "szablon" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "szablon wiadomości e-mail do wykorzystania w tej kampanii" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "zaplanowane na" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "kiedy wysłać kampanię (pozostaw puste pole, aby wysłać ręcznie)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "późno, że" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "kiedy kampania została faktycznie wysłana" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "łączna liczba odbiorców" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "liczba wysłanych" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "nieudana próba" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "liczba otwartych" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "liczba kliknięć" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "kampania e-mailowa" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "kampanie e-mailowe" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampania" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Użytkownik" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "otwarty w" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "kliknięto w" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "identyfikator śledzenia" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unikalny identyfikator do śledzenia otwarć i kliknięć" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "komunikat o błędzie" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "szczegóły błędu, jeśli wysyłanie nie powiodło się" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "odbiorca kampanii" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "odbiorcy kampanii" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Wszelkie prawa zastrzeżone" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Otrzymałeś tę wiadomość e-mail, ponieważ zapisałeś się do naszego " +"newslettera." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Wypisz się" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Wymagany jest token rezygnacji z subskrypcji." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Nieprawidłowy format tokenu rezygnacji z subskrypcji." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Nie znaleziono użytkownika." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Już się wypisałeś." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Zostałeś pomyślnie wypisany z naszej listy mailingowej." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -242,14 +580,14 @@ msgstr "Token jest nieprawidłowy!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Produkty ostatnio przeglądane przez tego użytkownika (maks. 48), w " "kolejności odwrotnej do chronologicznej." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupy" @@ -257,7 +595,8 @@ msgstr "Grupy" msgid "wishlist" msgstr "Lista życzeń" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Awatar" @@ -268,11 +607,11 @@ msgstr "Atrybuty mogą być używane do przechowywania niestandardowych danych" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Język jest jednym z {settings.LANGUAGES} z domyślnym {settings." -"LANGUAGE_CODE}." +"Język jest jednym z {settings.LANGUAGES} z domyślnym " +"{settings.LANGUAGE_CODE}." #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -369,63 +708,68 @@ msgstr "Status subskrypcji newslettera użytkownika" msgid "activation token" msgstr "Token aktywacyjny" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "token rezygnacji z subskrypcji" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"token umożliwiający bezpieczne wypisanie się z kampanii jednym kliknięciem" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Atrybuty" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Użytkownik" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Użytkownicy" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Dla wątków anonimowych" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Wątek czatu" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Wątki czatu" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "Podaj użytkownika lub adres e-mail dla anonimowego wątku." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "cesjonariusz musi być użytkownikiem personelu." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Wiadomość na czacie" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Wiadomości czatu" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Grupa" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Wyjątkowy token" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Zaległe tokeny" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token na czarnej liście" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Tokeny znajdujące się na czarnej liście" @@ -488,8 +832,7 @@ msgstr "Witaj %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Otrzymaliśmy prośbę o zresetowanie hasła. Zresetuj hasło, klikając poniższy " @@ -568,19 +911,19 @@ msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -"Nieprawidłowy format numeru telefonu. Numer musi być wprowadzony w formacie: " -"\"+999999999\". Dozwolone do 15 cyfr." +"Nieprawidłowy format numeru telefonu. Numer musi być wprowadzony w formacie:" +" \"+999999999\". Dozwolone do 15 cyfr." #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"Reprezentuje widok pobierania pary tokenów dostępu i odświeżania oraz danych " -"użytkownika. Ten widok zarządza procesem obsługi uwierzytelniania opartego " +"Reprezentuje widok pobierania pary tokenów dostępu i odświeżania oraz danych" +" użytkownika. Ten widok zarządza procesem obsługi uwierzytelniania opartego " "na tokenach, w którym klienci mogą uzyskać parę tokenów JWT (dostęp i " "odświeżanie) przy użyciu dostarczonych poświadczeń. Jest on zbudowany w " "oparciu o podstawowy widok tokenu i zapewnia odpowiednie ograniczenie " @@ -588,11 +931,11 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Obsługuje odświeżanie tokenów do celów uwierzytelniania. Klasa ta służy do " "zapewnienia funkcjonalności dla operacji odświeżania tokenów w ramach " @@ -616,17 +959,10 @@ msgstr "Token jest nieprawidłowy" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementacja zestawu widoków użytkownika.\n" -"Zapewnia zestaw akcji, które zarządzają danymi związanymi z użytkownikiem, " -"takimi jak tworzenie, pobieranie, aktualizacje, usuwanie i niestandardowe " -"akcje, w tym resetowanie hasła, przesyłanie awatara, aktywacja konta i " -"scalanie ostatnio przeglądanych elementów. Ta klasa rozszerza mixiny i " -"GenericViewSet dla solidnej obsługi API." +"Zapewnia zestaw akcji, które zarządzają danymi związanymi z użytkownikiem, takimi jak tworzenie, pobieranie, aktualizacje, usuwanie i niestandardowe akcje, w tym resetowanie hasła, przesyłanie awatara, aktywacja konta i scalanie ostatnio przeglądanych elementów. Ta klasa rozszerza mixiny i GenericViewSet dla solidnej obsługi API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo index 6a049f69..7c7c2835 100644 Binary files a/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po index 36c2ac2c..598b4a87 100644 --- a/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,124 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Equilíbrio" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Pedido" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Pedidos" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Informações pessoais" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permissões" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Datas importantes" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Informações adicionais" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Você não pode pular sobre sua cabeça!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Fechar as linhas selecionadas" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Abrir linhas selecionadas" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Pré-visualização" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadados" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "visualização" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "visualização da imagem" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Conteúdo" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentação" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Agendamento" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Estatísticas" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "estatista" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Prepare os destinatários (usuários inscritos)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "A campanha '{}' não está em estado de rascunho." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Preparando destinatários para a campanha '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Enviar campanha agora" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "A campanha '{}' não pode ser enviada (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" +"A campanha '{}' não tem destinatários. Prepare primeiro os destinatários." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Iniciada a campanha \"{}\"." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Cancelar campanha" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Campanha(s) cancelada(s)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autenticação" +msgid "Accounting" +msgstr "Contabilidade" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -190,6 +264,267 @@ msgstr "O link de ativação é inválido ou a conta já está ativada" msgid "merge client-stored recently viewed products" msgstr "Mesclar produtos recentemente visualizados armazenados pelo cliente" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Rascunho" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Programado" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Envio" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Tarde" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Cancelado" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Pendente" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Falha" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Inaugurado" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Clicado" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nome" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "nome descritivo para a imagem" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "imagem" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "arquivo de imagem a ser usado em modelos de e-mail" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "outro texto" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "texto alternativo para acessibilidade" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "imagem de e-mail" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "imagens de e-mail" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "nome interno do modelo" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "servos" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "identificador único para o modelo" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "assunto" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "assunto do e-mail - suporta {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Conteúdo HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"conteúdo do corpo do e-mail - suporta {{ user.first_name }}, {{ user.email " +"}}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "conteúdo em texto simples" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "texto simples alternativo (gerado automaticamente se estiver vazio)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "variáveis disponíveis" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentação das variáveis de modelo disponíveis" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "modelo de e-mail" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "modelos de e-mail" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "nome interno da campanha" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "modelo" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "modelo de e-mail a ser usado para esta campanha" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "programado para" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "quando enviar a campanha (deixe em branco para envio manual)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "tarde que" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "quando a campanha foi realmente enviada" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "total de destinatários" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "contagem enviada" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "contagem falhada" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "contagem aberta" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "contagem de cliques" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "campanha por e-mail" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "campanhas por e-mail" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campanha" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Usuário" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "inaugurado em" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "clicou em" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "ID de rastreamento" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "ID exclusivo para rastrear aberturas e cliques" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "mensagem de erro" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "detalhes do erro se o envio falhou" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "destinatário da campanha" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "destinatários da campanha" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Todos os direitos reservados" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "Você recebeu este e-mail porque se inscreveu em nossa newsletter." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Cancelar inscrição" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "É necessário um token de cancelamento de inscrição." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Formato inválido do token de cancelamento de inscrição." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Usuário não encontrado." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Você já está cancelado." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Você foi excluído com sucesso de nossa lista de e-mails." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "O uuid codificado em b64 do usuário que nos indicou o novo usuário." @@ -239,14 +574,14 @@ msgstr "O token é inválido!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" -"Os produtos que esse usuário visualizou mais recentemente (máximo de 48), em " -"ordem cronológica inversa." +"Os produtos que esse usuário visualizou mais recentemente (máximo de 48), em" +" ordem cronológica inversa." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupos" @@ -254,7 +589,8 @@ msgstr "Grupos" msgid "wishlist" msgstr "Lista de desejos" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -265,8 +601,8 @@ msgstr "Os atributos podem ser usados para armazenar dados personalizados" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "O idioma é um dos {settings.LANGUAGES} com o padrão {settings.LANGUAGE_CODE}" @@ -365,63 +701,68 @@ msgstr "Status da assinatura do boletim informativo do usuário" msgid "activation token" msgstr "Token de ativação" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "token de cancelamento de inscrição" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"token para cancelamento seguro de inscrição em campanhas com um clique" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Atributos" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Usuário" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Usuários" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Para tópicos anônimos" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Linha de bate-papo" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Tópicos de bate-papo" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "forneça o usuário ou e-mail para o tópico anônimo." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "O responsável deve ser um usuário da equipe." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Mensagem de bate-papo" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Mensagens de bate-papo" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Grupo" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Token excepcional" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Tokens pendentes" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token na lista negra" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Tokens na lista negra" @@ -485,8 +826,7 @@ msgstr "Olá %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Recebemos uma solicitação para redefinir sua senha. Para redefinir sua " @@ -570,32 +910,32 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" "Representa uma visualização para obter um par de tokens de acesso e " "atualização e os dados do usuário. Essa visualização gerencia o processo de " -"manipulação da autenticação baseada em token, em que os clientes podem obter " -"um par de tokens JWT (acesso e atualização) usando as credenciais " +"manipulação da autenticação baseada em token, em que os clientes podem obter" +" um par de tokens JWT (acesso e atualização) usando as credenciais " "fornecidas. Ela é construída sobre uma visualização de token de base e " "garante a limitação de taxa adequada para proteger contra ataques de força " "bruta." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Trata da atualização de tokens para fins de autenticação. Essa classe é " "usada para fornecer funcionalidade para operações de atualização de tokens " -"como parte de um sistema de autenticação. Ela garante que os clientes possam " -"solicitar um token atualizado dentro dos limites de taxa definidos. A " +"como parte de um sistema de autenticação. Ela garante que os clientes possam" +" solicitar um token atualizado dentro dos limites de taxa definidos. A " "exibição depende do serializador associado para validar as entradas de " "atualização de token e produzir saídas apropriadas." @@ -604,8 +944,8 @@ msgid "" "Represents a view for verifying JSON Web Tokens (JWT) using specific " "serialization and validation logic. " msgstr "" -"Representa uma visualização para verificação de JSON Web Tokens (JWT) usando " -"lógica específica de serialização e validação." +"Representa uma visualização para verificação de JSON Web Tokens (JWT) usando" +" lógica específica de serialização e validação." #: engine/vibes_auth/views.py:103 msgid "the token is invalid" @@ -614,17 +954,10 @@ msgstr "O token é inválido" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementação do conjunto de visualizações do usuário.\n" -"Fornece um conjunto de ações que gerenciam dados relacionados ao usuário, " -"como criação, recuperação, atualizações, exclusão e ações personalizadas, " -"incluindo redefinição de senha, upload de avatar, ativação de conta e " -"mesclagem de itens visualizados recentemente. Essa classe estende os mixins " -"e o GenericViewSet para um tratamento robusto da API." +"Fornece um conjunto de ações que gerenciam dados relacionados ao usuário, como criação, recuperação, atualizações, exclusão e ações personalizadas, incluindo redefinição de senha, upload de avatar, ativação de conta e mesclagem de itens visualizados recentemente. Essa classe estende os mixins e o GenericViewSet para um tratamento robusto da API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo index 4b7606c2..de49024d 100644 Binary files a/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po index 4e8a90cc..9a191355 100644 --- a/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/ro_RO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Echilibru" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Comandă" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Ordine" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Informații personale" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Permisiuni" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Date importante" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Informații suplimentare" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Nu poți sări peste capul tău!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Închideți firele selectate" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Deschideți firele selectate" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Previzualizare" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadate" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "previzualizare" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "previzualizare imagine" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Conținut" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Documentație" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Programare" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistici" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "stat" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Pregătiți destinatarii (utilizatorii abonați)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Campania „{}” nu se află în stadiul de schiță." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Pregătirea destinatarilor pentru campania „{}”." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Trimiteți campania acum" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Campania „{}” nu poate fi trimisă (stare: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Campania „{}” nu are destinatari. Pregătiți mai întâi destinatarii." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "A început trimiterea campaniei „{}”." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Anulează campania" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "Campanie (campanii) anulată (anulate)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autentificare" +msgid "Accounting" +msgstr "Contabilitate" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -109,7 +182,8 @@ msgstr "Canalul personalului pe fir" #: engine/vibes_auth/docs/drf/messaging.py:44 msgid "Reply, close, and ping within a specific thread." msgstr "" -"Răspundeți, închideți și trimiteți mesaje ping în cadrul unui anumit subiect." +"Răspundeți, închideți și trimiteți mesaje ping în cadrul unui anumit " +"subiect." #: engine/vibes_auth/docs/drf/views.py:18 msgid "obtain a token pair" @@ -193,6 +267,270 @@ msgstr "Linkul de activare este invalid sau contul este deja activat" msgid "merge client-stored recently viewed products" msgstr "Fuzionați produsele recent vizualizate stocate de client" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Proiect" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Programat" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Trimitere" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Târziu" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Anulat" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "În așteptare" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Eșuat" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Deschis" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "A dat clic" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "nume" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "denumire descriptivă pentru imagine" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "imagine" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "fișier imagine pentru utilizare în șabloanele de e-mail" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "alt text" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "text alternativ pentru accesibilitate" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "imagine e-mail" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "imagini e-mail" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "numele intern al șablonului" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "servitori" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "identificator unic pentru șablon" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "subiect" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "subiectul e-mailului - acceptă {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Conținut HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"conținutul corpului e-mailului - acceptă {{ user.first_name }}, {{ " +"user.email }}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "conținut text simplu" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "text simplu de rezervă (generat automat dacă este gol)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "variabile disponibile" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "documentația variabilelor disponibile în șabloane" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "șablon de e-mail" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "șabloane de e-mail" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "denumirea internă a campaniei" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "șablon" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "șablon de e-mail de utilizat pentru această campanie" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "statut" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "programat la" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "" +"când să trimiteți campania (lăsați necompletat pentru trimitere manuală)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "târziu" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "când campania a fost efectiv trimisă" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "numărul total de destinatari" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "număr trimis" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "numărare eșuată" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "număr deschis" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "număr de clicuri" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "campanie prin e-mail" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "campanii prin e-mail" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "campanie" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Utilizator" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "deschis la" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "a făcut clic pe" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "ID de urmărire" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "ID unic pentru urmărirea deschiderilor și clicurilor" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "mesaj de eroare" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "detalii despre eroare dacă trimiterea a eșuat" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "destinatarul campaniei" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "destinatarii campaniei" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Toate drepturile rezervate" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Ați primit acest e-mail deoarece v-ați abonat la buletinul nostru " +"informativ." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Dezabonare" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Este necesar un token de dezabonare." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Format token de dezabonare invalid." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Utilizator neidentificat." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "V-ați dezabonat deja." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "V-ați dezabonat cu succes de la e-mailurile noastre." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -243,14 +581,14 @@ msgstr "Token-ul nu este valabil!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Produsele pe care acest utilizator le-a vizualizat cel mai recent (max 48), " "în ordine cronologică inversă." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupuri" @@ -258,7 +596,8 @@ msgstr "Grupuri" msgid "wishlist" msgstr "Lista dorințelor" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -269,11 +608,11 @@ msgstr "Atributele pot fi utilizate pentru a stoca date personalizate" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Limba este una dintre {settings.LANGUAGES} cu implicit {settings." -"LANGUAGE_CODE}" +"Limba este una dintre {settings.LANGUAGES} cu implicit " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -307,8 +646,8 @@ msgid "" msgstr "" "Reprezintă o entitate utilizator cu câmpuri și metode personalizate pentru " "funcționalitate extinsă. Această clasă extinde modelul AbstractUser și " -"integrează caracteristici suplimentare, cum ar fi autentificarea prin e-mail " -"personalizat, metode de validare, starea abonamentului, verificarea și " +"integrează caracteristici suplimentare, cum ar fi autentificarea prin e-mail" +" personalizat, metode de validare, starea abonamentului, verificarea și " "stocarea atributelor. De asemenea, oferă utilitare pentru gestionarea " "elementelor vizualizate recent și activare pe bază de token pentru " "verificarea conturilor. Modelul User este conceput pentru a gestiona cazuri " @@ -370,63 +709,67 @@ msgstr "Starea abonării utilizatorului la buletinul informativ" msgid "activation token" msgstr "Jeton de activare" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "token de dezabonare" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token pentru dezabonarea sigură dintr-un singur clic din campanii" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Atribute" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Utilizator" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Utilizatori" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Pentru subiecte anonime" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Fir de chat" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Fire de chat" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "furnizați utilizatorul sau adresa de e-mail pentru firul anonim." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "cesionarul trebuie să fie un utilizator personal." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Mesaj de chat" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Mesaje de chat" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Grup" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Simbol excepțional" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Jetoane restante" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token pe lista neagră" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Jetoane pe lista neagră" @@ -491,8 +834,7 @@ msgstr "Bună ziua %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Am primit o cerere de resetare a parolei dumneavoastră. Vă rugăm să vă " @@ -508,8 +850,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Dacă butonul de mai sus nu funcționează, vă rugăm să copiați și să lipiți " -"următoarea adresă URL\n" +"Dacă butonul de mai sus nu funcționează, vă rugăm să copiați și să lipiți următoarea adresă URL\n" " în browserul dvs. web:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -577,8 +918,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -593,11 +934,11 @@ msgstr "" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Gestionează actualizarea jetoanelor în scopul autentificării. Această clasă " "este utilizată pentru a oferi funcționalitate pentru operațiunile de " @@ -622,17 +963,10 @@ msgstr "Jetonul nu este valabil" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementarea setului de vizualizări ale utilizatorului.\n" -"Oferă un set de acțiuni care gestionează datele legate de utilizator, cum ar " -"fi crearea, recuperarea, actualizările, ștergerea și acțiunile " -"personalizate, inclusiv resetarea parolei, încărcarea avatarului, activarea " -"contului și îmbinarea elementelor vizualizate recent. Această clasă extinde " -"mixinele și GenericViewSet pentru o gestionare robustă a API." +"Oferă un set de acțiuni care gestionează datele legate de utilizator, cum ar fi crearea, recuperarea, actualizările, ștergerea și acțiunile personalizate, inclusiv resetarea parolei, încărcarea avatarului, activarea contului și îmbinarea elementelor vizualizate recent. Această clasă extinde mixinele și GenericViewSet pentru o gestionare robustă a API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo index 3e5c6f79..3cd44173 100644 Binary files a/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po b/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po index e1a2da5c..308e6f8b 100644 --- a/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/ru_RU/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Баланс" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Заказ" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Заказы" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Личная информация" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Разрешения" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Важные даты" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Дополнительная информация" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Нельзя прыгать выше головы!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Закрыть выбранные нити" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Открыть выбранные нити" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Предварительный просмотр" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Метаданные" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "предварительный просмотр" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "предварительный просмотр изображения" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Содержание" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Документация" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Планирование" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Статистика" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "государственный" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Подготовьте получателей (подписавшихся пользователей)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Кампания «{}» не находится в статусе черновика." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Подготовка получателей к кампании «{}»." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Отправить кампанию сейчас" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Кампания «{}» не может быть отправлена (статус: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Кампания «{}» не имеет получателей. Сначала подготовьте получателей." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Начата рассылка кампании «{}»." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Отменить кампанию" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} кампания(и) отменена(ы)." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Аутентификация" +msgid "Accounting" +msgstr "Учётные записи" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -189,7 +262,271 @@ msgstr "Ссылка на активацию недействительна ил #: engine/vibes_auth/docs/drf/viewsets.py:111 msgid "merge client-stored recently viewed products" -msgstr "Объедините недавно просмотренные продукты, хранящиеся в памяти клиента" +msgstr "" +"Объедините недавно просмотренные продукты, хранящиеся в памяти клиента" + +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Проект" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Запланированный" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Отправка" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Поздно" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Отменено" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "В ожидании" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Неудача" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Открыто" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Нажато" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "название" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "описательное название изображения" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "изображение" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "файл изображения для использования в шаблонах электронных писем" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "другой текст" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "альтернативный текст для доступности" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "изображение электронной почты" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "изображения электронной почты" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "внутреннее имя шаблона" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "слуги" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "уникальный идентификатор шаблона" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "предмет" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "тема письма — поддерживает {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML-контент" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"содержимое тела электронного письма — поддерживает {{ user.first_name }}, {{" +" user.email }}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "обычный текстовый контент" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "" +"резервный вариант в виде простого текста (создается автоматически, если поле" +" пустое)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "доступные переменные" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "документация доступных переменных шаблона" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "шаблон электронного письма" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "шаблоны электронных писем" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "внутреннее название кампании" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "шаблон" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "шаблон электронного письма для использования в этой кампании" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "статус" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "запланировано на" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "когда отправить кампанию (оставьте поле пустым для отправки вручную)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "поздно, что" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "когда кампания была фактически отправлена" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "общее количество получателей" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "количество отправленных" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "неудачный подсчет" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "открытый счет" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "количество кликов" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "электронная рассылка" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "электронные рассылки" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "кампания" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Пользователь" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "открылся в" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "нажали на" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "идентификатор отслеживания" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "уникальный идентификатор для отслеживания открытий и кликов" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "сообщение об ошибке" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "подробности ошибки, если отправка не удалась" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "получатель кампании" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "получатели кампании" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Все права защищены" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "Вы получили это письмо, потому что подписались на нашу рассылку." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Отписаться" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Требуется токен отписки." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Неверный формат токена для отписки." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Пользователь не найден." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Вы уже отписаны." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Вы успешно отказались от подписки на наши электронные письма." #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." @@ -242,14 +579,14 @@ msgstr "Токен недействителен!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" -"Продукты, которые этот пользователь просматривал в последнее время (не более " -"48), в обратном хронологическом порядке." +"Продукты, которые этот пользователь просматривал в последнее время (не более" +" 48), в обратном хронологическом порядке." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Группы" @@ -257,7 +594,8 @@ msgstr "Группы" msgid "wishlist" msgstr "Список желаний" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Аватар" @@ -268,8 +606,8 @@ msgstr "Атрибуты могут использоваться для хран #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "Язык - один из {settings.LANGUAGES}, по умолчанию {settings.LANGUAGE_CODE}." @@ -303,14 +641,14 @@ msgid "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." msgstr "" -"Представляет сущность User с настраиваемыми полями и методами для расширения " -"функциональности. Этот класс расширяет модель AbstractUser и включает в себя " -"дополнительные возможности, такие как пользовательский вход по электронной " -"почте, методы проверки, статус подписки, верификация и хранение атрибутов. " -"Он также предоставляет утилиты для управления недавно просмотренными " -"элементами и активации на основе токенов для проверки учетных записей. " -"Модель User предназначена для обработки конкретных случаев использования для " -"расширенного управления пользователями." +"Представляет сущность User с настраиваемыми полями и методами для расширения" +" функциональности. Этот класс расширяет модель AbstractUser и включает в " +"себя дополнительные возможности, такие как пользовательский вход по " +"электронной почте, методы проверки, статус подписки, верификация и хранение " +"атрибутов. Он также предоставляет утилиты для управления недавно " +"просмотренными элементами и активации на основе токенов для проверки учетных" +" записей. Модель User предназначена для обработки конкретных случаев " +"использования для расширенного управления пользователями." #: engine/vibes_auth/models.py:53 msgid "email" @@ -368,63 +706,68 @@ msgstr "Статус подписки пользователя на рассыл msgid "activation token" msgstr "Активационный токен" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "токен отказа от подписки" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"токен для безопасного отказа от подписки на рассылки одним щелчком мыши" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Атрибуты" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Пользователь" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Пользователи" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Для анонимных потоков" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Нить чата" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Нити чата" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "укажите пользователя или e-mail для анонимной темы." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "Назначенный должен быть штатным пользователем." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Сообщение в чате" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Сообщения в чате" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Группа" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Выдающийся жетон" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Выпущенные токены" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Токен в черном списке" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Чёрный список токенов" @@ -487,8 +830,7 @@ msgstr "Привет %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Мы получили запрос на сброс вашего пароля. Пожалуйста, сбросьте пароль, " @@ -504,8 +846,7 @@ msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" msgstr "" -"Если кнопка выше не работает, пожалуйста, скопируйте и вставьте следующий " -"URL-адрес\n" +"Если кнопка выше не работает, пожалуйста, скопируйте и вставьте следующий URL-адрес\n" " в свой веб-браузер:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 @@ -572,8 +913,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -581,23 +922,23 @@ msgstr "" "Представляет собой представление для получения пары токенов доступа и " "обновления и данных пользователя. Это представление управляет процессом " "аутентификации на основе токенов, когда клиенты могут получить пару JWT-" -"токенов (доступ и обновление), используя предоставленные учетные данные. Оно " -"построено поверх базового представления токенов и обеспечивает надлежащее " +"токенов (доступ и обновление), используя предоставленные учетные данные. Оно" +" построено поверх базового представления токенов и обеспечивает надлежащее " "ограничение скорости для защиты от атак грубой силы." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Обрабатывает обновление токенов для целей аутентификации. Этот класс " "используется для обеспечения функциональности операций обновления токенов в " "рамках системы аутентификации. Он гарантирует, что клиенты могут запросить " -"обновленный токен в рамках установленных ограничений скорости. Представление " -"полагается на ассоциированный сериализатор для проверки входных данных " +"обновленный токен в рамках установленных ограничений скорости. Представление" +" полагается на ассоциированный сериализатор для проверки входных данных " "обновления маркера и создания соответствующих выходных данных." #: engine/vibes_auth/views.py:83 @@ -615,17 +956,10 @@ msgstr "Токен недействителен" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Реализация набора пользовательских представлений.\n" -"Предоставляет набор действий, которые управляют пользовательскими данными, " -"такими как создание, получение, обновление, удаление, а также " -"пользовательскими действиями, включая сброс пароля, загрузку аватара, " -"активацию учетной записи и объединение недавно просмотренных элементов. Этот " -"класс расширяет миксины и GenericViewSet для надежной работы с API." +"Предоставляет набор действий, которые управляют пользовательскими данными, такими как создание, получение, обновление, удаление, а также пользовательскими действиями, включая сброс пароля, загрузку аватара, активацию учетной записи и объединение недавно просмотренных элементов. Этот класс расширяет миксины и GenericViewSet для надежной работы с API." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo index 8bcfa0b0..f9634071 100644 Binary files a/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po b/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po index 814432f5..a309165b 100644 --- a/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/sv_SE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Balans" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Beställning" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Beställningar" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Personlig information" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Behörigheter" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Viktiga datum" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Ytterligare information" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Du kan inte hoppa över huvudet!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Stäng valda trådar" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Öppna valda trådar" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Förhandsgranska" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Metadata" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "förhandsgranskning" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "bildförhandsvisning" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Innehåll" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Dokumentation" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Schemaläggning" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Statistik" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "tillstånd" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Förbered mottagare (prenumererande användare)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampanjen '{}' är inte i utkaststatus." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Förbereder mottagare för kampanj '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Skicka kampanjen nu" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Kampanjen '{}' kan inte skickas (status: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Kampanjen '{}' har inga mottagare. Förbered mottagarna först." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Började skicka kampanjen '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Avbryt kampanj" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} kampanj(er) avbruten." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Autentisering" +msgid "Accounting" +msgstr "Redovisning" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -99,8 +172,8 @@ msgid "" "Staff-only actions: list_open, assign, reply, close, ping. Unified event " "payloads are emitted." msgstr "" -"Åtgärder endast för personal: list_open, assign, reply, close, ping. Unified " -"event payloads sänds ut." +"Åtgärder endast för personal: list_open, assign, reply, close, ping. Unified" +" event payloads sänds ut." #: engine/vibes_auth/docs/drf/messaging.py:43 msgid "Per-thread staff channel" @@ -191,6 +264,269 @@ msgstr "Aktiveringslänken är ogiltig eller kontot är redan aktiverat" msgid "merge client-stored recently viewed products" msgstr "Sammanfoga klientlagrade nyligen visade produkter" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Utkast" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Schemalagd" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Skicka" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Sen" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Inställt" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Väntande" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Misslyckades" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Öppnad" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Klickade" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "namn" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "beskrivande namn för bilden" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "bild" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "bildfil att använda i e-postmallar" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "annan text" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "alternativ text för tillgänglighet" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "e-postbild" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "e-postbilder" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "internt namn för mallen" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "tjänare" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "unik identifierare för mallen" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "ämne" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "e-postens ämnesrad – stöder {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML-innehåll" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"e-postmeddelandets innehåll – stöder {{ user.first_name }}, {{ user.email " +"}}, {{ project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "vanlig text" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "vanlig text som reserv (genereras automatiskt om tom)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "tillgängliga variabler" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "dokumentation av tillgängliga mallvariabler" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "e-postmall" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "e-postmallar" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "internt namn för kampanjen" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "mall" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "E-postmall att använda för denna kampanj" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "status" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "planerad till" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "när kampanjen ska skickas (lämna tomt för manuell sändning)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "senare" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "när kampanjen faktiskt skickades ut" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "totalt antal mottagare" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "skickat antal" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "misslyckad räkning" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "öppnad räkning" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "klickräkning" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "e-postkampanj" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "e-postkampanjer" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampanj" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Användare" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "öppnade vid" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "klickade på" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "spårnings-ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "unikt ID för spårning av öppningar och klick" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "felmeddelande" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "felinformation om sändningen misslyckades" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "kampanjmottagare" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "kampanjens mottagare" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Alla rättigheter förbehållna" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "" +"Du har fått detta e-postmeddelande eftersom du prenumererar på vårt " +"nyhetsbrev." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Avregistrera" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Avregistreringstoken krävs." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Ogiltigt format för avregistreringstoken." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Användaren hittades inte." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Du är redan avregistrerad." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Du har nu avslutat din prenumeration på våra e-postmeddelanden." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" @@ -241,14 +577,14 @@ msgstr "Token är ogiltig!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "De produkter som den här användaren har tittat på senast (max 48), i omvänd " "kronologisk ordning." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Grupper" @@ -256,7 +592,8 @@ msgstr "Grupper" msgid "wishlist" msgstr "Önskelista" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -267,8 +604,8 @@ msgstr "Attribut kan användas för att lagra anpassade data" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" "Språk är en av {settings.LANGUAGES} med standard {settings.LANGUAGE_CODE}." @@ -366,63 +703,67 @@ msgstr "Användarens status för prenumeration på nyhetsbrev" msgid "activation token" msgstr "Aktiveringstoken" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "avregistreringstoken" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "token för säker avregistrering från kampanjer med ett klick" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Attribut" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Användare" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Användare" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "För anonyma trådar" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Chattråd" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Chatt-trådar" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "ange användare eller e-post för anonym tråd." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "mottagaren måste vara en personalanvändare." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Chattmeddelande" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Chattmeddelanden" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Grupp" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Utestående symbol" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Utestående polletter" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Svartlistad token" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Svartlistade tokens" @@ -485,8 +826,7 @@ msgstr "Hej %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Vi har fått en begäran om att återställa ditt lösenord. Vänligen återställ " @@ -534,8 +874,8 @@ msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -"Tack för att du registrerat dig för %(project_name)s. Vänligen aktivera ditt " -"konto genom att klicka på knappen nedan:" +"Tack för att du registrerat dig för %(project_name)s. Vänligen aktivera ditt" +" konto genom att klicka på knappen nedan:" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -570,32 +910,32 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" "Representerar en vy för att hämta ett par access- och refresh-tokens och " "användardata. Den här vyn hanterar processen för hantering av tokenbaserad " -"autentisering där klienter kan hämta ett par JWT-tokens (access och refresh) " -"med hjälp av angivna referenser. Den är byggd ovanpå en bas-tokenvy och " +"autentisering där klienter kan hämta ett par JWT-tokens (access och refresh)" +" med hjälp av angivna referenser. Den är byggd ovanpå en bas-tokenvy och " "säkerställer korrekt hastighetsbegränsning för att skydda mot brute force-" "attacker." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Hanterar uppdatering av tokens för autentiseringsändamål. Denna klass " "används för att tillhandahålla funktionalitet för uppdatering av token som " -"en del av ett autentiseringssystem. Den säkerställer att klienter kan begära " -"en uppfräschad token inom definierade hastighetsgränser. Vyn förlitar sig på " -"den associerade serialiseraren för att validera inmatningar för " +"en del av ett autentiseringssystem. Den säkerställer att klienter kan begära" +" en uppfräschad token inom definierade hastighetsgränser. Vyn förlitar sig " +"på den associerade serialiseraren för att validera inmatningar för " "tokenuppdatering och producera lämpliga utmatningar." #: engine/vibes_auth/views.py:83 @@ -613,17 +953,10 @@ msgstr "Token är ogiltig" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Implementering av användarvyuppsättning.\n" -"Tillhandahåller en uppsättning åtgärder som hanterar användarrelaterade data " -"som skapande, hämtning, uppdateringar, borttagning och anpassade åtgärder " -"inklusive återställning av lösenord, uppladdning av avatar, kontoaktivering " -"och sammanslagning av nyligen visade objekt. Denna klass utökar mixins och " -"GenericViewSet för robust API-hantering." +"Tillhandahåller en uppsättning åtgärder som hanterar användarrelaterade data som skapande, hämtning, uppdateringar, borttagning och anpassade åtgärder inklusive återställning av lösenord, uppladdning av avatar, kontoaktivering och sammanslagning av nyligen visade objekt. Denna klass utökar mixins och GenericViewSet för robust API-hantering." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo index ec00bc97..374f27a1 100644 Binary files a/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.po b/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.po index b88fdf63..04bf7b71 100644 --- a/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/th_TH/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "สมดุล" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "คำสั่ง" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "คำสั่ง" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "ข้อมูลส่วนตัว" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "สิทธิ์การใช้งาน" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "วันที่สำคัญ" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "ข้อมูลเพิ่มเติม" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "คุณไม่สามารถกระโดดข้ามหัวตัวเองได้!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "ปิดกระทู้ที่เลือก" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "เปิดกระทู้ที่เลือก" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "ตัวอย่าง" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "เมตาดาตา" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "ตัวอย่าง" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "ภาพตัวอย่าง" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "เนื้อหา" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "เอกสาร" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "การจัดตารางเวลา" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "สถิติ" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "รัฐ" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "เตรียมผู้รับ (ผู้ใช้ที่สมัครรับข้อมูล)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "แคมเปญ '{}' ไม่ได้อยู่ในสถานะร่าง" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "เตรียมผู้รับสำหรับแคมเปญ '{}'" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "ส่งแคมเปญตอนนี้" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "ไม่สามารถส่งแคมเปญ '{}' ได้ (สถานะ: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "แคมเปญ '{}' ไม่มีผู้รับ โปรดเตรียมผู้รับก่อน" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "เริ่มส่งแคมเปญ '{}'" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "ยกเลิกแคมเปญ" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} แคมเปญถูกยกเลิก" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "การยืนยันตัวตน" +msgid "Accounting" +msgstr "บัญชี" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -87,8 +160,8 @@ msgid "" "Anonymous or authenticated non-staff users send messages. Also supports " "action=ping." msgstr "" -"ผู้ใช้ที่ไม่ระบุตัวตนหรือผู้ใช้ที่ผ่านการยืนยันตัวตนแต่ไม่ใช่บุคลากรสามารถส่งข้อความได้ " -"นอกจากนี้ยังรองรับ action=ping" +"ผู้ใช้ที่ไม่ระบุตัวตนหรือผู้ใช้ที่ผ่านการยืนยันตัวตนแต่ไม่ใช่บุคลากรสามารถส่งข้อความได้" +" นอกจากนี้ยังรองรับ action=ping" #: engine/vibes_auth/docs/drf/messaging.py:30 msgid "Staff inbox control" @@ -189,6 +262,267 @@ msgstr "ลิงก์การเปิดใช้งานไม่ถูก msgid "merge client-stored recently viewed products" msgstr "รวมสินค้าที่ลูกค้าดูล่าสุดซึ่งเก็บไว้ในระบบของลูกค้า" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "ร่าง" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "กำหนดไว้แล้ว" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "ส่ง" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "สาย" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "ยกเลิก" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "รอดำเนินการ" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "ล้มเหลว" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "เปิด" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "คลิก" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "ชื่อ" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "ชื่อเชิงอธิบายสำหรับภาพ" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "รูปภาพ" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "ไฟล์ภาพที่จะใช้ในเทมเพลตอีเมล" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "ข้อความอื่น" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "ข้อความทางเลือกเพื่อการเข้าถึง" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "รูปภาพอีเมล" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "รูปภาพทางอีเมล" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "ชื่อภายในสำหรับเทมเพลต" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "คนรับใช้" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "รหัสประจำตัวที่ไม่ซ้ำกันสำหรับแม่แบบ" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "หัวข้อ" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "หัวข้ออีเมล - สนับสนุน {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "เนื้อหา HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"เนื้อหาในอีเมล - รองรับ {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "เนื้อหาข้อความธรรมดา" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "ข้อความธรรมดาสำรอง (สร้างอัตโนมัติหากว่างเปล่า)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "ตัวแปรที่มีอยู่" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "เอกสารประกอบตัวแปรแม่แบบที่มีอยู่" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "แม่แบบอีเมล" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "เทมเพลตอีเมล" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "ชื่อภายในสำหรับแคมเปญ" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "แม่แบบ" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "เทมเพลตอีเมลสำหรับใช้ในแคมเปญนี้" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "สถานะ" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "กำหนดไว้ที่" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "เมื่อใดที่จะส่งแคมเปญ (เว้นว่างไว้สำหรับการส่งด้วยตนเอง)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "สายแล้ว" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "เมื่อแคมเปญถูกส่งออกไปจริง ๆ" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "ผู้รับทั้งหมด" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "จำนวนที่ส่ง" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "ล้มเหลวในการนับ" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "เปิดนับ" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "จำนวนครั้งที่คลิก" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "แคมเปญอีเมล" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "แคมเปญอีเมล" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "แคมเปญ" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "ผู้ใช้" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "เปิดที่" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "คลิกที่" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "หมายเลขติดตาม" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "รหัสประจำตัวที่ไม่ซ้ำกันสำหรับการติดตามการเปิดและการคลิก" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "ข้อความแสดงข้อผิดพลาด" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "รายละเอียดข้อผิดพลาดหากการส่งล้มเหลว" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "ผู้รับแคมเปญ" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "ผู้รับแคมเปญ" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "สงวนลิขสิทธิ์" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "คุณได้รับอีเมลนี้เพราะคุณได้สมัครรับจดหมายข่าวของเรา" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "ยกเลิกการสมัคร" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "จำเป็นต้องใช้โทเคนยกเลิกการสมัคร" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "รูปแบบโทเค็นยกเลิกการสมัครไม่ถูกต้อง" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "ไม่พบผู้ใช้" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "คุณได้ยกเลิกการสมัครแล้ว" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "คุณได้ยกเลิกการสมัครรับอีเมลจากเราเรียบร้อยแล้ว" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "ผู้ใช้ที่เข้ารหัส uuid ด้วย b64 ซึ่งแนะนำผู้ใช้ใหม่ให้เรามา" @@ -238,12 +572,13 @@ msgstr "โทเคนไม่ถูกต้อง!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" -msgstr "สินค้าที่ผู้ใช้รายนี้ดูล่าสุด (สูงสุด 48 รายการ) เรียงตามลำดับเวลาล่าสุด" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" +msgstr "" +"สินค้าที่ผู้ใช้รายนี้ดูล่าสุด (สูงสุด 48 รายการ) เรียงตามลำดับเวลาล่าสุด" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "กลุ่ม" @@ -251,7 +586,8 @@ msgstr "กลุ่ม" msgid "wishlist" msgstr "รายการสิ่งที่ต้องการ" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "อวตาร" @@ -262,9 +598,11 @@ msgstr "คุณลักษณะอาจใช้เพื่อเก็บ #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" -msgstr "ภาษาเป็นหนึ่งใน {settings.LANGUAGES} ที่มีค่าเริ่มต้น {settings.LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" +msgstr "" +"ภาษาเป็นหนึ่งใน {settings.LANGUAGES} ที่มีค่าเริ่มต้น " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -296,11 +634,12 @@ msgid "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." msgstr "" -"แทนที่เอนทิตีผู้ใช้ที่มีฟิลด์และเมธอดที่ปรับแต่งได้สำหรับฟังก์ชันการทำงานที่ขยายออกไป " -"คลาสนี้สืบทอดมาจากโมเดล AbstractUser และรวมคุณสมบัติเพิ่มเติม เช่น " -"การเข้าสู่ระบบด้วยอีเมลที่กำหนดเอง วิธีการตรวจสอบความถูกต้อง สถานะการสมัครสมาชิก การยืนยัน " -"และการจัดเก็บแอตทริบิวต์ " -"นอกจากนี้ยังมียูทิลิตี้สำหรับจัดการรายการที่ดูล่าสุดและการเปิดใช้งานแบบใช้โทเค็นเพื่อยืนยันบัญชี " +"แทนที่เอนทิตีผู้ใช้ที่มีฟิลด์และเมธอดที่ปรับแต่งได้สำหรับฟังก์ชันการทำงานที่ขยายออกไป" +" คลาสนี้สืบทอดมาจากโมเดล AbstractUser และรวมคุณสมบัติเพิ่มเติม เช่น " +"การเข้าสู่ระบบด้วยอีเมลที่กำหนดเอง วิธีการตรวจสอบความถูกต้อง " +"สถานะการสมัครสมาชิก การยืนยัน และการจัดเก็บแอตทริบิวต์ " +"นอกจากนี้ยังมียูทิลิตี้สำหรับจัดการรายการที่ดูล่าสุดและการเปิดใช้งานแบบใช้โทเค็นเพื่อยืนยันบัญชี" +" " "โมเดลผู้ใช้ได้รับการออกแบบมาเพื่อจัดการกรณีการใช้งานเฉพาะสำหรับการจัดการผู้ใช้ที่ดียิ่งขึ้น" #: engine/vibes_auth/models.py:53 @@ -359,63 +698,68 @@ msgstr "สถานะการสมัครสมาชิกจดหมา msgid "activation token" msgstr "โทเค็นการเปิดใช้งาน" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "โทเคนยกเลิกการสมัคร" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"โทเค็นสำหรับการยกเลิกการสมัครรับข้อมูลจากแคมเปญอย่างปลอดภัยด้วยการคลิกเพียงครั้งเดียว" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "คุณลักษณะ" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "ผู้ใช้" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "ผู้ใช้" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "สำหรับกระทู้ที่ไม่ระบุชื่อ" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "หัวข้อสนทนา" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "หัวข้อสนทนา" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "ให้ผู้ใช้หรืออีเมลสำหรับกระทู้ไม่ระบุตัวตน" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "ผู้รับมอบหมายต้องเป็นผู้ใช้ที่เป็นพนักงานเท่านั้น" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "ข้อความแชท" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "ข้อความแชท" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "กลุ่ม" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "โทเค็นที่ยังไม่ได้ใช้" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "โทเค็นที่ยังไม่ได้ใช้" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "โทเค็นที่ถูกขึ้นบัญชีดำ" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "โทเค็นที่ถูกขึ้นบัญชีดำ" @@ -478,11 +822,11 @@ msgstr "สวัสดีครับ/ค่ะ %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" -"เราได้รับคำขอให้คุณรีเซ็ตรหัสผ่านของคุณ กรุณาทำการรีเซ็ตรหัสผ่านของคุณโดยคลิกที่ปุ่มด้านล่าง:" +"เราได้รับคำขอให้คุณรีเซ็ตรหัสผ่านของคุณ " +"กรุณาทำการรีเซ็ตรหัสผ่านของคุณโดยคลิกที่ปุ่มด้านล่าง:" #: engine/vibes_auth/templates/user_reset_password_email.html:95 msgid "reset password" @@ -493,7 +837,9 @@ msgstr "รีเซ็ตรหัสผ่าน" msgid "" "if the button above does not work, please copy and paste the following URL\n" " into your web browser:" -msgstr "หากปุ่มด้านบนไม่ทำงาน โปรดคัดลอกและวาง URL ต่อไปนี้ลงในเว็บเบราว์เซอร์ของคุณ:" +msgstr "" +"หากปุ่มด้านบนไม่ทำงาน โปรดคัดลอกและวาง URL " +"ต่อไปนี้ลงในเว็บเบราว์เซอร์ของคุณ:" #: engine/vibes_auth/templates/user_reset_password_email.html:100 msgid "" @@ -522,7 +868,8 @@ msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -"ขอบคุณที่ลงทะเบียนสำหรับ %(project_name)s กรุณาเปิดใช้งานบัญชีของคุณโดยคลิกที่ปุ่มด้านล่าง:" +"ขอบคุณที่ลงทะเบียนสำหรับ %(project_name)s " +"กรุณาเปิดใช้งานบัญชีของคุณโดยคลิกที่ปุ่มด้านล่าง:" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -550,34 +897,37 @@ msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -"รูปแบบหมายเลขโทรศัพท์ไม่ถูกต้อง. หมายเลขต้องถูกป้อนในรูปแบบ: \"+999999999\". " -"อนุญาตให้ใช้ได้ถึง 15 หลัก." +"รูปแบบหมายเลขโทรศัพท์ไม่ถูกต้อง. หมายเลขต้องถูกป้อนในรูปแบบ: \"+999999999\"." +" อนุญาตให้ใช้ได้ถึง 15 หลัก." #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"แสดงมุมมองสำหรับการรับคู่ของโทเค็นการเข้าถึงและโทเค็นการรีเฟรช รวมถึงข้อมูลของผู้ใช้ " -"มุมมองนี้จัดการกระบวนการตรวจสอบสิทธิ์ที่ใช้โทเค็น โดยลูกค้าสามารถรับคู่ของโทเค็น JWT " -"(โทเค็นการเข้าถึงและโทเค็นการรีเฟรช) โดยใช้ข้อมูลประจำตัวที่ให้มา " -"มุมมองนี้สร้างขึ้นบนมุมมองโทเค็นพื้นฐานและรับประกันการจำกัดอัตราที่เหมาะสมเพื่อป้องกันการโจมตีแบบ " -"brute force" +"แสดงมุมมองสำหรับการรับคู่ของโทเค็นการเข้าถึงและโทเค็นการรีเฟรช " +"รวมถึงข้อมูลของผู้ใช้ มุมมองนี้จัดการกระบวนการตรวจสอบสิทธิ์ที่ใช้โทเค็น " +"โดยลูกค้าสามารถรับคู่ของโทเค็น JWT (โทเค็นการเข้าถึงและโทเค็นการรีเฟรช) " +"โดยใช้ข้อมูลประจำตัวที่ให้มา " +"มุมมองนี้สร้างขึ้นบนมุมมองโทเค็นพื้นฐานและรับประกันการจำกัดอัตราที่เหมาะสมเพื่อป้องกันการโจมตีแบบ" +" brute force" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "จัดการการรีเฟรชโทเค็นเพื่อวัตถุประสงค์ในการยืนยันตัวตน " -"คลาสนี้ใช้เพื่อให้บริการฟังก์ชันสำหรับการรีเฟรชโทเค็นเป็นส่วนหนึ่งของระบบยืนยันตัวตน " -"มันทำให้แน่ใจว่าลูกค้าสามารถขอโทเค็นที่รีเฟรชแล้วได้ภายในขีดจำกัดอัตราที่กำหนดไว้ " +"คลาสนี้ใช้เพื่อให้บริการฟังก์ชันสำหรับการรีเฟรชโทเค็นเป็นส่วนหนึ่งของระบบยืนยันตัวตน" +" " +"มันทำให้แน่ใจว่าลูกค้าสามารถขอโทเค็นที่รีเฟรชแล้วได้ภายในขีดจำกัดอัตราที่กำหนดไว้" +" " "หน้าจอนี้พึ่งพาตัวจัดลำดับที่เกี่ยวข้องเพื่อตรวจสอบความถูกต้องของข้อมูลการรีเฟรชโทเค็นและสร้างผลลัพธ์ที่เหมาะสม" #: engine/vibes_auth/views.py:83 @@ -595,15 +945,14 @@ msgstr "โทเค็นไม่ถูกต้อง" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" -"การใช้งานชุดมุมมองผู้ใช้ ให้ชุดของการดำเนินการที่จัดการข้อมูลที่เกี่ยวข้องกับผู้ใช้ เช่น การสร้าง " -"การดึงข้อมูล การอัปเดต การลบ และการดำเนินการที่กำหนดเอง รวมถึงการรีเซ็ตรหัสผ่าน " -"การอัปโหลดอวาตาร์ การเปิดใช้งานบัญชี และการรวมรายการที่ดูล่าสุด คลาสนี้ขยายส่วนผสมและ " -"GenericViewSet เพื่อการจัดการ API ที่มีความแข็งแกร่ง" +"การใช้งานชุดมุมมองผู้ใช้ " +"ให้ชุดของการดำเนินการที่จัดการข้อมูลที่เกี่ยวข้องกับผู้ใช้ เช่น การสร้าง " +"การดึงข้อมูล การอัปเดต การลบ และการดำเนินการที่กำหนดเอง " +"รวมถึงการรีเซ็ตรหัสผ่าน การอัปโหลดอวาตาร์ การเปิดใช้งานบัญชี " +"และการรวมรายการที่ดูล่าสุด คลาสนี้ขยายส่วนผสมและ GenericViewSet " +"เพื่อการจัดการ API ที่มีความแข็งแกร่ง" #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo index 9893de2f..77904a13 100644 Binary files a/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po b/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po index 8c42e28d..3e95350f 100644 --- a/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/tr_TR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Denge" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Sipariş" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Siparişler" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Kişisel Bilgiler" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "İzinler" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Önemli tarihler" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Ek Bilgi" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Başının üzerinden atlayamazsın!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Seçili konuları kapatın" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Seçili konuları açın" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Önizleme" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Meta veriler" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "ön izleme" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "görüntü önizlemesi" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "İçerik" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Belgeler" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Planlama" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "İstatistik" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "devlet" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Alıcıları hazırlayın (abone olan kullanıcılar)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Kampanya '{}' taslak durumunda değildir." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Alıcıları '{}' kampanyası için hazırlama." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Kampanyayı şimdi gönder" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Kampanya '{}' gönderilemiyor (durum: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "Kampanya '{}'in alıcısı yok. Önce alıcıları hazırlayın." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "'{}' kampanyasını göndermeye başladı." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Kampanyayı iptal et" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} kampanyası/kampanyaları iptal edildi." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Kimlik Doğrulama" +msgid "Accounting" +msgstr "Muhasebe" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -190,6 +263,267 @@ msgstr "Etkinleştirme bağlantısı geçersiz veya hesap zaten etkinleştirilmi msgid "merge client-stored recently viewed products" msgstr "İstemcide depolanan son görüntülenen ürünleri birleştirme" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Taslak" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Planlanmış" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Gönderme" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Geç" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "İptal edildi" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Beklemede" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Başarısız" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Açıldı" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Tıklandı" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "isim" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "görüntü için açıklayıcı ad" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "görüntü" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "e-posta şablonlarında kullanılacak resim dosyası" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "başka metin" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "erişilebilirlik için alternatif metin" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "e-posta görüntüsü" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "e-posta resimleri" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "şablonun dahili adı" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "şablon için benzersiz tanımlayıcı" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "konu" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "e-posta konu satırı - {{ variables }}'ı destekler}}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML içeriği" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"e-posta gövdesi içeriği - {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }} destekler" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "düz metin içeriği" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "düz metin yedeği (boşsa otomatik olarak oluşturulur)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "kullanılabilir değişkenler" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "kullanılabilir şablon değişkenlerinin belgelenmesi" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "e-posta şablonu" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "e-posta şablonları" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "kampanyanın iç adı" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "şablon" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "Bu kampanya için kullanılacak e-posta şablonu" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "durum" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "planlanan" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "kampanyayı ne zaman gönderecek (manuel gönderim için boş bırakın)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "geç" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "kampanya gerçekten gönderildiğinde" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "toplam alıcı sayısı" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "gönderilen sayı" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "başarısız sayım" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "açık sayım" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "tıklama sayısı" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "e-posta kampanyası" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "e-posta kampanyaları" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "kampanya" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Kullanıcı" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "açıldı" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "tıklandı" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "izleme kimliği" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "açılışları ve tıklamaları izlemek için benzersiz kimlik" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "hata mesajı" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "gönderme başarısız olursa hata ayrıntıları" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "kampanya alıcısı" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "kampanya alıcıları" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Tüm hakları saklıdır" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "Bu e-postayı, haber bültenimize abone olduğunuz için aldınız." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Abonelikten çık" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Abonelikten çıkma jetonu gereklidir." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Geçersiz abonelik iptal jetonu biçimi." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Kullanıcı bulunamadı." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Zaten abonelikten çıkmış durumdasınız." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "E-postalarımızdan başarıyla aboneliğiniz iptal edildi." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "Yeni kullanıcıyı bize yönlendiren kullanıcının b64 kodlu uuid'si." @@ -239,14 +573,14 @@ msgstr "Jeton geçersiz!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Bu kullanıcının en son görüntülediği ürünler (en fazla 48), ters kronolojik " "sırayla." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Gruplar" @@ -254,7 +588,8 @@ msgstr "Gruplar" msgid "wishlist" msgstr "İstek Listesi" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -265,10 +600,11 @@ msgstr "Öznitelikler özel verileri saklamak için kullanılabilir" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Dil, varsayılan {settings.LANGUAGE_CODE} ile {settings.LANGUAGES}'dan biridir" +"Dil, varsayılan {settings.LANGUAGE_CODE} ile {settings.LANGUAGES}'dan " +"biridir" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -303,8 +639,8 @@ msgstr "" "Genişletilmiş işlevsellik için özelleştirilmiş alanlara ve yöntemlere sahip " "bir Kullanıcı varlığını temsil eder. Bu sınıf AbstractUser modelini " "genişletir ve özel e-posta girişi, doğrulama yöntemleri, abonelik durumu, " -"doğrulama ve öznitelik depolama gibi ek özellikleri entegre eder. Ayrıca son " -"görüntülenen öğeleri yönetmek için yardımcı programlar ve hesapları " +"doğrulama ve öznitelik depolama gibi ek özellikleri entegre eder. Ayrıca son" +" görüntülenen öğeleri yönetmek için yardımcı programlar ve hesapları " "doğrulamak için token tabanlı aktivasyon sağlar. User modeli, gelişmiş " "kullanıcı yönetimi için belirli kullanım durumlarını ele almak üzere " "tasarlanmıştır." @@ -365,63 +701,69 @@ msgstr "Kullanıcının haber bülteni abonelik durumu" msgid "activation token" msgstr "Etkinleştirme belirteci" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "abonelikten çıkma jetonu" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"kampanyalardan tek tıklamayla güvenli bir şekilde abonelikten çıkmak için " +"jeton" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Nitelikler" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Kullanıcı" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Kullanıcılar" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Anonim konular için" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Sohbet başlığı" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Sohbet konuları" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "anonim konu için kullanıcı veya e-posta sağlayın." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "atanan kişi bir personel kullanıcısı olmalıdır." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Sohbet mesajı" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Sohbet mesajları" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Grup" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Olağanüstü belirteç" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Ödenmemiş jetonlar" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Kara listeye alınmış belirteç" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Kara listeye alınmış belirteçler" @@ -484,8 +826,7 @@ msgstr "Merhaba %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Şifrenizi sıfırlamak için bir talep aldık. Lütfen aşağıdaki butona " @@ -569,8 +910,8 @@ msgstr "" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." @@ -579,21 +920,21 @@ msgstr "" "bir görünümü temsil eder. Bu görünüm, istemcilerin sağlanan kimlik " "bilgilerini kullanarak bir çift JWT belirteci (erişim ve yenileme) " "alabildiği belirteç tabanlı kimlik doğrulama işlemini yönetir. Temel bir " -"token görünümünün üzerine inşa edilmiştir ve kaba kuvvet saldırılarına karşı " -"koruma sağlamak için uygun hız sınırlaması sağlar." +"token görünümünün üzerine inşa edilmiştir ve kaba kuvvet saldırılarına karşı" +" koruma sağlamak için uygun hız sınırlaması sağlar." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" "Kimlik doğrulama amacıyla belirteçlerin yenilenmesini işler. Bu sınıf, bir " "kimlik doğrulama sisteminin parçası olarak belirteç yenileme işlemleri için " -"işlevsellik sağlamak üzere kullanılır. İstemcilerin tanımlanan hız sınırları " -"içinde yenilenmiş bir belirteç talep edebilmesini sağlar. Görünüm, token " +"işlevsellik sağlamak üzere kullanılır. İstemcilerin tanımlanan hız sınırları" +" içinde yenilenmiş bir belirteç talep edebilmesini sağlar. Görünüm, token " "yenileme girdilerini doğrulamak ve uygun çıktıları üretmek için ilişkili " "serileştiriciye dayanır." @@ -612,16 +953,10 @@ msgstr "Belirteç geçersiz" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Kullanıcı görünümü kümesi uygulaması.\n" -"Oluşturma, alma, güncelleme, silme gibi kullanıcıyla ilgili verileri ve " -"parola sıfırlama, avatar yükleme, hesap etkinleştirme ve son görüntülenen " -"öğeleri birleştirme gibi özel eylemleri yöneten bir dizi eylem sağlar. Bu " -"sınıf, sağlam API kullanımı için mixin'leri ve GenericViewSet'i genişletir." +"Oluşturma, alma, güncelleme, silme gibi kullanıcıyla ilgili verileri ve parola sıfırlama, avatar yükleme, hesap etkinleştirme ve son görüntülenen öğeleri birleştirme gibi özel eylemleri yöneten bir dizi eylem sağlar. Bu sınıf, sağlam API kullanımı için mixin'leri ve GenericViewSet'i genişletir." #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo index 46a7c482..8aa4b9ee 100644 Binary files a/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po b/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po index 325c9209..5137b9ca 100644 --- a/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/vi_VN/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,125 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "Cân bằng" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "Đặt hàng" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "Đơn hàng" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "Thông tin cá nhân" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "Quyền" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "Các ngày quan trọng" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "Thông tin bổ sung" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "Bạn không thể nhảy qua đầu mình!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "Đóng các chủ đề đã chọn" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "Mở các chủ đề đã chọn" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "Xem trước" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "Siêu dữ liệu" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "Xem trước" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "Xem trước hình ảnh" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "Nội dung" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "Tài liệu" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "Lập lịch" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "Thống kê" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "nhà nước" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "Chuẩn bị danh sách người nhận (người dùng đã đăng ký)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "Chiến dịch '{}' không ở trạng thái bản nháp." + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "Chuẩn bị cho người nhận tham gia chiến dịch '{}'." + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "Gửi chiến dịch ngay bây giờ" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "Chiến dịch '{}' không thể được gửi (trạng thái: {})." + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "" +"Chiến dịch '{}' không có người nhận. Vui lòng chuẩn bị danh sách người nhận " +"trước." + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "Đã bắt đầu gửi chiến dịch '{}'." + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "Hủy chiến dịch" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} chiến dịch đã bị hủy." + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "Xác thực" +msgid "Accounting" +msgstr "Kế toán" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -190,11 +265,272 @@ msgid "merge client-stored recently viewed products" msgstr "" "Ghép các sản phẩm đã xem gần đây được lưu trữ trên thiết bị của khách hàng" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "Bản thảo" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "Được lên lịch" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "Gửi" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "Gửi" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "Đã hủy" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "Đang chờ xử lý" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "Thất bại" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "Đã mở" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "Đã nhấp chuột" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "tên" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "Tên mô tả cho hình ảnh" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "hình ảnh" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "Tệp hình ảnh để sử dụng trong mẫu email" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "văn bản khác" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "Văn bản thay thế cho tính năng truy cập" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "Hình ảnh trong email" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "Hình ảnh trong email" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "Tên nội bộ cho mẫu" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "slug" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "Mã định danh duy nhất cho mẫu" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "chủ đề" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "Tiêu đề email - Hỗ trợ {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "Nội dung HTML" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"Nội dung thân email - hỗ trợ {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "Nội dung văn bản thuần túy" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "Nội dung văn bản thuần túy (được tạo tự động nếu trống)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "Các biến có sẵn" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "Tài liệu mô tả các biến mẫu có sẵn" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "Mẫu email" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "Mẫu email" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "Tên nội bộ cho chiến dịch" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "mẫu" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "Mẫu email để sử dụng cho chiến dịch này" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "tình trạng" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "được lên lịch vào" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "Thời điểm gửi chiến dịch (để trống nếu muốn gửi thủ công)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "gửi" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "Khi chiến dịch thực sự được gửi đi" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "Tổng số người nhận" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "Số lượng tin nhắn đã gửi" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "Số lần đếm không thành công" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "Số lượng đã mở" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "Số lần nhấp chuột" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "Chiến dịch email" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "Chiến dịch email" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "chiến dịch" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "Người dùng" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "Được mở tại" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "được nhấp vào" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "Mã theo dõi" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "Mã định danh duy nhất để theo dõi số lần mở và nhấp chuột" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "Thông báo lỗi" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "Chi tiết lỗi nếu việc gửi không thành công" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "Người nhận chiến dịch" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "Người nhận chiến dịch" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "Tất cả các quyền được bảo lưu." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "Bạn nhận được email này vì bạn đã đăng ký nhận bản tin của chúng tôi." + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "Hủy đăng ký" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "Mã hủy đăng ký là bắt buộc." + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "Định dạng mã hủy đăng ký không hợp lệ." + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "Không tìm thấy người dùng." + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "Bạn đã hủy đăng ký." + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "Bạn đã hủy đăng ký nhận email của chúng tôi thành công." + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "" -"Mã UUID được mã hóa bằng B64 của người dùng đã giới thiệu người dùng mới cho " -"chúng tôi." +"Mã UUID được mã hóa bằng B64 của người dùng đã giới thiệu người dùng mới cho" +" chúng tôi." #: engine/vibes_auth/graphene/mutations.py:68 msgid "password too weak" @@ -241,14 +577,14 @@ msgstr "Token không hợp lệ!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "" "Các sản phẩm mà người dùng này đã xem gần đây nhất (tối đa 48), theo thứ tự " "thời gian ngược." #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "Nhóm" @@ -256,7 +592,8 @@ msgstr "Nhóm" msgid "wishlist" msgstr "Danh sách mong muốn" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "Avatar" @@ -267,11 +604,11 @@ msgstr "Các thuộc tính có thể được sử dụng để lưu trữ dữ #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "" -"Ngôn ngữ là một trong những {settings.LANGUAGES} với mặc định {settings." -"LANGUAGE_CODE}" +"Ngôn ngữ là một trong những {settings.LANGUAGES} với mặc định " +"{settings.LANGUAGE_CODE}" #: engine/vibes_auth/graphene/object_types.py:66 msgid "address set" @@ -309,9 +646,9 @@ msgstr "" "mở rộng chức năng. Lớp này kế thừa từ mô hình AbstractUser và tích hợp các " "tính năng bổ sung như đăng nhập bằng email tùy chỉnh, phương thức xác thực, " "trạng thái đăng ký, xác minh và lưu trữ thuộc tính. Nó cũng cung cấp các " -"công cụ để quản lý các mục đã xem gần đây và kích hoạt dựa trên token để xác " -"minh tài khoản. Mô hình Người dùng được thiết kế để xử lý các trường hợp sử " -"dụng cụ thể nhằm nâng cao quản lý người dùng." +"công cụ để quản lý các mục đã xem gần đây và kích hoạt dựa trên token để xác" +" minh tài khoản. Mô hình Người dùng được thiết kế để xử lý các trường hợp sử" +" dụng cụ thể nhằm nâng cao quản lý người dùng." #: engine/vibes_auth/models.py:53 msgid "email" @@ -369,64 +706,70 @@ msgstr "Tình trạng đăng ký bản tin của người dùng" msgid "activation token" msgstr "Mã kích hoạt" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "Mã hủy đăng ký" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "" +"Token để hủy đăng ký một cách an toàn chỉ với một cú nhấp chuột khỏi các " +"chiến dịch." + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "Thuộc tính" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "Người dùng" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "Người dùng" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "Đối với các chủ đề ẩn danh" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "Dòng trò chuyện" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "Các chuỗi trò chuyện" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "" "Cung cấp tên người dùng hoặc địa chỉ email cho chuỗi thảo luận ẩn danh." -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "Người được giao nhiệm vụ phải là người dùng nhân viên." -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "Tin nhắn trò chuyện" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "Tin nhắn trò chuyện" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "Nhóm" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "Token xuất sắc" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "Token xuất sắc" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "Token bị đưa vào danh sách đen" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "Các token bị đưa vào danh sách đen" @@ -489,8 +832,7 @@ msgstr "Xin chào %(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "" "Chúng tôi đã nhận được yêu cầu đặt lại mật khẩu của bạn. Vui lòng đặt lại " @@ -536,8 +878,8 @@ msgid "" "thank you for signing up for %(project_name)s. please activate your account\n" " by clicking the button below:" msgstr "" -"Cảm ơn bạn đã đăng ký cho %(project_name)s. Vui lòng kích hoạt tài khoản của " -"bạn bằng cách nhấp vào nút bên dưới:" +"Cảm ơn bạn đã đăng ký cho %(project_name)s. Vui lòng kích hoạt tài khoản của" +" bạn bằng cách nhấp vào nút bên dưới:" #: engine/vibes_auth/templates/user_verification_email.html:96 msgid "" @@ -565,38 +907,38 @@ msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." msgstr "" -"Định dạng số điện thoại không hợp lệ. Số điện thoại phải được nhập theo định " -"dạng: \"+999999999\". Cho phép tối đa 15 chữ số." +"Định dạng số điện thoại không hợp lệ. Số điện thoại phải được nhập theo định" +" dạng: \"+999999999\". Cho phép tối đa 15 chữ số." #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" "Đại diện cho một giao diện để lấy cặp token truy cập và token làm mới cùng " "với dữ liệu người dùng. Giao diện này quản lý quá trình xác thực dựa trên " -"token, cho phép các client lấy cặp token JWT (truy cập và làm mới) bằng cách " -"sử dụng thông tin đăng nhập được cung cấp. Nó được xây dựng dựa trên một " +"token, cho phép các client lấy cặp token JWT (truy cập và làm mới) bằng cách" +" sử dụng thông tin đăng nhập được cung cấp. Nó được xây dựng dựa trên một " "giao diện token cơ sở và đảm bảo giới hạn tốc độ thích hợp để bảo vệ khỏi " "các cuộc tấn công dò mật khẩu." #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" -"Xử lý việc làm mới token cho mục đích xác thực. Lớp này được sử dụng để cung " -"cấp chức năng cho các hoạt động làm mới token như một phần của hệ thống xác " -"thực. Nó đảm bảo rằng các client có thể yêu cầu token đã được làm mới trong " -"giới hạn tỷ lệ được định nghĩa. Giao diện người dùng dựa vào trình " -"serializer liên quan để xác thực các đầu vào làm mới token và tạo ra các đầu " -"ra phù hợp." +"Xử lý việc làm mới token cho mục đích xác thực. Lớp này được sử dụng để cung" +" cấp chức năng cho các hoạt động làm mới token như một phần của hệ thống xác" +" thực. Nó đảm bảo rằng các client có thể yêu cầu token đã được làm mới trong" +" giới hạn tỷ lệ được định nghĩa. Giao diện người dùng dựa vào trình " +"serializer liên quan để xác thực các đầu vào làm mới token và tạo ra các đầu" +" ra phù hợp." #: engine/vibes_auth/views.py:83 msgid "" @@ -613,15 +955,12 @@ msgstr "Token không hợp lệ" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "Thực hiện bộ xem người dùng. Cung cấp một tập hợp các hành động quản lý dữ " "liệu liên quan đến người dùng như tạo, truy xuất, cập nhật, xóa và các hành " -"động tùy chỉnh bao gồm đặt lại mật khẩu, tải lên avatar, kích hoạt tài khoản " -"và hợp nhất các mục đã xem gần đây. Lớp này mở rộng các mixin và " +"động tùy chỉnh bao gồm đặt lại mật khẩu, tải lên avatar, kích hoạt tài khoản" +" và hợp nhất các mục đã xem gần đây. Lớp này mở rộng các mixin và " "GenericViewSet để xử lý API một cách mạnh mẽ." #: engine/vibes_auth/viewsets.py:113 diff --git a/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo b/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo index a1d2a4a6..c8ed6800 100644 Binary files a/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo and b/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po b/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po index c21cbc39..1f5fb985 100644 --- a/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po +++ b/engine/vibes_auth/locale/zh_Hans/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:38+0300\n" +"POT-Creation-Date: 2026-01-26 03:06+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -13,50 +13,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: engine/vibes_auth/admin.py:51 engine/vibes_auth/admin.py:52 +#: engine/vibes_auth/admin.py:65 engine/vibes_auth/admin.py:66 #: engine/vibes_auth/graphene/object_types.py:54 msgid "balance" msgstr "平衡" -#: engine/vibes_auth/admin.py:60 +#: engine/vibes_auth/admin.py:74 msgid "order" msgstr "订购" -#: engine/vibes_auth/admin.py:61 engine/vibes_auth/graphene/object_types.py:51 +#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:51 msgid "orders" msgstr "订单" -#: engine/vibes_auth/admin.py:71 +#: engine/vibes_auth/admin.py:85 msgid "personal info" msgstr "个人信息" -#: engine/vibes_auth/admin.py:75 engine/vibes_auth/graphene/object_types.py:50 +#: engine/vibes_auth/admin.py:89 engine/vibes_auth/graphene/object_types.py:50 msgid "permissions" msgstr "权限" -#: engine/vibes_auth/admin.py:88 +#: engine/vibes_auth/admin.py:102 msgid "important dates" msgstr "重要日期" -#: engine/vibes_auth/admin.py:89 +#: engine/vibes_auth/admin.py:103 msgid "additional info" msgstr "其他信息" -#: engine/vibes_auth/admin.py:135 +#: engine/vibes_auth/admin.py:149 msgid "You cannot jump over your head!" msgstr "你不能跳过你的头!" -#: engine/vibes_auth/admin.py:167 +#: engine/vibes_auth/admin.py:181 msgid "Close selected threads" msgstr "关闭选定的线程" -#: engine/vibes_auth/admin.py:171 +#: engine/vibes_auth/admin.py:185 msgid "Open selected threads" msgstr "打开选定的线程" +#: engine/vibes_auth/admin.py:208 +msgid "Preview" +msgstr "预览" + +#: engine/vibes_auth/admin.py:209 engine/vibes_auth/admin.py:249 +#: engine/vibes_auth/admin.py:326 +msgid "Metadata" +msgstr "元数据" + +#: engine/vibes_auth/admin.py:212 +msgid "preview" +msgstr "预览" + +#: engine/vibes_auth/admin.py:221 +msgid "image preview" +msgstr "图片预览" + +#: engine/vibes_auth/admin.py:241 +msgid "Content" +msgstr "内容" + +#: engine/vibes_auth/admin.py:243 +msgid "Documentation" +msgstr "文档" + +#: engine/vibes_auth/admin.py:313 +msgid "Scheduling" +msgstr "排程" + +#: engine/vibes_auth/admin.py:315 +msgid "Statistics" +msgstr "统计数据" + +#: engine/vibes_auth/admin.py:329 +msgid "stats" +msgstr "状态" + +#: engine/vibes_auth/admin.py:335 +msgid "Prepare recipients (subscribed users)" +msgstr "准备收件人(已订阅用户)" + +#: engine/vibes_auth/admin.py:343 +msgid "Campaign '{}' is not in draft status." +msgstr "活动 '{}' 当前未处于草稿状态。" + +#: engine/vibes_auth/admin.py:350 +msgid "Preparing recipients for campaign '{}'." +msgstr "为活动'{}'准备接收者。" + +#: engine/vibes_auth/admin.py:354 +msgid "Send campaign now" +msgstr "立即发送活动" + +#: engine/vibes_auth/admin.py:362 +msgid "Campaign '{}' cannot be sent (status: {})." +msgstr "活动 '{}' 无法发送(状态:{})。" + +#: engine/vibes_auth/admin.py:372 +msgid "Campaign '{}' has no recipients. Prepare recipients first." +msgstr "活动 '{}' 没有收件人。请先准备收件人。" + +#: engine/vibes_auth/admin.py:383 +msgid "Started sending campaign '{}'." +msgstr "开始发送活动'{}'。" + +#: engine/vibes_auth/admin.py:387 +msgid "Cancel campaign" +msgstr "取消活动" + +#: engine/vibes_auth/admin.py:396 +msgid "{} campaign(s) cancelled." +msgstr "{} 活动已取消。" + #: engine/vibes_auth/apps.py:8 -msgid "authentication" -msgstr "认证" +msgid "Accounting" +msgstr "会计" #: engine/vibes_auth/choices.py:6 msgid "Open" @@ -96,9 +169,7 @@ msgstr "员工收件箱控制" msgid "" "Staff-only actions: list_open, assign, reply, close, ping. Unified event " "payloads are emitted." -msgstr "" -"工作人员专用操作:list_open、assign、reply、close、ping。发出统一的事件有效载" -"荷。" +msgstr "工作人员专用操作:list_open、assign、reply、close、ping。发出统一的事件有效载荷。" #: engine/vibes_auth/docs/drf/messaging.py:43 msgid "Per-thread staff channel" @@ -187,6 +258,267 @@ msgstr "激活链接无效或账户已激活" msgid "merge client-stored recently viewed products" msgstr "合并客户存储的最近查看的产品" +#: engine/vibes_auth/emailing/choices.py:6 +msgid "Draft" +msgstr "草稿" + +#: engine/vibes_auth/emailing/choices.py:7 +msgid "Scheduled" +msgstr "预定的" + +#: engine/vibes_auth/emailing/choices.py:8 +msgid "Sending" +msgstr "发送" + +#: engine/vibes_auth/emailing/choices.py:9 +#: engine/vibes_auth/emailing/choices.py:15 +msgid "Sent" +msgstr "迟到" + +#: engine/vibes_auth/emailing/choices.py:10 +msgid "Cancelled" +msgstr "取消" + +#: engine/vibes_auth/emailing/choices.py:14 +msgid "Pending" +msgstr "待定" + +#: engine/vibes_auth/emailing/choices.py:16 +msgid "Failed" +msgstr "失败" + +#: engine/vibes_auth/emailing/choices.py:17 +msgid "Opened" +msgstr "开放" + +#: engine/vibes_auth/emailing/choices.py:18 +msgid "Clicked" +msgstr "点击" + +#: engine/vibes_auth/emailing/models.py:35 +#: engine/vibes_auth/emailing/models.py:71 +#: engine/vibes_auth/emailing/models.py:121 +msgid "name" +msgstr "名称" + +#: engine/vibes_auth/emailing/models.py:36 +msgid "descriptive name for the image" +msgstr "图像的描述性名称" + +#: engine/vibes_auth/emailing/models.py:40 +msgid "image" +msgstr "图片" + +#: engine/vibes_auth/emailing/models.py:41 +msgid "image file to use in email templates" +msgstr "用于电子邮件模板的图像文件" + +#: engine/vibes_auth/emailing/models.py:47 +msgid "alt text" +msgstr "其他文本" + +#: engine/vibes_auth/emailing/models.py:48 +msgid "alternative text for accessibility" +msgstr "辅助功能替代文本" + +#: engine/vibes_auth/emailing/models.py:52 +msgid "email image" +msgstr "电子邮件图片" + +#: engine/vibes_auth/emailing/models.py:53 +msgid "email images" +msgstr "邮件图片" + +#: engine/vibes_auth/emailing/models.py:72 +msgid "internal name for the template" +msgstr "模板的内部名称" + +#: engine/vibes_auth/emailing/models.py:76 +msgid "slug" +msgstr "仆人" + +#: engine/vibes_auth/emailing/models.py:77 +msgid "unique identifier for the template" +msgstr "模板的唯一标识符" + +#: engine/vibes_auth/emailing/models.py:81 +msgid "subject" +msgstr "主题" + +#: engine/vibes_auth/emailing/models.py:82 +msgid "email subject line - supports {{ variables }}" +msgstr "邮件主题行 - 支持 {{ variables }}" + +#: engine/vibes_auth/emailing/models.py:85 +msgid "HTML content" +msgstr "HTML内容" + +#: engine/vibes_auth/emailing/models.py:87 +msgid "" +"email body content - supports {{ user.first_name }}, {{ user.email }}, {{ " +"project_name }}, {{ unsubscribe_url }}" +msgstr "" +"邮件正文内容 - 支持 {{ user.first_name }}、{{ user.email }}、{{ project_name }}、{{ " +"unsubscribe_url }}" + +#: engine/vibes_auth/emailing/models.py:94 +msgid "plain text content" +msgstr "纯文本内容" + +#: engine/vibes_auth/emailing/models.py:95 +msgid "plain text fallback (auto-generated if empty)" +msgstr "纯文本备用方案(若为空则自动生成)" + +#: engine/vibes_auth/emailing/models.py:100 +msgid "available variables" +msgstr "可用变量" + +#: engine/vibes_auth/emailing/models.py:101 +msgid "documentation of available template variables" +msgstr "可用模板变量的文档说明" + +#: engine/vibes_auth/emailing/models.py:105 +msgid "email template" +msgstr "电子邮件模板" + +#: engine/vibes_auth/emailing/models.py:106 +msgid "email templates" +msgstr "电子邮件模板" + +#: engine/vibes_auth/emailing/models.py:122 +msgid "internal name for the campaign" +msgstr "该活动的内部名称" + +#: engine/vibes_auth/emailing/models.py:129 +msgid "template" +msgstr "模板" + +#: engine/vibes_auth/emailing/models.py:130 +msgid "email template to use for this campaign" +msgstr "本次活动使用的邮件模板" + +#: engine/vibes_auth/emailing/models.py:136 +#: engine/vibes_auth/emailing/models.py:206 +msgid "status" +msgstr "状态" + +#: engine/vibes_auth/emailing/models.py:141 +msgid "scheduled at" +msgstr "定于" + +#: engine/vibes_auth/emailing/models.py:142 +msgid "when to send the campaign (leave empty for manual send)" +msgstr "活动发送时间(留空表示手动发送)" + +#: engine/vibes_auth/emailing/models.py:147 +#: engine/vibes_auth/emailing/models.py:211 +msgid "sent at" +msgstr "那晚" + +#: engine/vibes_auth/emailing/models.py:148 +msgid "when the campaign was actually sent" +msgstr "当活动实际发送时" + +#: engine/vibes_auth/emailing/models.py:153 +msgid "total recipients" +msgstr "总接收者" + +#: engine/vibes_auth/emailing/models.py:157 +msgid "sent count" +msgstr "发送计数" + +#: engine/vibes_auth/emailing/models.py:161 +msgid "failed count" +msgstr "失败计数" + +#: engine/vibes_auth/emailing/models.py:165 +msgid "opened count" +msgstr "已打开计数" + +#: engine/vibes_auth/emailing/models.py:169 +msgid "clicked count" +msgstr "点击次数" + +#: engine/vibes_auth/emailing/models.py:173 +msgid "email campaign" +msgstr "电子邮件营销活动" + +#: engine/vibes_auth/emailing/models.py:174 +msgid "email campaigns" +msgstr "电子邮件营销活动" + +#: engine/vibes_auth/emailing/models.py:194 +msgid "campaign" +msgstr "竞选活动" + +#: engine/vibes_auth/emailing/models.py:200 engine/vibes_auth/models.py:146 +msgid "user" +msgstr "用户" + +#: engine/vibes_auth/emailing/models.py:216 +msgid "opened at" +msgstr "于" + +#: engine/vibes_auth/emailing/models.py:221 +msgid "clicked at" +msgstr "点击" + +#: engine/vibes_auth/emailing/models.py:227 +msgid "tracking ID" +msgstr "追踪ID" + +#: engine/vibes_auth/emailing/models.py:228 +msgid "unique ID for tracking opens and clicks" +msgstr "用于追踪打开和点击的唯一标识符" + +#: engine/vibes_auth/emailing/models.py:233 +msgid "error message" +msgstr "错误信息" + +#: engine/vibes_auth/emailing/models.py:234 +msgid "error details if sending failed" +msgstr "发送失败时的错误详情" + +#: engine/vibes_auth/emailing/models.py:238 +msgid "campaign recipient" +msgstr "活动接收方" + +#: engine/vibes_auth/emailing/models.py:239 +msgid "campaign recipients" +msgstr "活动接收者" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:136 +msgid "All rights reserved" +msgstr "版权所有" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:138 +msgid "You received this email because you subscribed to our newsletter." +msgstr "您收到此邮件是因为您订阅了我们的新闻通讯。" + +#: engine/vibes_auth/emailing/templates/campaign_base.html:139 +msgid "Unsubscribe" +msgstr "取消订阅" + +#: engine/vibes_auth/emailing/views.py:71 +msgid "Unsubscribe token is required." +msgstr "需要提供退订令牌。" + +#: engine/vibes_auth/emailing/views.py:79 +msgid "Invalid unsubscribe token format." +msgstr "无效的取消订阅令牌格式。" + +#: engine/vibes_auth/emailing/views.py:87 +msgid "User not found." +msgstr "用户不存在。" + +#: engine/vibes_auth/emailing/views.py:93 +msgid "You are already unsubscribed." +msgstr "您已取消订阅。" + +#: engine/vibes_auth/emailing/views.py:101 +msgid "You have been successfully unsubscribed from our emails." +msgstr "您已成功取消订阅我们的邮件。" + #: engine/vibes_auth/graphene/mutations.py:46 msgid "the user's b64-encoded uuid who referred the new user to us." msgstr "将新用户推荐给我们的用户的 b64-encoded uuid。" @@ -236,12 +568,12 @@ msgstr "令牌无效!" #: engine/vibes_auth/graphene/object_types.py:46 msgid "" -"the products this user has viewed most recently (max 48), in reverse‐" -"chronological order" +"the products this user has viewed most recently (max 48), in " +"reverse‐chronological order" msgstr "该用户最近查看过的产品(最多 48 个),按倒序排列。" #: engine/vibes_auth/graphene/object_types.py:49 -#: engine/vibes_auth/models.py:209 +#: engine/vibes_auth/models.py:214 msgid "groups" msgstr "组别" @@ -249,7 +581,8 @@ msgstr "组别" msgid "wishlist" msgstr "愿望清单" -#: engine/vibes_auth/graphene/object_types.py:56 engine/vibes_auth/models.py:70 +#: engine/vibes_auth/graphene/object_types.py:56 +#: engine/vibes_auth/models.py:70 msgid "avatar" msgstr "阿凡达" @@ -260,8 +593,8 @@ msgstr "属性可用于存储自定义数据" #: engine/vibes_auth/graphene/object_types.py:62 #, python-brace-format msgid "" -"language is one of the {settings.LANGUAGES} with default {settings." -"LANGUAGE_CODE}" +"language is one of the {settings.LANGUAGES} with default " +"{settings.LANGUAGE_CODE}" msgstr "语言是{settings.LANGUAGES}之一,默认为{settings.LANGUAGE_CODE}。" #: engine/vibes_auth/graphene/object_types.py:66 @@ -294,10 +627,8 @@ msgid "" "verifying accounts. The User model is designed to handle specific use cases " "for enhanced user management." msgstr "" -"代表具有自定义字段和方法以扩展功能的用户实体。该类扩展了 AbstractUser 模型," -"并集成了其他功能,如自定义电子邮件登录、验证方法、订阅状态、验证和属性存储。" -"它还为管理最近查看的项目和基于令牌的激活提供了实用工具,以便验证账户。用户模" -"型旨在处理增强用户管理的特定用例。" +"代表具有自定义字段和方法以扩展功能的用户实体。该类扩展了 AbstractUser " +"模型,并集成了其他功能,如自定义电子邮件登录、验证方法、订阅状态、验证和属性存储。它还为管理最近查看的项目和基于令牌的激活提供了实用工具,以便验证账户。用户模型旨在处理增强用户管理的特定用例。" #: engine/vibes_auth/models.py:53 msgid "email" @@ -355,63 +686,67 @@ msgstr "用户的通讯订阅状态" msgid "activation token" msgstr "激活令牌" -#: engine/vibes_auth/models.py:101 +#: engine/vibes_auth/models.py:95 +msgid "unsubscribe token" +msgstr "退订令牌" + +#: engine/vibes_auth/models.py:96 +msgid "token for secure one-click unsubscribe from campaigns" +msgstr "安全一键退订活动令牌" + +#: engine/vibes_auth/models.py:106 msgid "attributes" msgstr "属性" -#: engine/vibes_auth/models.py:141 -msgid "user" -msgstr "用户" - -#: engine/vibes_auth/models.py:142 +#: engine/vibes_auth/models.py:147 msgid "users" msgstr "用户" -#: engine/vibes_auth/models.py:149 +#: engine/vibes_auth/models.py:154 msgid "For anonymous threads" msgstr "匿名主题" -#: engine/vibes_auth/models.py:173 +#: engine/vibes_auth/models.py:178 msgid "Chat thread" msgstr "聊天主题" -#: engine/vibes_auth/models.py:174 +#: engine/vibes_auth/models.py:179 msgid "Chat threads" msgstr "聊天主题" -#: engine/vibes_auth/models.py:180 +#: engine/vibes_auth/models.py:185 msgid "provide user or email for anonymous thread." msgstr "为匿名主题提供用户或电子邮件。" -#: engine/vibes_auth/models.py:183 +#: engine/vibes_auth/models.py:188 msgid "assignee must be a staff user." msgstr "受让人必须是工作人员用户。" -#: engine/vibes_auth/models.py:201 +#: engine/vibes_auth/models.py:206 msgid "Chat message" msgstr "聊天信息" -#: engine/vibes_auth/models.py:202 +#: engine/vibes_auth/models.py:207 msgid "Chat messages" msgstr "聊天信息" -#: engine/vibes_auth/models.py:208 +#: engine/vibes_auth/models.py:213 msgid "group" msgstr "组别" -#: engine/vibes_auth/models.py:215 +#: engine/vibes_auth/models.py:220 msgid "outstanding token" msgstr "出色的代币" -#: engine/vibes_auth/models.py:216 +#: engine/vibes_auth/models.py:221 msgid "outstanding tokens" msgstr "未兑代币" -#: engine/vibes_auth/models.py:222 +#: engine/vibes_auth/models.py:227 msgid "blacklisted token" msgstr "黑名单令牌" -#: engine/vibes_auth/models.py:223 +#: engine/vibes_auth/models.py:228 msgid "blacklisted tokens" msgstr "黑名单令牌" @@ -474,8 +809,7 @@ msgstr "你好%(user_first_name)s," #: engine/vibes_auth/templates/user_reset_password_email.html:92 msgid "" -"we have received a request to reset your password. please reset your " -"password\n" +"we have received a request to reset your password. please reset your password\n" " by clicking the button below:" msgstr "我们收到了重置密码的请求。请点击下面的按钮重置密码:" @@ -549,32 +883,28 @@ msgstr "{settings.PROJECT_NAME}| 重置密码" msgid "" "invalid phone number format. the number must be entered in the format: " "\"+999999999\". up to 15 digits allowed." -msgstr "" -"电话号码格式无效。电话号码必须按格式输入:\"+999999999\".最多允许 15 位数字。" +msgstr "电话号码格式无效。电话号码必须按格式输入:\"+999999999\".最多允许 15 位数字。" #: engine/vibes_auth/views.py:34 msgid "" -"Represents a view for getting a pair of access and refresh tokens and user's " -"data. This view manages the process of handling token-based authentication " +"Represents a view for getting a pair of access and refresh tokens and user's" +" data. This view manages the process of handling token-based authentication " "where clients can get a pair of JWT tokens (access and refresh) using " "provided credentials. It is built on top of a base token view and ensures " "proper rate limiting to protect against brute force attacks." msgstr "" -"代表用于获取一对访问和刷新令牌以及用户数据的视图。该视图管理处理基于令牌的身" -"份验证的流程,客户端可使用提供的凭据获取一对 JWT 令牌(访问和刷新)。它建立在" -"基本令牌视图之上,并确保适当的速率限制,以防止暴力攻击。" +"代表用于获取一对访问和刷新令牌以及用户数据的视图。该视图管理处理基于令牌的身份验证的流程,客户端可使用提供的凭据获取一对 JWT " +"令牌(访问和刷新)。它建立在基本令牌视图之上,并确保适当的速率限制,以防止暴力攻击。" #: engine/vibes_auth/views.py:58 msgid "" -"Handles refreshing of tokens for authentication purposes. This class is used " -"to provide functionality for token refresh operations as part of an " -"authentication system. It ensures that clients can request a refreshed token " -"within defined rate limits. The view relies on the associated serializer to " -"validate token refresh inputs and produce appropriate outputs." +"Handles refreshing of tokens for authentication purposes. This class is used" +" to provide functionality for token refresh operations as part of an " +"authentication system. It ensures that clients can request a refreshed token" +" within defined rate limits. The view relies on the associated serializer to" +" validate token refresh inputs and produce appropriate outputs." msgstr "" -"处理刷新令牌以进行身份验证。该类用于为作为身份验证系统一部分的令牌刷新操作提" -"供功能。它能确保客户端在规定的速率限制内请求刷新令牌。视图依赖于相关的序列化" -"器来验证令牌刷新输入并产生适当的输出。" +"处理刷新令牌以进行身份验证。该类用于为作为身份验证系统一部分的令牌刷新操作提供功能。它能确保客户端在规定的速率限制内请求刷新令牌。视图依赖于相关的序列化器来验证令牌刷新输入并产生适当的输出。" #: engine/vibes_auth/views.py:83 msgid "" @@ -589,15 +919,10 @@ msgstr "令牌无效" #: engine/vibes_auth/viewsets.py:44 msgid "" "User view set implementation.\n" -"Provides a set of actions that manage user-related data such as creation, " -"retrieval, updates, deletion, and custom actions including password reset, " -"avatar upload, account activation, and recently viewed items merging. This " -"class extends the mixins and GenericViewSet for robust API handling." +"Provides a set of actions that manage user-related data such as creation, retrieval, updates, deletion, and custom actions including password reset, avatar upload, account activation, and recently viewed items merging. This class extends the mixins and GenericViewSet for robust API handling." msgstr "" "用户视图集实施。\n" -"该类提供了一组操作,用于管理用户相关数据,如创建、检索、更新、删除以及自定义" -"操作,包括密码重置、上传头像、激活账户和合并最近查看的项目。该类对 mixins 和 " -"GenericViewSet 进行了扩展,以实现强大的 API 处理功能。" +"该类提供了一组操作,用于管理用户相关数据,如创建、检索、更新、删除以及自定义操作,包括密码重置、上传头像、激活账户和合并最近查看的项目。该类对 mixins 和 GenericViewSet 进行了扩展,以实现强大的 API 处理功能。" #: engine/vibes_auth/viewsets.py:113 msgid "password reset successfully" diff --git a/engine/vibes_auth/messaging/auth.py b/engine/vibes_auth/messaging/auth.py index 1b7d959a..e5ee571b 100644 --- a/engine/vibes_auth/messaging/auth.py +++ b/engine/vibes_auth/messaging/auth.py @@ -34,7 +34,7 @@ class JWTAuthMiddleware(BaseMiddleware): class _Req: def __init__(self, token_str: str): - self.META = {"HTTP_X_EVIBES_AUTH": f"Bearer {token_str}"} + self.META = {"HTTP_X_SCHON_AUTH": f"Bearer {token_str}"} result = jwt_auth.authenticate(_Req(token)) # ty: ignore[invalid-argument-type] user = result[0] if result else None diff --git a/engine/vibes_auth/migrations/0007_emailimage_emailtemplate_user_unsubscribe_token_and_more.py b/engine/vibes_auth/migrations/0007_emailimage_emailtemplate_user_unsubscribe_token_and_more.py new file mode 100644 index 00000000..5b0d1ee0 --- /dev/null +++ b/engine/vibes_auth/migrations/0007_emailimage_emailtemplate_user_unsubscribe_token_and_more.py @@ -0,0 +1,438 @@ +# Generated by Django 5.2.9 on 2026-01-26 12:33 + +import uuid + +import django.db.models.deletion +import django_extensions.db.fields +from django.conf import settings +from django.db import migrations, models + +import engine.vibes_auth.emailing.models + + +class Migration(migrations.Migration): + dependencies = [ + ("vibes_auth", "0006_chatthread_chatmessage_and_more"), + ] + + operations = [ + migrations.CreateModel( + name="EmailImage", + fields=[ + ( + "uuid", + models.UUIDField( + default=uuid.uuid4, + editable=False, + help_text="unique id is used to surely identify any database object", + primary_key=True, + serialize=False, + verbose_name="unique id", + ), + ), + ( + "is_active", + models.BooleanField( + default=True, + help_text="if set to false, this object can't be seen by users without needed permission", + verbose_name="is active", + ), + ), + ( + "created", + django_extensions.db.fields.CreationDateTimeField( + auto_now_add=True, + help_text="when the object first appeared on the database", + verbose_name="created", + ), + ), + ( + "modified", + django_extensions.db.fields.ModificationDateTimeField( + auto_now=True, + help_text="when the object was last modified", + verbose_name="modified", + ), + ), + ( + "name", + models.CharField( + help_text="descriptive name for the image", + max_length=100, + verbose_name="name", + ), + ), + ( + "image", + models.ImageField( + help_text="image file to use in email templates", + upload_to=engine.vibes_auth.emailing.models.get_email_image_path, + verbose_name="image", + ), + ), + ( + "alt_text", + models.CharField( + blank=True, + default="", + help_text="alternative text for accessibility", + max_length=255, + verbose_name="alt text", + ), + ), + ], + options={ + "verbose_name": "email image", + "verbose_name_plural": "email images", + "ordering": ("-created",), + }, + ), + migrations.CreateModel( + name="EmailTemplate", + fields=[ + ( + "uuid", + models.UUIDField( + default=uuid.uuid4, + editable=False, + help_text="unique id is used to surely identify any database object", + primary_key=True, + serialize=False, + verbose_name="unique id", + ), + ), + ( + "is_active", + models.BooleanField( + default=True, + help_text="if set to false, this object can't be seen by users without needed permission", + verbose_name="is active", + ), + ), + ( + "created", + django_extensions.db.fields.CreationDateTimeField( + auto_now_add=True, + help_text="when the object first appeared on the database", + verbose_name="created", + ), + ), + ( + "modified", + django_extensions.db.fields.ModificationDateTimeField( + auto_now=True, + help_text="when the object was last modified", + verbose_name="modified", + ), + ), + ( + "name", + models.CharField( + help_text="internal name for the template", + max_length=100, + verbose_name="name", + ), + ), + ( + "slug", + models.SlugField( + help_text="unique identifier for the template", + unique=True, + verbose_name="slug", + ), + ), + ( + "subject", + models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + verbose_name="subject", + ), + ), + ( + "html_content", + models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + verbose_name="HTML content", + ), + ), + ( + "plain_content", + models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + verbose_name="plain text content", + ), + ), + ( + "available_variables", + models.TextField( + blank=True, + default="user.first_name, user.last_name, user.email, project_name, unsubscribe_url", + help_text="documentation of available template variables", + verbose_name="available variables", + ), + ), + ], + options={ + "verbose_name": "email template", + "verbose_name_plural": "email templates", + "ordering": ("name",), + }, + ), + migrations.AddField( + model_name="user", + name="unsubscribe_token", + field=models.UUIDField( + default=uuid.uuid4, + help_text="token for secure one-click unsubscribe from campaigns", + verbose_name="unsubscribe token", + ), + ), + migrations.CreateModel( + name="EmailCampaign", + fields=[ + ( + "uuid", + models.UUIDField( + default=uuid.uuid4, + editable=False, + help_text="unique id is used to surely identify any database object", + primary_key=True, + serialize=False, + verbose_name="unique id", + ), + ), + ( + "is_active", + models.BooleanField( + default=True, + help_text="if set to false, this object can't be seen by users without needed permission", + verbose_name="is active", + ), + ), + ( + "created", + django_extensions.db.fields.CreationDateTimeField( + auto_now_add=True, + help_text="when the object first appeared on the database", + verbose_name="created", + ), + ), + ( + "modified", + django_extensions.db.fields.ModificationDateTimeField( + auto_now=True, + help_text="when the object was last modified", + verbose_name="modified", + ), + ), + ( + "name", + models.CharField( + help_text="internal name for the campaign", + max_length=200, + verbose_name="name", + ), + ), + ( + "status", + models.CharField( + choices=[ + ("draft", "Draft"), + ("scheduled", "Scheduled"), + ("sending", "Sending"), + ("sent", "Sent"), + ("cancelled", "Cancelled"), + ], + default="draft", + max_length=16, + verbose_name="status", + ), + ), + ( + "scheduled_at", + models.DateTimeField( + blank=True, + help_text="when to send the campaign (leave empty for manual send)", + null=True, + verbose_name="scheduled at", + ), + ), + ( + "sent_at", + models.DateTimeField( + blank=True, + help_text="when the campaign was actually sent", + null=True, + verbose_name="sent at", + ), + ), + ( + "total_recipients", + models.PositiveIntegerField( + default=0, verbose_name="total recipients" + ), + ), + ( + "sent_count", + models.PositiveIntegerField(default=0, verbose_name="sent count"), + ), + ( + "failed_count", + models.PositiveIntegerField(default=0, verbose_name="failed count"), + ), + ( + "opened_count", + models.PositiveIntegerField(default=0, verbose_name="opened count"), + ), + ( + "clicked_count", + models.PositiveIntegerField( + default=0, verbose_name="clicked count" + ), + ), + ( + "template", + models.ForeignKey( + help_text="email template to use for this campaign", + null=True, + on_delete=django.db.models.deletion.SET_NULL, + related_name="campaigns", + to="vibes_auth.emailtemplate", + verbose_name="template", + ), + ), + ], + options={ + "verbose_name": "email campaign", + "verbose_name_plural": "email campaigns", + "ordering": ("-created",), + }, + ), + migrations.CreateModel( + name="CampaignRecipient", + fields=[ + ( + "uuid", + models.UUIDField( + default=uuid.uuid4, + editable=False, + help_text="unique id is used to surely identify any database object", + primary_key=True, + serialize=False, + verbose_name="unique id", + ), + ), + ( + "is_active", + models.BooleanField( + default=True, + help_text="if set to false, this object can't be seen by users without needed permission", + verbose_name="is active", + ), + ), + ( + "created", + django_extensions.db.fields.CreationDateTimeField( + auto_now_add=True, + help_text="when the object first appeared on the database", + verbose_name="created", + ), + ), + ( + "modified", + django_extensions.db.fields.ModificationDateTimeField( + auto_now=True, + help_text="when the object was last modified", + verbose_name="modified", + ), + ), + ( + "status", + models.CharField( + choices=[ + ("pending", "Pending"), + ("sent", "Sent"), + ("failed", "Failed"), + ("opened", "Opened"), + ("clicked", "Clicked"), + ], + default="pending", + max_length=16, + verbose_name="status", + ), + ), + ( + "sent_at", + models.DateTimeField(blank=True, null=True, verbose_name="sent at"), + ), + ( + "opened_at", + models.DateTimeField( + blank=True, null=True, verbose_name="opened at" + ), + ), + ( + "clicked_at", + models.DateTimeField( + blank=True, null=True, verbose_name="clicked at" + ), + ), + ( + "tracking_id", + models.UUIDField( + default=uuid.uuid4, + help_text="unique ID for tracking opens and clicks", + unique=True, + verbose_name="tracking ID", + ), + ), + ( + "error_message", + models.TextField( + blank=True, + default="", + help_text="error details if sending failed", + verbose_name="error message", + ), + ), + ( + "user", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="campaign_emails", + to=settings.AUTH_USER_MODEL, + verbose_name="user", + ), + ), + ( + "campaign", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="recipients", + to="vibes_auth.emailcampaign", + verbose_name="campaign", + ), + ), + ], + options={ + "verbose_name": "campaign recipient", + "verbose_name_plural": "campaign recipients", + "ordering": ("-created",), + "indexes": [ + models.Index( + fields=["campaign", "status"], name="recipient_camp_status_idx" + ), + models.Index(fields=["tracking_id"], name="recipient_tracking_idx"), + ], + }, + ), + migrations.AddIndex( + model_name="emailcampaign", + index=models.Index( + fields=["status", "scheduled_at"], name="campaign_status_sched_idx" + ), + ), + ] diff --git a/engine/vibes_auth/migrations/0008_emailtemplate_html_content_ar_ar_and_more.py b/engine/vibes_auth/migrations/0008_emailtemplate_html_content_ar_ar_and_more.py new file mode 100644 index 00000000..1330778e --- /dev/null +++ b/engine/vibes_auth/migrations/0008_emailtemplate_html_content_ar_ar_and_more.py @@ -0,0 +1,852 @@ +# Generated by Django 5.2.9 on 2026-01-26 12:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("vibes_auth", "0007_emailimage_emailtemplate_user_unsubscribe_token_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="emailtemplate", + name="html_content_ar_ar", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_cs_cz", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_da_dk", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_de_de", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_en_gb", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_en_us", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_es_es", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_fa_ir", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_fr_fr", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_he_il", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_hi_in", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_hr_hr", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_id_id", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_it_it", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_ja_jp", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_kk_kz", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_ko_kr", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_nl_nl", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_no_no", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_pl_pl", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_pt_br", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_ro_ro", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_ru_ru", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_sv_se", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_th_th", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_tr_tr", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_vi_vn", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="html_content_zh_hans", + field=models.TextField( + help_text="email body content - supports {{ user.first_name }}, {{ user.email }}, {{ project_name }}, {{ unsubscribe_url }}", + null=True, + verbose_name="HTML content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_ar_ar", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_cs_cz", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_da_dk", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_de_de", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_en_gb", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_en_us", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_es_es", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_fa_ir", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_fr_fr", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_he_il", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_hi_in", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_hr_hr", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_id_id", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_it_it", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_ja_jp", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_kk_kz", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_ko_kr", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_nl_nl", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_no_no", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_pl_pl", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_pt_br", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_ro_ro", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_ru_ru", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_sv_se", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_th_th", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_tr_tr", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_vi_vn", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="plain_content_zh_hans", + field=models.TextField( + blank=True, + default="", + help_text="plain text fallback (auto-generated if empty)", + null=True, + verbose_name="plain text content", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_ar_ar", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_cs_cz", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_da_dk", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_de_de", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_en_gb", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_en_us", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_es_es", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_fa_ir", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_fr_fr", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_he_il", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_hi_in", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_hr_hr", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_id_id", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_it_it", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_ja_jp", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_kk_kz", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_ko_kr", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_nl_nl", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_no_no", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_pl_pl", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_pt_br", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_ro_ro", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_ru_ru", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_sv_se", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_th_th", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_tr_tr", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_vi_vn", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + migrations.AddField( + model_name="emailtemplate", + name="subject_zh_hans", + field=models.CharField( + help_text="email subject line - supports {{ variables }}", + max_length=255, + null=True, + verbose_name="subject", + ), + ), + ] diff --git a/engine/vibes_auth/models.py b/engine/vibes_auth/models.py index 13df78d8..9c2d2495 100644 --- a/engine/vibes_auth/models.py +++ b/engine/vibes_auth/models.py @@ -90,6 +90,11 @@ class User(AbstractUser, NiceModel): ) activation_token = UUIDField(default=uuid4, verbose_name=_("activation token")) + unsubscribe_token = UUIDField( + default=uuid4, + verbose_name=_("unsubscribe token"), + help_text=_("token for secure one-click unsubscribe from campaigns"), + ) language = CharField( choices=settings.LANGUAGES, default=settings.LANGUAGE_CODE, diff --git a/engine/vibes_auth/tests/test_drf.py b/engine/vibes_auth/tests/test_drf.py index 4adaab28..ece3809e 100644 --- a/engine/vibes_auth/tests/test_drf.py +++ b/engine/vibes_auth/tests/test_drf.py @@ -184,7 +184,7 @@ class DRFAuthViewsTests(TestCase): access = str(RefreshToken.for_user(stranger).access_token) # noinspection PyUnresolvedReferences - cast(Any, self.client).credentials(HTTP_X_EVIBES_AUTH=f"Bearer {access}") + cast(Any, self.client).credentials(HTTP_X_SCHON_AUTH=f"Bearer {access}") url = reverse( "vibes_auth:users-upload-avatar", kwargs={"pk": cast(Any, owner).pk} @@ -214,7 +214,7 @@ class DRFAuthViewsTests(TestCase): access = str(RefreshToken.for_user(stranger).access_token) # noinspection PyUnresolvedReferences - cast(Any, self.client).credentials(HTTP_X_EVIBES_AUTH=f"Bearer {access}") + cast(Any, self.client).credentials(HTTP_X_SCHON_AUTH=f"Bearer {access}") url = reverse( "vibes_auth:users-merge-recently-viewed", diff --git a/engine/vibes_auth/translation.py b/engine/vibes_auth/translation.py new file mode 100644 index 00000000..04626ad0 --- /dev/null +++ b/engine/vibes_auth/translation.py @@ -0,0 +1,9 @@ +from modeltranslation.decorators import register +from modeltranslation.translator import TranslationOptions + +from engine.vibes_auth.emailing import EmailTemplate + + +@register(EmailTemplate) +class EmailTemplateOptions(TranslationOptions): + fields = ("subject", "html_content", "plain_content") diff --git a/engine/vibes_auth/urls.py b/engine/vibes_auth/urls.py index fda031f4..563a49ca 100644 --- a/engine/vibes_auth/urls.py +++ b/engine/vibes_auth/urls.py @@ -19,5 +19,8 @@ urlpatterns = [ path(r"refresh/", TokenRefreshView.as_view(), name="token_refresh"), path(r"verify/", TokenVerifyView.as_view(), name="token_verify"), path(r"", include(auth_router.urls)), + path( + r"emailing/", include("engine.vibes_auth.emailing.urls", namespace="emailing") + ), *messaging_urlpatters, ] diff --git a/evibes/locale/th_TH/LC_MESSAGES/django.po b/evibes/locale/th_TH/LC_MESSAGES/django.po deleted file mode 100644 index 5059f2e1..00000000 --- a/evibes/locale/th_TH/LC_MESSAGES/django.po +++ /dev/null @@ -1,263 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: th-th\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: evibes/settings/constance.py:24 -msgid "Name of the company" -msgstr "ชื่อบริษัท" - -#: evibes/settings/constance.py:25 -msgid "Address of the company" -msgstr "ที่อยู่ของบริษัท" - -#: evibes/settings/constance.py:28 -msgid "Phone number of the company" -msgstr "หมายเลขโทรศัพท์ของบริษัท" - -#: evibes/settings/constance.py:35 -msgid "" -"Tax rate in jurisdiction of your company. Leave 0 if you don't want to " -"process taxes." -msgstr "" -"อัตราภาษีในเขตอำนาจศาลของบริษัทของคุณ. ให้เป็น 0 " -"หากคุณไม่ต้องการดำเนินการภาษี." - -#: evibes/settings/constance.py:44 -msgid "Shows if the taxes are already included in product's selling prices" -msgstr "แสดงว่าภาษีรวมอยู่ในราคาขายของสินค้าแล้วหรือไม่" - -#: evibes/settings/constance.py:52 -msgid "Exchange rate API key" -msgstr "คีย์ API อัตราแลกเปลี่ยน" - -#: evibes/settings/constance.py:58 -msgid "!!!DO NOT CHANGE!!!" -msgstr "!!!ห้ามเปลี่ยนแปลง!!!" - -#: evibes/settings/constance.py:60 -msgid "SMTP host" -msgstr "โฮสต์ SMTP" - -#: evibes/settings/constance.py:61 -msgid "SMTP port" -msgstr "พอร์ต SMTP" - -#: evibes/settings/constance.py:62 -msgid "Use TLS" -msgstr "ใช้ TLS" - -#: evibes/settings/constance.py:63 -msgid "Use SSL" -msgstr "ใช้ SSL" - -#: evibes/settings/constance.py:66 -msgid "SMTP username" -msgstr "ชื่อผู้ใช้ SMTP" - -#: evibes/settings/constance.py:70 -msgid "SMTP password" -msgstr "รหัสผ่าน SMTP" - -#: evibes/settings/constance.py:72 -msgid "Mail from option" -msgstr "จดหมายจากตัวเลือก" - -#: evibes/settings/constance.py:76 -msgid "How many days we store messages from anonymous users" -msgstr "เราเก็บข้อความจากผู้ใช้ที่ไม่ระบุตัวตนไว้กี่วัน" - -#: evibes/settings/constance.py:80 -msgid "How many days we store messages from authenticated users" -msgstr "เราเก็บข้อความจากผู้ใช้ที่ผ่านการยืนยันตัวตนไว้กี่วัน" - -#: evibes/settings/constance.py:84 -msgid "Disable buy functionality" -msgstr "ปิดการใช้งานฟังก์ชันการซื้อ" - -#: evibes/settings/constance.py:88 -msgid "OpenStreetMap Nominatim API URL" -msgstr "URL ของ API OpenStreetMap Nominatim" - -#: evibes/settings/constance.py:92 -msgid "OpenAI API Key" -msgstr "คีย์ API ของ OpenAI" - -#: evibes/settings/constance.py:96 -msgid "Abstract API Key" -msgstr "คีย์ API แบบนามธรรม" - -#: evibes/settings/constance.py:104 -msgid "HTTP Proxy" -msgstr "HTTP พร็อกซี" - -#: evibes/settings/constance.py:112 -msgid "An entity for storing advertisiment data" -msgstr "หน่วยงานสำหรับเก็บข้อมูลโฆษณา" - -#: evibes/settings/constance.py:120 -msgid "An entity for storing analytics data" -msgstr "หน่วยงานสำหรับเก็บข้อมูลการวิเคราะห์" - -#: evibes/settings/constance.py:125 -msgid "Save responses from vendors' APIs" -msgstr "บันทึกการตอบกลับจาก API ของผู้ขาย" - -#: evibes/settings/constance.py:126 -msgid "Backup database" -msgstr "ฐานข้อมูลสำรอง" - -#: evibes/settings/constance.py:127 -msgid "Backup media" -msgstr "สื่อสำรองข้อมูล" - -#: evibes/settings/constance.py:133 -msgid "Legal Options" -msgstr "ทางเลือกทางกฎหมาย" - -#: evibes/settings/constance.py:141 -msgid "Email Options" -msgstr "ตัวเลือกอีเมล" - -#: evibes/settings/constance.py:151 -msgid "Features Options" -msgstr "คุณสมบัติ ตัวเลือก" - -#: evibes/settings/constance.py:160 -msgid "SEO Options" -msgstr "ตัวเลือก SEO" - -#: evibes/settings/constance.py:164 -msgid "System Options" -msgstr "ตัวเลือกระบบ" - -#: evibes/settings/drf.py:51 -#, python-brace-format -msgid "" -"\n" -"Welcome to the eVibes documentation.\n" -"\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" -"\n" -"## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" -"\n" -"## Available APIs\n" -"- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" -"\n" -"## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" -"- Access token lifetime is {access_lifetime} {access_unit}.\n" -"- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" -"\n" -"## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" -"- Available languages can be retrieved from the `/app/languages/` endpoint.\n" -"- All user-facing content supports multiple languages out of the box.\n" -"\n" -"## Response Formats\n" -"The API supports multiple response formats:\n" -"- **JSON** (default, camelCase formatted)\n" -"- **XML** (add `?format=xml` or set `Accept: application/xml`)\n" -"- **YAML** (add `?format=yaml` or set `Accept: application/x-yaml`)\n" -"\n" -"## Health & Monitoring\n" -"- Health checks: `/health/`\n" -"- Prometheus metrics: `/prometheus/metrics/`\n" -"\n" -"## Version\n" -"Current API version: {version}\n" -msgstr "" -"\nยินดีต้อนรับสู่เอกสารคู่มือของ eVibes eVibes เป็นแพลตฟอร์มอีคอมเมิร์ซที่ทรงพลังซึ่งช่วยให้คุณสามารถเปิดตัวและจัดการร้านค้าออนไลน์ได้ทุกประเภทเพียงแค่ไม่กี่คลิก ## คุณสมบัติหลัก - **แคตตาล็อกสินค้า:** จัดการรายละเอียดสินค้า ราคาสินค้า สินค้าคงคลัง และความพร้อมจำหน่ายในหลายหมวดหมู่ - **การจัดการคำสั่งซื้อ:** ประมวลผลคำสั่งซื้อ ติดตามการจัดส่ง และจัดการคำขอของลูกค้าอย่างมีประสิทธิภาพ\n" -"- **การตรวจสอบสิทธิ์และการอนุญาต:** การตรวจสอบสิทธิ์ผู้ใช้อย่างครอบคลุมด้วยโทเค็น JWT และสิทธิ์ตามบทบาท - **การประมวลผลการชำระเงิน:** ผสานรวมเกตเวย์การชำระเงินหลายช่องทางและจัดการธุรกรรมอย่างปลอดภัย - **การจัดการบล็อกและเนื้อหา:** สร้างและจัดการโพสต์บล็อกและเนื้อหาการตลาดสำหรับร้านค้าของคุณ - **การดำเนินงาน B2B:** จุดสิ้นสุดเฉพาะสำหรับการทำธุรกรรมระหว่างธุรกิจและการจัดการขายส่ง\n" -"- **รองรับหลายภาษา:** ให้บริการลูกค้าทั่วโลกด้วยความสามารถในการรองรับภาษาสากลอย่างเต็มรูปแบบ (i18n) - **การผสานระบบแบบกำหนดเอง:** สถาปัตยกรรม API ที่สามารถขยายได้สำหรับการผสานกับแพลตฟอร์มและบริการภายนอก - **การวิเคราะห์และรายงาน:** สร้างรายงานละเอียดเกี่ยวกับยอดขาย, สินค้าคงคลัง, และพฤติกรรมของลูกค้า - **การอัปเดตแบบเรียลไทม์:** รับข้อมูลสดเกี่ยวกับระดับสินค้าคงคลัง, สถานะการสั่งซื้อ, และการเปลี่ยนแปลงราคา\n" -"\n" -"## API ที่มีให้บริการ - **REST API:** อินเทอร์เฟซ RESTful แบบเต็มรูปแบบ (เอกสารนี้) - **GraphQL API:** สามารถใช้งานได้ที่ `/graphql/` พร้อมอินเทอร์เฟซ GraphiQL สำหรับการสืบค้นแบบโต้ตอบ ## การยืนยันตัวตน - การยืนยันตัวตนดำเนินการผ่านโทเค็น JWT โปรดใส่โทเค็นในหัวข้อ `X-EVIBES-AUTH` ของคำขอของคุณในรูปแบบ `Bearer `\n" -"- ระยะเวลาการใช้งานของโทเค็นการเข้าถึงคือ {access_lifetime} {access_unit}. - ระยะเวลาการใช้งานของโทเค็นการรีเฟรชคือ {refresh_hours} ชั่วโมง. - โทเค็นการรีเฟรชจะถูกหมุนเวียนและยกเลิกการใช้งานโดยอัตโนมัติหลังการใช้งานเพื่อเพิ่มความปลอดภัย. ## การแปลภาษา (i18n) - ตั้งค่าหัวข้อ `Accept-Language` เพื่อระบุภาษาที่คุณต้องการ (เช่น `Accept-Language: en-US`).\n" -"- ภาษาที่มีให้บริการสามารถดึงข้อมูลได้จากจุดสิ้นสุด `/app/languages/` - เนื้อหาที่แสดงต่อผู้ใช้ทั้งหมดรองรับหลายภาษาโดยอัตโนมัติ ## รูปแบบการตอบกลับ API รองรับรูปแบบการตอบกลับหลายรูปแบบ: - **JSON** (ค่าเริ่มต้น, รูปแบบ camelCase) - **XML** (เพิ่ม `?format=xml` หรือตั้งค่า `Accept: application/xml`)\n" -"- **YAML** (เพิ่ม `?format=yaml` หรือตั้งค่า `Accept: application/x-yaml`) ## สุขภาพและการตรวจสอบ - การตรวจสอบสุขภาพ: `/health/` - เมตริก Prometheus: `/prometheus/metrics/` ## เวอร์ชัน เวอร์ชัน API ปัจจุบัน: {version}\n" - -#: evibes/settings/unfold.py:28 -msgid "My site" -msgstr "เว็บไซต์ของฉัน" - -#: evibes/settings/unfold.py:36 -msgid "Health" -msgstr "สุขภาพ" - -#: evibes/settings/unfold.py:40 -msgid "Support" -msgstr "การสนับสนุน" - -#: evibes/settings/unfold.py:77 -msgid "Menu" -msgstr "เมนู" - -#: evibes/settings/unfold.py:82 -msgid "Dashboard" -msgstr "แดชบอร์ด" - -#: evibes/settings/unfold.py:87 -msgid "Config" -msgstr "การกำหนดค่า" - -#: evibes/settings/unfold.py:92 -msgid "Periodic Tasks" -msgstr "งานประจำ" - -#: evibes/settings/unfold.py:119 -msgid "Taskboard" -msgstr "กระดานงาน" - -#: evibes/settings/unfold.py:131 -msgid "Quick Links" -msgstr "ลิงก์ด่วน" - -#: evibes/settings/unfold.py:136 -msgid "Users" -msgstr "ผู้ใช้" - -#: evibes/settings/unfold.py:141 -msgid "Groups" -msgstr "กลุ่ม" - -#: evibes/settings/unfold.py:146 -msgid "Orders" -msgstr "คำสั่ง" - -#: evibes/settings/unfold.py:151 -msgid "Products" -msgstr "ผลิตภัณฑ์" - -#: evibes/settings/unfold.py:156 -msgid "Categories" -msgstr "หมวดหมู่" - -#: evibes/settings/unfold.py:161 -msgid "Brands" -msgstr "แบรนด์" - -#: evibes/settings/unfold.py:166 -msgid "Blogposts" -msgstr "บทความบล็อก" diff --git a/evibes/settings/graphene.py b/evibes/settings/graphene.py deleted file mode 100644 index e46bd3e7..00000000 --- a/evibes/settings/graphene.py +++ /dev/null @@ -1,13 +0,0 @@ -from evibes.settings.base import DEBUG - -GRAPHENE = { - "MIDDLEWARE": [ - "evibes.middleware.GrapheneLoggingErrorsDebugMiddleware", - "evibes.middleware.GrapheneJWTAuthorizationMiddleware", - ] - if DEBUG - else [ - "evibes.middleware.GrapheneJWTAuthorizationMiddleware", - ], - "CAMELCASE_ERRORS": True, -} diff --git a/evibes/settings/summernote.py b/evibes/settings/summernote.py deleted file mode 100644 index f7f4edf0..00000000 --- a/evibes/settings/summernote.py +++ /dev/null @@ -1,23 +0,0 @@ -from evibes.utils import evibes_summernote_upload_to_func - -SUMMERNOTE_THEME = "bs4" -SUMMERNOTE_CONFIG = { - "iframe": True, - "summernote": { - "lang": None, - "toolbar": [ - ["style", ["style"]], - ["font", ["bold", "underline", "clear"]], - ["fontname", ["fontname"]], - ["color", ["color"]], - ["para", ["ul", "ol", "paragraph"]], - ["table", ["table"]], - ["insert", ["link", "picture", "video"]], - ["view", ["fullscreen", "codeview", "help"]], - ], - }, - "attachment_upload_to": evibes_summernote_upload_to_func, - "attachment_require_authentication": True, - "disable_attachment": False, - "attachment_absolute_uri": True, -} diff --git a/lessy.py b/lessy.py deleted file mode 100755 index b7a63d1b..00000000 --- a/lessy.py +++ /dev/null @@ -1,144 +0,0 @@ -#!/usr/bin/env python3 -import platform -import subprocess -import sys -from pathlib import Path - -import click - -OS = platform.system().lower() -SCRIPT_EXT = ".ps1" if OS == "windows" else ".sh" -SCRIPT_DIR = "Windows" if OS == "windows" else "Unix" -PROJECT_ROOT = Path(__file__).parent.absolute() -SCRIPTS_PATH = PROJECT_ROOT / "scripts" / SCRIPT_DIR - - -def get_script_path(command: str) -> Path: - return SCRIPTS_PATH / f"{command}{SCRIPT_EXT}" - - -def run_script(script_name: str, *args) -> int: - script_path = get_script_path(script_name) - - if not script_path.exists(): - click.secho( - f"Error: Script '{script_name}' not found at {script_path}", - fg="red", - err=True, - ) - return 1 - - if OS == "windows": - cmd = ["pwsh", "-File", str(script_path)] - else: - cmd = ["bash", str(script_path)] - - cmd.extend(args) - - try: - result = subprocess.run(cmd, cwd=PROJECT_ROOT) - return result.returncode - except FileNotFoundError: - shell_name = "PowerShell" if OS == "windows" else "bash" - click.secho( - f"Error: {shell_name} not found. Please ensure it's installed.", - fg="red", - err=True, - ) - return 127 - except KeyboardInterrupt: - click.secho("\nOperation cancelled by user.", fg="yellow") - return 130 - - -@click.group( - context_settings={"help_option_names": ["-h", "--help"]}, - invoke_without_command=True, -) -@click.pass_context -def cli(ctx): - if ctx.invoked_subcommand is None: - click.echo(ctx.get_help()) - - -@cli.command() -def install(): - return sys.exit(run_script("install")) - - -@cli.command() -def run(): - return sys.exit(run_script("run")) - - -@cli.command() -def restart(): - return sys.exit(run_script("restart")) - - -@cli.command() -@click.option( - "-r", - "--report", - type=click.Choice(["xml", "html"]), - help="Generate coverage report (xml or html)", -) -def test(report): - args = [] - if report: - args.extend(["-r", report]) - return sys.exit(run_script("test", *args)) - - -@cli.command() -def uninstall(): - if click.confirm( - "This will remove all Docker containers, volumes, and generated files. Continue?" - ): - return sys.exit(run_script("uninstall")) - else: - click.secho("Uninstall cancelled.", fg="yellow") - return 0 - - -@cli.command() -def backup(): - return sys.exit(run_script("backup")) - - -@cli.command(name="generate-env") -def generate_env(): - return sys.exit(run_script("generate-environment-file")) - - -@cli.command(name="export-env") -def export_env(): - return sys.exit(run_script("export-environment-file")) - - -@cli.command(name="make-messages") -def make_messages(): - return sys.exit(run_script("make-messages")) - - -@cli.command(name="compile-messages") -def compile_messages(): - return sys.exit(run_script("compile-messages")) - - -@cli.command() -def info(): - click.echo(f"{'=' * 60}") - click.secho("lessy - eVibes Project CLI", fg="cyan", bold=True) - click.echo(f"{'=' * 60}") - click.echo(f"Operating System: {platform.system()} ({platform.release()})") - click.echo(f"Python Version: {platform.python_version()}") - click.echo(f"Architecture: {platform.machine()}") - click.echo(f"Project Root: {PROJECT_ROOT}") - click.echo(f"Scripts Directory: {SCRIPTS_PATH}") - click.echo(f"Script Extension: {SCRIPT_EXT}") - click.echo(f"{'=' * 60}") - - -if __name__ == "__main__": - cli() diff --git a/manage.py b/manage.py index b47af148..ff562895 100644 --- a/manage.py +++ b/manage.py @@ -7,7 +7,7 @@ import sys def main(): """Run administrative tasks.""" - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "evibes.settings") + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "schon.settings") try: from django.core.management import execute_from_command_line except ImportError as exc: diff --git a/monitoring/web.yml b/monitoring/web.yml index 93429ab9..77702174 100644 --- a/monitoring/web.yml +++ b/monitoring/web.yml @@ -1,2 +1,2 @@ basic_auth_users: - evibes: $2b$12$0HraDYmrZnJ089LcH9Vsn.Wv5V5a8oDlucTNm0.5obhULjPyLiYoy + schon: $2b$12$0HraDYmrZnJ089LcH9Vsn.Wv5V5a8oDlucTNm0.5obhULjPyLiYoy diff --git a/nginx.conf b/nginx.example.conf similarity index 76% rename from nginx.conf rename to nginx.example.conf index 22af2b6c..68b9b04e 100644 --- a/nginx.conf +++ b/nginx.example.conf @@ -12,10 +12,10 @@ upstream storefront_frontend { server { listen 443 ssl http2; - server_name api.evibes.com; + server_name api.schon.fureunoir.com; - ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; + ssl_certificate /etc/letsencrypt/live/schon.fureunoir.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/schon.fureunoir.com/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; ssl_session_cache shared:SSL:10m; @@ -42,40 +42,40 @@ server { location /favicon.ico { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + root /var/jenkins/workspace/schon/static; } location = /robots.txt { add_header Access-Control-Allow-Origin "*"; - alias /var/jenkins/workspace/evibes/static/robots_backend.txt; + alias /var/jenkins/workspace/schon/static/robots_backend.txt; default_type text/plain; } location /static/ { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes; + root /var/jenkins/workspace/schon; } location /media/ { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes; + root /var/jenkins/workspace/schon; } error_page 500 502 503 504 /maintenance.html; location = /maintenance.html { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + root /var/jenkins/workspace/schon/static; internal; } } server { listen 443 ssl http2; - server_name evibes.com www.evibes.com; + server_name schon.fureunoir.com www.schon.fureunoir.com; - ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; + ssl_certificate /etc/letsencrypt/live/schon.fureunoir.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/schon.fureunoir.com/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; ssl_session_cache shared:SSL:10m; @@ -87,12 +87,12 @@ server { location /favicon.ico { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + root /var/jenkins/workspace/schon/static; } location = /robots.txt { add_header Access-Control-Allow-Origin "*"; - alias /var/jenkins/workspace/evibes/static/robots_frontend.txt; + alias /var/jenkins/workspace/schon/static/robots_frontend.txt; default_type text/plain; } @@ -121,17 +121,17 @@ server { location = /maintenance.html { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + root /var/jenkins/workspace/schon/static; internal; } } server { listen 443 ssl http2; - server_name prometheus.evibes.com; + server_name prometheus.schon.fureunoir.com; - ssl_certificate /etc/letsencrypt/live/evibes.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/evibes.com/privkey.pem; + ssl_certificate /etc/letsencrypt/live/schon.fureunoir.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/schon.fureunoir.com/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; ssl_session_cache shared:SSL:10m; @@ -153,26 +153,26 @@ server { location = /robots.txt { add_header Access-Control-Allow-Origin "*"; - alias /var/jenkins/workspace/evibes/static/robots_backend.txt; + alias /var/jenkins/workspace/schon/static/robots_backend.txt; default_type text/plain; } location /favicon.ico { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + root /var/jenkins/workspace/schon/static; } error_page 500 502 503 504 /maintenance.html; location = /maintenance.html { add_header Access-Control-Allow-Origin "*"; - root /var/jenkins/workspace/evibes/static; + root /var/jenkins/workspace/schon/static; internal; } } server { listen 80; - server_name api.evibes.com www.evibes.com evibes.com prometheus.evibes.com; + server_name api.schon.fureunoir.com www.schon.fureunoir.com schon.fureunoir.com prometheus.schon.fureunoir.com; return 301 https://$host$request_uri; } diff --git a/pyproject.toml b/pyproject.toml index df7713f7..430d5aa8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,43 +1,40 @@ [project] -name = "eVibes" +name = "schon" version = "2026.1" -description = "eVibes — your store without the extra baggage. Everything works out of the box: storefront, product catalog, cart, and orders. Minimal complexity, maximum flexibility — install, adjust to your needs, and start selling." +description = "Schon — your store without the extra baggage. Everything works out of the box: storefront, product catalog, cart, and orders. Minimal complexity, maximum flexibility — install, adjust to your needs, and start selling." authors = [{ name = "fureunoir", email = "contact@fureunoir.com" }] readme = "README.md" requires-python = ">=3.12,<=3.13" dependencies = [ - "aiogram==3.23.0", + "aiogram==3.24.0", "aiosmtpd==1.4.6", "channels==4.3.2", "channels-redis==4.3.0", "colorlog==6.10.1", - "coverage==7.13.1", + "coverage==7.13.2", "click==8.3.1", "cryptography==46.0.3", "django==5.2.9", "django-cacheops==7.2", "django-constance==4.3.4", "django-cors-headers==4.9.0", - "django-dbbackup==5.1.0", + "django-dbbackup==5.1.2", "django-elasticsearch-dsl==8.2", "django-extensions==4.1", "django-filter==25.2", "django-health-check==3.20.8", - "django-import-export[all]==4.3.14", + "django-import-export[all]==4.4.0", "django-json-widget==2.1.1", - "django-mailbox==4.10.1", "django-model-utils==5.0.0", + "django-md-field==0.1.0", "django-modeltranslation==0.19.19", "django-mptt==0.18.0", "django-prometheus==2.4.1", "django-redis==6.0.0", "django-ratelimit==4.1.0", "django-storages==1.14.6", - "django-summernote==0.8.20.0", - "django-unfold==0.74.1", - "django-unfold-markdown==0.1.2", - "django-widget-tweaks==1.5.0", - "django-md-field==0.1.0", + "django-unfold==0.76.0", + "django-widget-tweaks==1.5.1", "djangorestframework==3.16.1", "djangorestframework-recursive==0.1.2", "djangorestframework-simplejwt[crypto]==5.5.1", @@ -49,14 +46,13 @@ dependencies = [ "drf-spectacular-websocket==1.3.1", "drf-orjson-renderer==1.8.0", "elasticsearch-dsl==8.18.0", - "filelock==3.20.1", + "filelock==3.20.3", "filetype==1.2.0", "graphene-django==3.2.3", "graphene-file-upload==1.3.0", - "gunicorn==23.0.0", "httpx==0.28.1", "paramiko==4.0.0", - "pillow==12.0.0", + "pillow==12.1.0", "pip==25.3", "polib==1.2.0", "PyJWT==2.10.1", @@ -64,42 +60,39 @@ dependencies = [ "pytest-django==4.11.1", "python-slugify==8.0.4", "psutil==7.2.1", - "psycopg2-binary==2.9.11", - "pymdown-extensions==10.19.1", + "psycopg[binary]==3.2.9", "redis==7.1.0", "requests==2.32.5", - "sentry-sdk[django,celery,opentelemetry]==2.48.0", + "sentry-sdk[django,celery,opentelemetry]==2.50.0", "six==1.17.0", "swapper==1.4.0", "uvicorn==0.40.0", "zeep==4.3.2", - "websockets==15.0.1", + "websockets==16.0", "whitenoise==6.11.0", ] [project.optional-dependencies] -graph = ["pygraphviz==1.14; sys_platform != 'win32'"] worker = [ - "celery==5.6.0", + "celery==5.6.2", "django-celery-beat==2.8.1", "django-celery-results==2.6.0", - "celery-prometheus-exporter==1.7.0", ] linting = [ - "ty==0.0.7", - "ruff==0.14.10", + "ty==0.0.13", + "ruff==0.14.14", "celery-types==0.24.0", - "django-stubs==5.2.8", - "djangorestframework-stubs==3.16.6", - "types-requests==2.32.4.20250913", + "django-stubs==5.2.9", + "djangorestframework-stubs==3.16.7", + "types-requests==2.32.4.20260107", "types-redis==4.6.0.20241004", "types-paramiko==4.0.0.20250822", - "types-psutil==7.2.0.20251228", + "types-psutil==7.2.1.20260116", "types-pillow==10.2.0.20240822", "types-docutils==0.22.3.20251115", "types-six==1.17.0.20251009", ] -openai = ["openai==2.14.0"] +openai = ["openai==2.15.0"] jupyter = ["jupyter==1.1.1"] [tool.uv] @@ -126,7 +119,7 @@ select = ["E4", "E7", "E9", "F", "B", "Q", "I"] ignore = ["RUF012", "A002", "A003"] [tool.ruff.lint.isort] -known-first-party = ["evibes", "engine"] +known-first-party = ["schon", "engine"] [tool.ruff.format] quote-style = "double" @@ -157,4 +150,4 @@ unsupported-base = "warn" [tool.django-stubs] -django_settings_module = "evibes.settings.__init__" +django_settings_module = "schon.settings.__init__" diff --git a/evibes/__init__.py b/schon/__init__.py similarity index 100% rename from evibes/__init__.py rename to schon/__init__.py diff --git a/evibes/asgi.py b/schon/asgi.py similarity index 85% rename from evibes/asgi.py rename to schon/asgi.py index 73f5b7e4..85ac0bef 100644 --- a/evibes/asgi.py +++ b/schon/asgi.py @@ -1,5 +1,5 @@ """ -ASGI config for the eVibes project with Django Channels. +ASGI config for the Schon project with Django Channels. Exposes the ASGI callable as a module-level variable named ``application``. """ @@ -12,7 +12,7 @@ import django from channels.routing import ProtocolTypeRouter, URLRouter from django.core.asgi import get_asgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "evibes.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "schon.settings") django.setup() from engine.vibes_auth.messaging.auth import JWTAuthMiddlewareStack # noqa: E402 diff --git a/evibes/celery.py b/schon/celery.py similarity index 51% rename from evibes/celery.py rename to schon/celery.py index b8129c57..7542dae8 100644 --- a/evibes/celery.py +++ b/schon/celery.py @@ -2,11 +2,11 @@ import os from celery import Celery -from evibes.celery_serializers import register_orjson +from schon.celery_serializers import register_orjson -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "evibes.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "schon.settings") -app = Celery("evibes") +app = Celery("schon") register_orjson() diff --git a/evibes/celery_serializers.py b/schon/celery_serializers.py similarity index 100% rename from evibes/celery_serializers.py rename to schon/celery_serializers.py diff --git a/evibes/i18n.py b/schon/i18n.py similarity index 100% rename from evibes/i18n.py rename to schon/i18n.py diff --git a/evibes/locale/ar_AR/LC_MESSAGES/django.mo b/schon/locale/ar_AR/LC_MESSAGES/django.mo similarity index 84% rename from evibes/locale/ar_AR/LC_MESSAGES/django.mo rename to schon/locale/ar_AR/LC_MESSAGES/django.mo index 7bf70b54..98639079 100644 Binary files a/evibes/locale/ar_AR/LC_MESSAGES/django.mo and b/schon/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ar_AR/LC_MESSAGES/django.po b/schon/locale/ar_AR/LC_MESSAGES/django.po similarity index 71% rename from evibes/locale/ar_AR/LC_MESSAGES/django.po rename to schon/locale/ar_AR/LC_MESSAGES/django.po index 16e841e4..214dd6a8 100644 --- a/evibes/locale/ar_AR/LC_MESSAGES/django.po +++ b/schon/locale/ar_AR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:59+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "اسم الشركة" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "عنوان الشركة" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "رقم هاتف الشركة" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "معدل الضريبة في الولاية القضائية لشركتك. اترك 0 إذا كنت لا تريد معالجة " "الضرائب." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "يوضح ما إذا كانت الضرائب مشمولة بالفعل في أسعار بيع المنتج" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "مفتاح API لسعر الصرف" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!، لا تتغير!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "مضيف SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "منفذ SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "استخدام TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "استخدام SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "اسم مستخدم SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "كلمة مرور SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "البريد من خيار البريد من" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "عدد الأيام التي نخزن فيها الرسائل من المستخدمين المجهولين" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "عدد الأيام التي نخزن فيها الرسائل من المستخدمين الموثقين" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "تعطيل وظيفة الشراء" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "عنوان URL الخاص بواجهة برمجة تطبيقات OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "مفتاح واجهة برمجة تطبيقات OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "مفتاح واجهة برمجة التطبيقات المجردة" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "وكيل HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "كيان لتخزين بيانات الإعلانات" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "كيان لتخزين بيانات التحليلات" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "حفظ الاستجابات من واجهات برمجة تطبيقات البائعين" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "قاعدة البيانات الاحتياطية" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "وسائط النسخ الاحتياطي" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "الخيارات القانونية" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "خيارات البريد الإلكتروني" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "خيارات الميزات" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "خيارات تحسين محركات البحث" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "خيارات النظام" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,34 +205,47 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"مرحباً بك في وثائق eVibes.\n" +"مرحباً بك في وثائق Schon.\n" "\n" -"eVibes عبارة عن منصة تجارة إلكترونية قوية تتيح لك إطلاق وإدارة متجر إلكتروني من أي نوع بنقرات قليلة.\n" +"Schon عبارة عن منصة تجارة إلكترونية قوية تتيح لك إطلاق وإدارة متجر إلكتروني " +"من أي نوع بنقرات قليلة.\n" "\n" "## الميزات الرئيسية\n" -"- ** كتالوج المنتجات:** إدارة تفاصيل المنتج والتسعير والمخزون والتوافر عبر فئات متعددة.\n" -"- **إدارة الطلبات:** معالجة الطلبات وتتبع التنفيذ والتعامل مع طلبات العملاء بكفاءة.\n" -"- **المصادقة والتخويل:** مصادقة شاملة للمستخدمين باستخدام رموز JWT المميزة والأذونات المستندة إلى الأدوار.\n" +"- ** كتالوج المنتجات:** إدارة تفاصيل المنتج والتسعير والمخزون والتوافر عبر " +"فئات متعددة.\n" +"- **إدارة الطلبات:** معالجة الطلبات وتتبع التنفيذ والتعامل مع طلبات العملاء " +"بكفاءة.\n" +"- **المصادقة والتخويل:** مصادقة شاملة للمستخدمين باستخدام رموز JWT المميزة " +"والأذونات المستندة إلى الأدوار.\n" "- ** معالجة المدفوعات:** دمج بوابات دفع متعددة وإدارة المعاملات بشكل آمن.\n" -"- ** إدارة المدونة والمحتوى:** إنشاء وإدارة منشورات المدونة والمحتوى التسويقي لمتجرك.\n" -"- ** عمليات B2B:** نقاط نهاية مخصصة للمعاملات بين الشركات وإدارة البيع بالجملة.\n" -"- **دعم متعدد اللغات:** خدمة العملاء في جميع أنحاء العالم مع إمكانات التدويل الكاملة (i18n).\n" -"- **تكامل مخصص:** بنية واجهة برمجة تطبيقات قابلة للتوسيع للتكامل مع المنصات والخدمات الخارجية.\n" -"- **التحليلات والتقارير:** إنشاء تقارير مفصلة عن المبيعات والمخزون وسلوك العملاء.\n" -"- ** تحديثات في الوقت الفعلي:** احصل على بيانات مباشرة عن مستويات المخزون وحالات الطلبات وتغييرات الأسعار.\n" +"- ** إدارة المدونة والمحتوى:** إنشاء وإدارة منشورات المدونة والمحتوى " +"التسويقي لمتجرك.\n" +"- ** عمليات B2B:** نقاط نهاية مخصصة للمعاملات بين الشركات وإدارة البيع " +"بالجملة.\n" +"- **دعم متعدد اللغات:** خدمة العملاء في جميع أنحاء العالم مع إمكانات التدويل " +"الكاملة (i18n).\n" +"- **تكامل مخصص:** بنية واجهة برمجة تطبيقات قابلة للتوسيع للتكامل مع المنصات " +"والخدمات الخارجية.\n" +"- **التحليلات والتقارير:** إنشاء تقارير مفصلة عن المبيعات والمخزون وسلوك " +"العملاء.\n" +"- ** تحديثات في الوقت الفعلي:** احصل على بيانات مباشرة عن مستويات المخزون " +"وحالات الطلبات وتغييرات الأسعار.\n" "\n" "## واجهات برمجة التطبيقات المتاحة\n" "- **واجهة برمجة تطبيقات REST:** واجهة REST كاملة (هذه الوثائق)\n" -"- ** واجهة برمجة تطبيقات GraphiQL:** متوفرة على '/graphql/' مع واجهة GraphiQL للاستعلامات التفاعلية\n" +"- ** واجهة برمجة تطبيقات GraphiQL:** متوفرة على '/graphql/' مع واجهة " +"GraphiQL للاستعلامات التفاعلية\n" "\n" "## المصادقة\n" -"- يتم التعامل مع المصادقة عبر رموز JWT المميزة. قم بتضمين الرمز المميز في رأس \"X-EVIBES-AUTH\" لطلباتك بصيغة \"حامل \".\n" +"- يتم التعامل مع المصادقة عبر رموز JWT المميزة. قم بتضمين الرمز المميز في " +"رأس \"X-SCHON-AUTH\" لطلباتك بصيغة \"حامل \".\n" "- عمر رمز الوصول الرمزي هو {access_lifetime} {access_unit}.\n" "- عمر الرمز المميز للتحديث هو {refresh_hours} ساعة.\n" "- يتم تدوير رموز التحديث تلقائيًا وإبطالها بعد الاستخدام لتعزيز الأمان.\n" "\n" "## التدويل (i18n)\n" -"- قم بتعيين رأس \"قبول اللغة\" لتحديد لغتك المفضلة (على سبيل المثال، \"قبول اللغة: en-US\").\n" +"- قم بتعيين رأس \"قبول اللغة\" لتحديد لغتك المفضلة (على سبيل المثال، \"قبول " +"اللغة: en-US\").\n" "- يمكن استرداد اللغات المتاحة من نقطة النهاية \"/ التطبيق/اللغات/\".\n" "- جميع المحتويات التي تواجه المستخدم تدعم لغات متعددة خارج الصندوق.\n" "\n" @@ -234,66 +262,66 @@ msgstr "" "## الإصدار\n" "إصدار API الحالي: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "موقعي" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "الصحة" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "الدعم" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "قائمة الطعام" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "لوحة التحكم" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "التكوين" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "المهام الدورية" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "لوحة المهام" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "روابط سريعة" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "المستخدمون" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "المجموعات" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "الطلبات" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "المنتجات" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "الفئات" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "العلامات التجارية" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "المدونات" diff --git a/evibes/locale/cs_CZ/LC_MESSAGES/django.mo b/schon/locale/cs_CZ/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/cs_CZ/LC_MESSAGES/django.mo rename to schon/locale/cs_CZ/LC_MESSAGES/django.mo index 4ae18614..e00015f8 100644 Binary files a/evibes/locale/cs_CZ/LC_MESSAGES/django.mo and b/schon/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/cs_CZ/LC_MESSAGES/django.po b/schon/locale/cs_CZ/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/cs_CZ/LC_MESSAGES/django.po rename to schon/locale/cs_CZ/LC_MESSAGES/django.po index 2ba01475..8e9b1126 100644 --- a/evibes/locale/cs_CZ/LC_MESSAGES/django.po +++ b/schon/locale/cs_CZ/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Název společnosti" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Adresa společnosti" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Telefonní číslo společnosti" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "Sazba daně v jurisdikci vaší společnosti. Pokud nechcete zpracovávat daně, " "ponechte 0." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Zobrazuje, zda jsou daně již zahrnuty v prodejních cenách produktu." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Klíč API pro směnný kurz" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!NEMĚŇTE!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP host" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Port SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Použití protokolu TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Použití protokolu SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Uživatelské jméno SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Heslo SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Možnost Pošta z" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Kolik dní uchováváme zprávy od anonymních uživatelů" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Kolik dní uchováváme zprávy od ověřených uživatelů" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Zakázat funkci nákupu" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL rozhraní API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Klíč API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstraktní klíč API" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proxy server HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Subjekt pro ukládání dat inzerátů" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Subjekt pro ukládání analytických dat" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Ukládání odpovědí z rozhraní API dodavatelů" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Zálohování databáze" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Záložní média" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Právní možnosti" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Možnosti e-mailu" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Možnosti funkcí" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Možnosti SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Možnosti systému" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,42 +205,60 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Vítejte v dokumentaci systému eVibes.\n" +"Vítejte v dokumentaci systému Schon.\n" "\n" -"eVibes je výkonná platforma pro elektronické obchodování, která vám umožní spustit a spravovat internetový obchod jakéhokoli druhu na několik kliknutí.\n" +"Schon je výkonná platforma pro elektronické obchodování, která vám umožní " +"spustit a spravovat internetový obchod jakéhokoli druhu na několik " +"kliknutí.\n" "\n" "## Klíčové funkce\n" -"- **Katalog produktů:** Správa podrobností o produktech, cen, skladových zásob a dostupnosti v několika kategoriích.\n" -"- **Správa objednávek:** Zpracovávejte objednávky, sledujte jejich plnění a efektivně vyřizujte požadavky zákazníků.\n" -"- **Ověřování a autorizace:** Komplexní ověřování uživatelů pomocí tokenů JWT a oprávnění na základě rolí.\n" -"- **Zpracování plateb:** Integrace více platebních bran a bezpečná správa transakcí.\n" -"- **Správa blogu a obsahu:** Vytváření a správa příspěvků na blogu a marketingového obsahu pro váš obchod.\n" -"- **Provoz B2B:** Vyhrazené koncové body pro transakce mezi podniky a správu velkoobchodu.\n" -"- **Vícejazyčná podpora:** Obsluhujte zákazníky po celém světě díky plným možnostem internacionalizace (i18n).\n" -"- **Vlastní integrace:** Rozšiřitelná architektura API pro integraci s externími platformami a službami.\n" -"- **Analytika a reporting:** Generování podrobných reportů o prodeji, zásobách a chování zákazníků.\n" -"- **Aktualizace v reálném čase:** Získávejte živé údaje o stavu zásob, stavu objednávek a změnách cen.\n" +"- **Katalog produktů:** Správa podrobností o produktech, cen, skladových " +"zásob a dostupnosti v několika kategoriích.\n" +"- **Správa objednávek:** Zpracovávejte objednávky, sledujte jejich plnění a " +"efektivně vyřizujte požadavky zákazníků.\n" +"- **Ověřování a autorizace:** Komplexní ověřování uživatelů pomocí tokenů " +"JWT a oprávnění na základě rolí.\n" +"- **Zpracování plateb:** Integrace více platebních bran a bezpečná správa " +"transakcí.\n" +"- **Správa blogu a obsahu:** Vytváření a správa příspěvků na blogu a " +"marketingového obsahu pro váš obchod.\n" +"- **Provoz B2B:** Vyhrazené koncové body pro transakce mezi podniky a správu " +"velkoobchodu.\n" +"- **Vícejazyčná podpora:** Obsluhujte zákazníky po celém světě díky plným " +"možnostem internacionalizace (i18n).\n" +"- **Vlastní integrace:** Rozšiřitelná architektura API pro integraci s " +"externími platformami a službami.\n" +"- **Analytika a reporting:** Generování podrobných reportů o prodeji, " +"zásobách a chování zákazníků.\n" +"- **Aktualizace v reálném čase:** Získávejte živé údaje o stavu zásob, stavu " +"objednávek a změnách cen.\n" "\n" "## Dostupná rozhraní API\n" "- **REST API:** Plné rozhraní RESTful (tato dokumentace).\n" -"- **GraphQL API:** K dispozici na adrese `/graphql/` s rozhraním GraphiQL pro interaktivní dotazy.\n" +"- **GraphQL API:** K dispozici na adrese `/graphql/` s rozhraním GraphiQL " +"pro interaktivní dotazy.\n" "\n" "## Ověřování\n" -"- Ověřování se provádí pomocí tokenů JWT. Token zahrňte do hlavičky `X-EVIBES-AUTH` svých požadavků ve formátu `Bearer `.\n" +"- Ověřování se provádí pomocí tokenů JWT. Token zahrňte do hlavičky `X-SCHON-" +"AUTH` svých požadavků ve formátu `Bearer `.\n" "- Životnost přístupového tokenu je {access_lifetime}. {access_unit}.\n" "- Životnost tokenu pro obnovení je {refresh_hours} hodin.\n" -"- Tokeny pro obnovení jsou po použití automaticky rotovány a zneplatněny z důvodu vyšší bezpečnosti.\n" +"- Tokeny pro obnovení jsou po použití automaticky rotovány a zneplatněny z " +"důvodu vyšší bezpečnosti.\n" "\n" "## Internacionalizace (i18n)\n" -"- Nastavte hlavičku `Accept-Language` tak, aby určovala preferovaný jazyk (např. `Accept-Language: en-US`).\n" +"- Nastavte hlavičku `Accept-Language` tak, aby určovala preferovaný jazyk " +"(např. `Accept-Language: en-US`).\n" "- Dostupné jazyky lze získat z koncového bodu `/app/languages/`.\n" -"- Veškerý obsah směřující k uživateli podporuje více jazyků hned po vybalení z krabice.\n" +"- Veškerý obsah směřující k uživateli podporuje více jazyků hned po vybalení " +"z krabice.\n" "\n" "## Formáty odpovědí\n" "Rozhraní API podporuje více formátů odpovědí:\n" "- **JSON** (výchozí, formátováno camelCase).\n" "- **XML** (přidejte `?format=xml` nebo nastavte `Accept: application/xml`).\n" -"- **YAML** (přidejte `?format=yaml` nebo nastavte `Accept: application/x-yaml`)\n" +"- **YAML** (přidejte `?format=yaml` nebo nastavte `Accept: application/x-" +"yaml`)\n" "\n" "## Stav a monitorování\n" "- Kontroly stavu: `/health/`\n" @@ -234,66 +267,66 @@ msgstr "" "## Verze\n" "Aktuální verze API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Moje stránky" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Zdraví" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Podpora" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Nabídka" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Přístrojová deska" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfigurace" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Pravidelné úkoly" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Taskboard" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Rychlé odkazy" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Uživatelé" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Skupiny" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Objednávky" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produkty" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategorie" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Značky" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposty" diff --git a/evibes/locale/da_DK/LC_MESSAGES/django.mo b/schon/locale/da_DK/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/da_DK/LC_MESSAGES/django.mo rename to schon/locale/da_DK/LC_MESSAGES/django.mo index cd49e7ba..125f1550 100644 Binary files a/evibes/locale/da_DK/LC_MESSAGES/django.mo and b/schon/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/da_DK/LC_MESSAGES/django.po b/schon/locale/da_DK/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/da_DK/LC_MESSAGES/django.po rename to schon/locale/da_DK/LC_MESSAGES/django.po index 3827df7a..49bb10c6 100644 --- a/evibes/locale/da_DK/LC_MESSAGES/django.po +++ b/schon/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:02+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,166 +13,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Virksomhedens navn" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Virksomhedens adresse" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Virksomhedens telefonnummer" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -"Skattesats i din virksomheds jurisdiktion. Lad 0 stå, hvis du ikke ønsker at" -" behandle skatter." +"Skattesats i din virksomheds jurisdiktion. Lad 0 stå, hvis du ikke ønsker at " +"behandle skatter." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Viser, om afgifterne allerede er inkluderet i produktets salgspris" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "API-nøgle til valutakurs" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!SKIFT IKKE!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP-vært" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP-port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Brug TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Brug SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP-brugernavn" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP-adgangskode" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Mulighed for mail fra" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Hvor mange dage vi gemmer beskeder fra anonyme brugere" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Hvor mange dage vi gemmer beskeder fra godkendte brugere" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Deaktiver købsfunktionalitet" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API-nøgle" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstrakt API-nøgle" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "En enhed til lagring af annonceringsdata" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "En enhed til lagring af analysedata" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Gem svar fra leverandørers API'er" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Backup af database" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Backup-medier" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Juridiske muligheder" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Indstillinger for e-mail" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Funktioner Indstillinger" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO-muligheder" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Systemindstillinger" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,34 +205,49 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Velkommen til eVibes' dokumentation.\n" +"Velkommen til Schon' dokumentation.\n" "\n" -"eVibes er en stærk e-handelsplatform, der giver dig mulighed for at starte og administrere en onlinebutik af enhver art med blot nogle få klik.\n" +"Schon er en stærk e-handelsplatform, der giver dig mulighed for at starte og " +"administrere en onlinebutik af enhver art med blot nogle få klik.\n" "\n" "## Nøglefunktioner\n" -"- Produktkatalog:** Administrer produktdetaljer, priser, lagerbeholdning og tilgængelighed på tværs af flere kategorier.\n" -"- Ordrehåndtering:** Behandl ordrer, spor opfyldelse og håndter kundeanmodninger effektivt.\n" -"- Godkendelse og autorisation:** Omfattende brugergodkendelse med JWT-tokens og rollebaserede tilladelser.\n" -"- **Betalingsbehandling:** Integrer flere betalingsgateways og håndter transaktioner sikkert.\n" -"- Blog- og indholdsstyring: ** Opret og administrer blogindlæg og markedsføringsindhold til din butik.\n" -"- **B2B Operations:** Dedikerede slutpunkter til business-to-business-transaktioner og engrosadministration.\n" -"- Flersproget support:** Betjen kunder over hele verden med fuld internationalisering (i18n).\n" -"- Brugerdefinerede integrationer:** Udvidelig API-arkitektur til integration med eksterne platforme og tjenester.\n" -"- Analyse og rapportering:** Generer detaljerede rapporter om salg, lagerbeholdning og kundeadfærd.\n" -"- Opdateringer i realtid:** Få live-data om lagerniveauer, ordrestatus og prisændringer.\n" +"- Produktkatalog:** Administrer produktdetaljer, priser, lagerbeholdning og " +"tilgængelighed på tværs af flere kategorier.\n" +"- Ordrehåndtering:** Behandl ordrer, spor opfyldelse og håndter " +"kundeanmodninger effektivt.\n" +"- Godkendelse og autorisation:** Omfattende brugergodkendelse med JWT-tokens " +"og rollebaserede tilladelser.\n" +"- **Betalingsbehandling:** Integrer flere betalingsgateways og håndter " +"transaktioner sikkert.\n" +"- Blog- og indholdsstyring: ** Opret og administrer blogindlæg og " +"markedsføringsindhold til din butik.\n" +"- **B2B Operations:** Dedikerede slutpunkter til business-to-business-" +"transaktioner og engrosadministration.\n" +"- Flersproget support:** Betjen kunder over hele verden med fuld " +"internationalisering (i18n).\n" +"- Brugerdefinerede integrationer:** Udvidelig API-arkitektur til integration " +"med eksterne platforme og tjenester.\n" +"- Analyse og rapportering:** Generer detaljerede rapporter om salg, " +"lagerbeholdning og kundeadfærd.\n" +"- Opdateringer i realtid:** Få live-data om lagerniveauer, ordrestatus og " +"prisændringer.\n" "\n" "## Tilgængelige API'er\n" "- **REST API:** Fuld RESTful-grænseflade (denne dokumentation)\n" -"- GraphQL API:** Tilgængelig på `/graphql/` med GraphiQL-grænseflade til interaktive forespørgsler\n" +"- GraphQL API:** Tilgængelig på `/graphql/` med GraphiQL-grænseflade til " +"interaktive forespørgsler\n" "\n" "## Autentificering\n" -"- Autentificering håndteres via JWT-tokens. Inkluder tokenet i `X-EVIBES-AUTH`-headeren i dine anmodninger i formatet `Bearer `.\n" +"- Autentificering håndteres via JWT-tokens. Inkluder tokenet i `X-SCHON-" +"AUTH`-headeren i dine anmodninger i formatet `Bearer `.\n" "- Adgangstokenets levetid er {access_lifetime} {access_unit}.\n" "- Opdateringstokenets levetid er {refresh_hours} timer.\n" -"- Refresh-tokens bliver automatisk roteret og ugyldiggjort efter brug for at øge sikkerheden.\n" +"- Refresh-tokens bliver automatisk roteret og ugyldiggjort efter brug for at " +"øge sikkerheden.\n" "\n" "## Internationalisering (i18n)\n" -"- Indstil headeren `Accept-Language` til at angive dit foretrukne sprog (f.eks. `Accept-Language: en-US`).\n" +"- Indstil headeren `Accept-Language` til at angive dit foretrukne sprog (f." +"eks. `Accept-Language: en-US`).\n" "- Tilgængelige sprog kan hentes fra `/app/languages/` endpoint.\n" "- Alt brugervendt indhold understøtter flere sprog fra starten.\n" "\n" @@ -225,7 +255,8 @@ msgstr "" "API'en understøtter flere svarformater:\n" "- **JSON** (standard, camelCase-formateret)\n" "- XML** (tilføj `?format=xml` eller indstil `Accept: application/xml`)\n" -"- **YAML** (tilføj `?format=yaml` eller indstil `Accept: application/x-yaml`)\n" +"- **YAML** (tilføj `?format=yaml` eller indstil `Accept: application/x-" +"yaml`)\n" "\n" "## Sundhed og overvågning\n" "- Sundhedstjek: `/health/`\n" @@ -234,66 +265,66 @@ msgstr "" "## Version\n" "Nuværende API-version: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Min hjemmeside" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Sundhed" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Støtte" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dashboard" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfig" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periodiske opgaver" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Opgavetavle" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Hurtige links" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Brugere" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupper" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Bestillinger" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produkter" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategorier" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Mærker" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogindlæg" diff --git a/evibes/locale/de_DE/LC_MESSAGES/django.mo b/schon/locale/de_DE/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/de_DE/LC_MESSAGES/django.mo rename to schon/locale/de_DE/LC_MESSAGES/django.mo index d048452c..1b94ec63 100644 Binary files a/evibes/locale/de_DE/LC_MESSAGES/django.mo and b/schon/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/de_DE/LC_MESSAGES/django.po b/schon/locale/de_DE/LC_MESSAGES/django.po similarity index 64% rename from evibes/locale/de_DE/LC_MESSAGES/django.po rename to schon/locale/de_DE/LC_MESSAGES/django.po index a0dfe9c5..bf966f51 100644 --- a/evibes/locale/de_DE/LC_MESSAGES/django.po +++ b/schon/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Name des Unternehmens" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Anschrift des Unternehmens" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Telefonnummer des Unternehmens" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,149 +33,164 @@ msgstr "" "Steuersatz in dem Land, in dem Ihr Unternehmen ansässig ist. Lassen Sie 0 " "stehen, wenn Sie keine Steuern verarbeiten wollen." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Zeigt an, ob die Steuern bereits in den Verkaufspreisen des Produkts " "enthalten sind" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Wechselkurs-API-Schlüssel" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!NICHT ÄNDERN!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP-Host" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP-Port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Use TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Use SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP-Benutzername" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP-Kennwort" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Option Mail von" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Wie viele Tage wir Nachrichten von anonymen Nutzern speichern" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" "Wie viele Tage wir Nachrichten von authentifizierten Benutzern speichern" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Kauffunktionalität deaktivieren" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstrakter API-Schlüssel" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP-Proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Eine Einheit zur Speicherung von Werbedaten" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Eine Einheit zur Speicherung von Analysedaten" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Speichern von Antworten aus den APIs von Anbietern" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Datenbank sichern" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Sicherungsmedien" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Rechtliche Optionen" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "E-Mail-Optionen" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Merkmale Optionen" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO-Optionen" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "System Options" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -193,42 +208,63 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Willkommen bei der eVibes-Dokumentation.\n" +"Willkommen bei der Schon-Dokumentation.\n" "\n" -"eVibes ist eine leistungsstarke E-Commerce-Plattform, die es Ihnen ermöglicht, mit nur wenigen Klicks einen Online-Shop jeglicher Art zu eröffnen und zu verwalten.\n" +"Schon ist eine leistungsstarke E-Commerce-Plattform, die es Ihnen " +"ermöglicht, mit nur wenigen Klicks einen Online-Shop jeglicher Art zu " +"eröffnen und zu verwalten.\n" "\n" "## Hauptmerkmale\n" -"- **Produktkatalog:** Verwalten Sie Produktdetails, Preise, Bestand und Verfügbarkeit über mehrere Kategorien hinweg.\n" -"- **Auftragsverwaltung:** Verarbeiten Sie Aufträge, verfolgen Sie die Ausführung und bearbeiten Sie Kundenanfragen effizient.\n" -"- **Authentifizierung & Autorisierung:** Umfassende Benutzerauthentifizierung mit JWT-Tokens und rollenbasierten Berechtigungen.\n" -"- **Zahlungsabwicklung:** Integrieren Sie mehrere Zahlungsgateways und verwalten Sie Transaktionen auf sichere Weise.\n" -"- **Blog & Content Management:** Erstellen und verwalten Sie Blogbeiträge und Marketinginhalte für Ihren Shop.\n" -"- **B2B-Betrieb:** Dedizierte Endpunkte für Business-to-Business-Transaktionen und Großhandelsmanagement.\n" -"- **Mehrsprachige Unterstützung:** Bedienen Sie Kunden auf der ganzen Welt mit vollständigen Internationalisierungsfunktionen (i18n).\n" -"- **Benutzerdefinierte Integrationen:** Erweiterbare API-Architektur für die Integration mit externen Plattformen und Diensten.\n" -"- **Analytik & Reporting:** Generieren Sie detaillierte Berichte über Verkäufe, Bestände und Kundenverhalten.\n" -"- **Echtzeit-Updates:** Erhalten Sie Live-Daten zu Lagerbeständen, Bestellstatus und Preisänderungen.\n" +"- **Produktkatalog:** Verwalten Sie Produktdetails, Preise, Bestand und " +"Verfügbarkeit über mehrere Kategorien hinweg.\n" +"- **Auftragsverwaltung:** Verarbeiten Sie Aufträge, verfolgen Sie die " +"Ausführung und bearbeiten Sie Kundenanfragen effizient.\n" +"- **Authentifizierung & Autorisierung:** Umfassende " +"Benutzerauthentifizierung mit JWT-Tokens und rollenbasierten " +"Berechtigungen.\n" +"- **Zahlungsabwicklung:** Integrieren Sie mehrere Zahlungsgateways und " +"verwalten Sie Transaktionen auf sichere Weise.\n" +"- **Blog & Content Management:** Erstellen und verwalten Sie Blogbeiträge " +"und Marketinginhalte für Ihren Shop.\n" +"- **B2B-Betrieb:** Dedizierte Endpunkte für Business-to-Business-" +"Transaktionen und Großhandelsmanagement.\n" +"- **Mehrsprachige Unterstützung:** Bedienen Sie Kunden auf der ganzen Welt " +"mit vollständigen Internationalisierungsfunktionen (i18n).\n" +"- **Benutzerdefinierte Integrationen:** Erweiterbare API-Architektur für die " +"Integration mit externen Plattformen und Diensten.\n" +"- **Analytik & Reporting:** Generieren Sie detaillierte Berichte über " +"Verkäufe, Bestände und Kundenverhalten.\n" +"- **Echtzeit-Updates:** Erhalten Sie Live-Daten zu Lagerbeständen, " +"Bestellstatus und Preisänderungen.\n" "\n" "## Verfügbare APIs\n" "- **REST API:** Vollständige RESTful-Schnittstelle (diese Dokumentation)\n" -"- **GraphQL API:** Verfügbar unter `/graphql/` mit GraphiQL-Schnittstelle für interaktive Abfragen\n" +"- **GraphQL API:** Verfügbar unter `/graphql/` mit GraphiQL-Schnittstelle " +"für interaktive Abfragen\n" "\n" "## Authentifizierung\n" -"- Die Authentifizierung erfolgt über JWT-Tokens. Fügen Sie das Token in den `X-EVIBES-AUTH`-Header Ihrer Anfragen im Format `Bearer ` ein.\n" -"- Die Lebensdauer des Zugangstokens beträgt {access_lifetime} {access_unit}.\n" +"- Die Authentifizierung erfolgt über JWT-Tokens. Fügen Sie das Token in den " +"`X-SCHON-AUTH`-Header Ihrer Anfragen im Format `Bearer ` ein.\n" +"- Die Lebensdauer des Zugangstokens beträgt {access_lifetime} " +"{access_unit}.\n" "- Die Lebensdauer von Auffrischungstoken beträgt {refresh_hours} Stunden.\n" -"- Refresh-Tokens werden automatisch rotiert und nach der Verwendung ungültig gemacht, um die Sicherheit zu erhöhen.\n" +"- Refresh-Tokens werden automatisch rotiert und nach der Verwendung ungültig " +"gemacht, um die Sicherheit zu erhöhen.\n" "\n" "## Internationalisierung (i18n)\n" -"- Setzen Sie den `Accept-Language`-Header, um Ihre bevorzugte Sprache anzugeben (z.B. `Accept-Language: en-US`).\n" -"- Die verfügbaren Sprachen können über den Endpunkt `/app/languages/` abgerufen werden.\n" +"- Setzen Sie den `Accept-Language`-Header, um Ihre bevorzugte Sprache " +"anzugeben (z.B. `Accept-Language: en-US`).\n" +"- Die verfügbaren Sprachen können über den Endpunkt `/app/languages/` " +"abgerufen werden.\n" "- Alle benutzerseitigen Inhalte unterstützen von Haus aus mehrere Sprachen.\n" "\n" "## Antwortformate\n" "Die API unterstützt mehrere Antwortformate:\n" "- **JSON** (Standard, camelCase-formatiert)\n" -"- XML** (fügen Sie `?format=xml` hinzu oder setzen Sie `Accept: application/xml`)\n" -"- **YAML** (fügen Sie `?format=yaml` hinzu oder legen Sie `Accept: application/x-yaml` fest)\n" +"- XML** (fügen Sie `?format=xml` hinzu oder setzen Sie `Accept: application/" +"xml`)\n" +"- **YAML** (fügen Sie `?format=yaml` hinzu oder legen Sie `Accept: " +"application/x-yaml` fest)\n" "\n" "## Gesundheit & Überwachung\n" "- Gesundheitsprüfungen: `/health/`\n" @@ -237,66 +273,66 @@ msgstr "" "## Version\n" "Aktuelle API-Version: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Mein Standort" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Gesundheit" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Unterstützung" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menü" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dashboard" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfigurieren Sie" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Regelmäßige Aufgaben" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Aufgabentafel" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Schnelle Links" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Benutzer" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Gruppen" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Bestellungen" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produkte" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategorien" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Marken" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/en_GB/LC_MESSAGES/django.mo b/schon/locale/en_GB/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/en_GB/LC_MESSAGES/django.mo rename to schon/locale/en_GB/LC_MESSAGES/django.mo index 8a82fbc4..57fc7069 100644 Binary files a/evibes/locale/en_GB/LC_MESSAGES/django.mo and b/schon/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/en_GB/LC_MESSAGES/django.po b/schon/locale/en_GB/LC_MESSAGES/django.po similarity index 66% rename from evibes/locale/en_GB/LC_MESSAGES/django.po rename to schon/locale/en_GB/LC_MESSAGES/django.po index 6dd34312..414018c0 100644 --- a/evibes/locale/en_GB/LC_MESSAGES/django.po +++ b/schon/locale/en_GB/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:16+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,19 +17,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Name of the company" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Address of the company" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Phone number of the company" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -37,146 +37,161 @@ msgstr "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Shows if the taxes are already included in product's selling prices" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Exchange rate API key" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!DO NOT CHANGE!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP host" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Use TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Use SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP username" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP password" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Mail from option" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "How many days we store messages from anonymous users" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "How many days we store messages from authenticated users" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Disable buy functionality" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstract API Key" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "An entity for storing advertisiment data" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "An entity for storing analytics data" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Save responses from vendors' APIs" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Backup database" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Backup media" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Legal Options" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Email Options" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Features Options" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO Options" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "System Options" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -194,34 +209,49 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -238,66 +268,66 @@ msgstr "" "## Version\n" "Current API version: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "My site" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Health" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Support" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dashboard" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Config" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periodic Tasks" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Taskboard" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Quick Links" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Users" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Groups" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Orders" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Products" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categories" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Brands" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/en_US/LC_MESSAGES/django.mo b/schon/locale/en_US/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/en_US/LC_MESSAGES/django.mo rename to schon/locale/en_US/LC_MESSAGES/django.mo index f773c94f..22e210f4 100644 Binary files a/evibes/locale/en_US/LC_MESSAGES/django.mo and b/schon/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/en_US/LC_MESSAGES/django.po b/schon/locale/en_US/LC_MESSAGES/django.po similarity index 66% rename from evibes/locale/en_US/LC_MESSAGES/django.po rename to schon/locale/en_US/LC_MESSAGES/django.po index 04410821..cc961a40 100644 --- a/evibes/locale/en_US/LC_MESSAGES/django.po +++ b/schon/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:21+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Name of the company" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Address of the company" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Phone number of the company" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Shows if the taxes are already included in product's selling prices" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Exchange rate API key" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!DO NOT CHANGE!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP host" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Use TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Use SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP username" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP password" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Mail from option" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "How many days we store messages from anonymous users" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "How many days we store messages from authenticated users" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Disable buy functionality" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstract API Key" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "An entity for storing advertisiment data" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "An entity for storing analytics data" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Save responses from vendors' APIs" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Backup database" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Backup media" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Legal Options" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Email Options" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Features Options" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO Options" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "System Options" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,34 +205,49 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -234,66 +264,66 @@ msgstr "" "## Version\n" "Current API version: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "My site" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Health" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Support" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dashboard" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Config" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periodic Tasks" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Taskboard" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Quick Links" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Users" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Groups" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Orders" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Products" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categories" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Brands" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/es_ES/LC_MESSAGES/django.mo b/schon/locale/es_ES/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/es_ES/LC_MESSAGES/django.mo rename to schon/locale/es_ES/LC_MESSAGES/django.mo index 334abe07..21df1453 100644 Binary files a/evibes/locale/es_ES/LC_MESSAGES/django.mo and b/schon/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/es_ES/LC_MESSAGES/django.po b/schon/locale/es_ES/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/es_ES/LC_MESSAGES/django.po rename to schon/locale/es_ES/LC_MESSAGES/django.po index a738eb2e..313af52e 100644 --- a/evibes/locale/es_ES/LC_MESSAGES/django.po +++ b/schon/locale/es_ES/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Nombre de la empresa" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Dirección de la empresa" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Número de teléfono de la empresa" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,148 +33,163 @@ msgstr "" "Tipo impositivo en la jurisdicción de su empresa. Deje 0 si no desea " "procesar los impuestos." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Muestra si los impuestos ya están incluidos en los precios de venta del " "producto" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Clave API de tipo de cambio" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!NO CAMBIES!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Host SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Puerto SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Utilizar TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Utilizar SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nombre de usuario SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Contraseña SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Opción Correo de" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Cuántos días almacenamos los mensajes de usuarios anónimos" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Cuántos días almacenamos los mensajes de los usuarios autenticados" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Desactivar la función de compra" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL de la API Nominatim de OpenStreetMap" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Clave API de OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Clave API abstracta" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Una entidad para almacenar datos publicitarios" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Una entidad para almacenar datos analíticos" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Guardar las respuestas de las API de los proveedores" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Copia de seguridad de la base de datos" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Medios de copia de seguridad" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Opciones legales" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Opciones de correo electrónico" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Características Opciones" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Opciones SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Opciones del sistema" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -192,36 +207,55 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Bienvenido a la documentación de eVibes.\n" +"Bienvenido a la documentación de Schon.\n" "\n" -"eVibes es una potente plataforma de comercio electrónico que le permite lanzar y gestionar una tienda en línea de cualquier tipo en tan sólo unos clics.\n" +"Schon es una potente plataforma de comercio electrónico que le permite " +"lanzar y gestionar una tienda en línea de cualquier tipo en tan sólo unos " +"clics.\n" "\n" "## Características principales\n" -"- **Catálogo de productos:** Gestione los detalles de los productos, precios, inventario y disponibilidad en múltiples categorías.\n" -"- **Gestión de Pedidos:** Procesar pedidos, seguimiento de cumplimiento, y manejar las solicitudes de los clientes de manera eficiente.\n" -"- Autenticación y autorización:Autenticación de usuario integral con tokens JWT y permisos basados en roles.\n" -"- **Procesamiento de pagos:** Integre múltiples pasarelas de pago y gestione las transacciones de forma segura.\n" -"- **Blog y gestión de contenidos:** Crear y gestionar entradas de blog y contenido de marketing para su tienda.\n" -"- **Operaciones B2B:** Puntos finales dedicados para transacciones de empresa a empresa y gestión de ventas al por mayor.\n" -"- Soporte multilingüe:** Sirve a clientes de todo el mundo con capacidades de internacionalización completa (i18n).\n" -"- Integraciones personalizadas:** Arquitectura API extensible para la integración con plataformas y servicios externos.\n" -"- Análisis e informes:** Generación de informes detallados sobre ventas, inventario y comportamiento de los clientes.\n" -"- Actualizaciones en tiempo real:** Obtenga datos en tiempo real sobre los niveles de inventario, el estado de los pedidos y los cambios de precios.\n" +"- **Catálogo de productos:** Gestione los detalles de los productos, " +"precios, inventario y disponibilidad en múltiples categorías.\n" +"- **Gestión de Pedidos:** Procesar pedidos, seguimiento de cumplimiento, y " +"manejar las solicitudes de los clientes de manera eficiente.\n" +"- Autenticación y autorización:Autenticación de usuario integral con tokens " +"JWT y permisos basados en roles.\n" +"- **Procesamiento de pagos:** Integre múltiples pasarelas de pago y gestione " +"las transacciones de forma segura.\n" +"- **Blog y gestión de contenidos:** Crear y gestionar entradas de blog y " +"contenido de marketing para su tienda.\n" +"- **Operaciones B2B:** Puntos finales dedicados para transacciones de " +"empresa a empresa y gestión de ventas al por mayor.\n" +"- Soporte multilingüe:** Sirve a clientes de todo el mundo con capacidades " +"de internacionalización completa (i18n).\n" +"- Integraciones personalizadas:** Arquitectura API extensible para la " +"integración con plataformas y servicios externos.\n" +"- Análisis e informes:** Generación de informes detallados sobre ventas, " +"inventario y comportamiento de los clientes.\n" +"- Actualizaciones en tiempo real:** Obtenga datos en tiempo real sobre los " +"niveles de inventario, el estado de los pedidos y los cambios de precios.\n" "\n" "## API disponibles\n" "- API REST:** Interfaz RESTful completa (esta documentación)\n" -"- API GraphQL:** Disponible en `/graphql/` con interfaz GraphiQL para consultas interactivas\n" +"- API GraphQL:** Disponible en `/graphql/` con interfaz GraphiQL para " +"consultas interactivas\n" "\n" "## Autenticación\n" -"- La autenticación se gestiona mediante tokens JWT. Incluya el token en la cabecera `X-EVIBES-AUTH` de sus peticiones con el formato `Bearer `.\n" +"- La autenticación se gestiona mediante tokens JWT. Incluya el token en la " +"cabecera `X-SCHON-AUTH` de sus peticiones con el formato `Bearer " +"`.\n" "- La duración del token de acceso es {access_lifetime} {access_unit}.\n" "- La duración del token de actualización es de {refresh_hours} horas.\n" -"- Los tokens de actualización se rotan automáticamente y se invalidan después de su uso para mejorar la seguridad.\n" +"- Los tokens de actualización se rotan automáticamente y se invalidan " +"después de su uso para mejorar la seguridad.\n" "\n" "## Internacionalización (i18n)\n" -"- Establezca la cabecera `Accept-Language` para especificar su idioma preferido (por ejemplo, `Accept-Language: en-US`).\n" -"- Los idiomas disponibles pueden recuperarse desde el punto final `/app/languages/`.\n" -"- Todos los contenidos orientados al usuario son compatibles con varios idiomas.\n" +"- Establezca la cabecera `Accept-Language` para especificar su idioma " +"preferido (por ejemplo, `Accept-Language: en-US`).\n" +"- Los idiomas disponibles pueden recuperarse desde el punto final `/app/" +"languages/`.\n" +"- Todos los contenidos orientados al usuario son compatibles con varios " +"idiomas.\n" "\n" "## Formatos de respuesta\n" "La API admite varios formatos de respuesta:\n" @@ -236,66 +270,66 @@ msgstr "" "## Versión\n" "Versión actual de la API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Mi sitio" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Salud" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Ayuda" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menú" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Cuadro de mandos" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Configurar" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Tareas periódicas" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Taskboard" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Enlaces rápidos" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Usuarios" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupos" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Pedidos" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Productos" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categorías" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Marcas" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/fa_IR/LC_MESSAGES/django.mo b/schon/locale/fa_IR/LC_MESSAGES/django.mo similarity index 72% rename from evibes/locale/fa_IR/LC_MESSAGES/django.mo rename to schon/locale/fa_IR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/evibes/locale/fa_IR/LC_MESSAGES/django.mo and b/schon/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/fa_IR/LC_MESSAGES/django.po b/schon/locale/fa_IR/LC_MESSAGES/django.po similarity index 70% rename from evibes/locale/fa_IR/LC_MESSAGES/django.po rename to schon/locale/fa_IR/LC_MESSAGES/django.po index 0908c04b..a906746c 100644 --- a/evibes/locale/fa_IR/LC_MESSAGES/django.po +++ b/schon/locale/fa_IR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,140 +16,140 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and " -"manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" "- **Product Catalog:** Manage product details, pricing, inventory, and " @@ -180,7 +180,7 @@ msgid "" "\n" "## Authentication\n" "- Authentication is handled via JWT tokens. Include the token in the `X-" -"EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" "- Refresh tokens are automatically rotated and invalidated after usage for " @@ -206,66 +206,66 @@ msgid "" "Current API version: {version}\n" msgstr "" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "" diff --git a/evibes/locale/fr_FR/LC_MESSAGES/django.mo b/schon/locale/fr_FR/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/fr_FR/LC_MESSAGES/django.mo rename to schon/locale/fr_FR/LC_MESSAGES/django.mo index 77b35235..3bbc9d57 100644 Binary files a/evibes/locale/fr_FR/LC_MESSAGES/django.mo and b/schon/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/fr_FR/LC_MESSAGES/django.po b/schon/locale/fr_FR/LC_MESSAGES/django.po similarity index 63% rename from evibes/locale/fr_FR/LC_MESSAGES/django.po rename to schon/locale/fr_FR/LC_MESSAGES/django.po index 344b8545..51d018f3 100644 --- a/evibes/locale/fr_FR/LC_MESSAGES/django.po +++ b/schon/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,171 +13,186 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Nom de l'entreprise" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Adresse de l'entreprise" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Numéro de téléphone de l'entreprise" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -"Taux d'imposition dans la juridiction de votre entreprise. Laissez 0 si vous" -" ne souhaitez pas traiter les taxes." +"Taux d'imposition dans la juridiction de votre entreprise. Laissez 0 si vous " +"ne souhaitez pas traiter les taxes." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Indique si les taxes sont déjà incluses dans le prix de vente du produit." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Clé API pour le taux de change" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!NE PAS CHANGER !!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Hôte SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Utiliser TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Use SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nom d'utilisateur SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Mot de passe SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Option Courrier de" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "" "Pendant combien de jours les messages des utilisateurs anonymes sont-ils " "conservés ?" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" -"Pendant combien de jours les messages des utilisateurs authentifiés sont-ils" -" conservés ?" +"Pendant combien de jours les messages des utilisateurs authentifiés sont-ils " +"conservés ?" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Désactiver la fonctionnalité d'achat" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL de l'API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API Key" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Clé API abstraite" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Une entité pour stocker des données publicitaires" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Une entité pour stocker des données analytiques" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Sauvegarder les réponses des API des fournisseurs" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Sauvegarde de la base de données" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Supports de sauvegarde" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Options juridiques" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Options de courrier électronique" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Caractéristiques Options" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Options de référencement" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Options du système" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -195,42 +210,61 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Bienvenue dans la documentation d'eVibes.\n" +"Bienvenue dans la documentation d'Schon.\n" "\n" -"eVibes est une puissante plateforme de commerce électronique qui vous permet de lancer et de gérer une boutique en ligne de tout type en quelques clics.\n" +"Schon est une puissante plateforme de commerce électronique qui vous permet " +"de lancer et de gérer une boutique en ligne de tout type en quelques clics.\n" "\n" "## Fonctionnalités principales\n" -"- Catalogue de produits:** Gérer les détails des produits, les prix, l'inventaire et la disponibilité à travers plusieurs catégories.\n" -"- Gestion des commandes:** Traiter les commandes, suivre l'exécution et traiter les demandes des clients de manière efficace.\n" -"- Authentification et autorisation:** Authentification complète des utilisateurs avec des jetons JWT et des autorisations basées sur les rôles.\n" -"- Traitement des paiements:** Intégration de plusieurs passerelles de paiement et gestion sécurisée des transactions.\n" -"- Gestion de blog et de contenu:** Créez et gérez des articles de blog et du contenu marketing pour votre boutique.\n" -"- Opérations B2B:** Points d'accès dédiés aux transactions interentreprises et à la gestion des ventes en gros.\n" -"- Support multilingue:** Servez vos clients dans le monde entier grâce à des capacités d'internationalisation complètes (i18n).\n" -"- Intégrations personnalisées:** Architecture API extensible pour l'intégration avec des plateformes et des services externes.\n" -"- Analyses et rapports:** Générer des rapports détaillés sur les ventes, les stocks et le comportement des clients.\n" -"- Mises à jour en temps réel:** Obtenez des données en direct sur les niveaux de stock, les statuts des commandes et les changements de prix.\n" +"- Catalogue de produits:** Gérer les détails des produits, les prix, " +"l'inventaire et la disponibilité à travers plusieurs catégories.\n" +"- Gestion des commandes:** Traiter les commandes, suivre l'exécution et " +"traiter les demandes des clients de manière efficace.\n" +"- Authentification et autorisation:** Authentification complète des " +"utilisateurs avec des jetons JWT et des autorisations basées sur les rôles.\n" +"- Traitement des paiements:** Intégration de plusieurs passerelles de " +"paiement et gestion sécurisée des transactions.\n" +"- Gestion de blog et de contenu:** Créez et gérez des articles de blog et du " +"contenu marketing pour votre boutique.\n" +"- Opérations B2B:** Points d'accès dédiés aux transactions interentreprises " +"et à la gestion des ventes en gros.\n" +"- Support multilingue:** Servez vos clients dans le monde entier grâce à des " +"capacités d'internationalisation complètes (i18n).\n" +"- Intégrations personnalisées:** Architecture API extensible pour " +"l'intégration avec des plateformes et des services externes.\n" +"- Analyses et rapports:** Générer des rapports détaillés sur les ventes, les " +"stocks et le comportement des clients.\n" +"- Mises à jour en temps réel:** Obtenez des données en direct sur les " +"niveaux de stock, les statuts des commandes et les changements de prix.\n" "\n" "## API disponibles\n" "- API REST:** Interface RESTful complète (cette documentation)\n" -"- API GraphQL:** Disponible sur `/graphql/` avec l'interface GraphiQL pour les requêtes interactives.\n" +"- API GraphQL:** Disponible sur `/graphql/` avec l'interface GraphiQL pour " +"les requêtes interactives.\n" "\n" "## Authentification\n" -"- L'authentification est gérée par des jetons JWT. Incluez le jeton dans l'en-tête `X-EVIBES-AUTH` de vos requêtes au format `Bearer `.\n" +"- L'authentification est gérée par des jetons JWT. Incluez le jeton dans " +"l'en-tête `X-SCHON-AUTH` de vos requêtes au format `Bearer `.\n" "- La durée de vie du jeton d'accès est de {access_lifetime} {access_unit}.\n" -"- La durée de vie du jeton de rafraîchissement est de {refresh_hours} heures.\n" -"- Les jetons de rafraîchissement font l'objet d'une rotation automatique et sont invalidés après utilisation pour une meilleure sécurité.\n" +"- La durée de vie du jeton de rafraîchissement est de {refresh_hours} " +"heures.\n" +"- Les jetons de rafraîchissement font l'objet d'une rotation automatique et " +"sont invalidés après utilisation pour une meilleure sécurité.\n" "\n" "## Internationalisation (i18n)\n" -"- Définissez l'en-tête `Accept-Language` pour spécifier votre langue préférée (par exemple, `Accept-Language : en-US`).\n" -"- Les langues disponibles peuvent être récupérées à partir du point de terminaison `/app/languages/`.\n" -"- Tous les contenus destinés à l'utilisateur supportent d'emblée plusieurs langues.\n" +"- Définissez l'en-tête `Accept-Language` pour spécifier votre langue " +"préférée (par exemple, `Accept-Language : en-US`).\n" +"- Les langues disponibles peuvent être récupérées à partir du point de " +"terminaison `/app/languages/`.\n" +"- Tous les contenus destinés à l'utilisateur supportent d'emblée plusieurs " +"langues.\n" "\n" "## Formats de réponse\n" "L'API prend en charge plusieurs formats de réponse :\n" "- **JSON** (par défaut, formaté en camelCase)\n" "- **XML** (ajoutez `?format=xml` ou définissez `Accept : application/xml`)\n" -"- **YAML** (ajouter `?format=yaml` ou définir `Accept : application/x-yaml`)\n" +"- **YAML** (ajouter `?format=yaml` ou définir `Accept : application/x-" +"yaml`)\n" "\n" "## Santé et surveillance\n" "- Contrôles de santé : `/health/`\n" @@ -239,66 +273,66 @@ msgstr "" "## Version\n" "Version actuelle de l'API : {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Mon site" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Santé" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Soutien" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Tableau de bord" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Config" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Tâches périodiques" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Tableau des tâches" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Liens rapides" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Utilisateurs" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Groupes" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Commandes" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produits" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Catégories" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Marques" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/he_IL/LC_MESSAGES/django.mo b/schon/locale/he_IL/LC_MESSAGES/django.mo similarity index 78% rename from evibes/locale/he_IL/LC_MESSAGES/django.mo rename to schon/locale/he_IL/LC_MESSAGES/django.mo index cb8840e7..59fd9364 100644 Binary files a/evibes/locale/he_IL/LC_MESSAGES/django.mo and b/schon/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/he_IL/LC_MESSAGES/django.po b/schon/locale/he_IL/LC_MESSAGES/django.po similarity index 51% rename from evibes/locale/he_IL/LC_MESSAGES/django.po rename to schon/locale/he_IL/LC_MESSAGES/django.po index 404984f7..081924d4 100644 --- a/evibes/locale/he_IL/LC_MESSAGES/django.po +++ b/schon/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,165 +13,179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "שם החברה" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "כתובת החברה" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "מספר הטלפון של החברה" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." -msgstr "" -"שיעור המס בתחום השיפוט של החברה שלך. השאר 0 אם אינך מעוניין לעבד מסים." +msgstr "שיעור המס בתחום השיפוט של החברה שלך. השאר 0 אם אינך מעוניין לעבד מסים." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "מציג אם המסים כבר כלולים במחיר המכירה של המוצר." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "מפתח API לשער החליפין" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!אין לשנות!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "מארח SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "יציאת SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "השתמש ב-TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "השתמש ב-SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "שם משתמש SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "סיסמת SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "דואר מאפשרות" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "כמה ימים אנו שומרים הודעות ממשתמשים אנונימיים" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "כמה ימים אנו שומרים הודעות ממשתמשים מאומתים" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "השבת פונקציונליות הרכישה" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "כתובת ה-API של OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "מפתח API של OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "מפתח API מופשט" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "פרוקסי HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "ישות לאחסון נתוני פרסום" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "ישות לאחסון נתוני ניתוח" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "שמור תגובות מ-API של ספקים" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "גיבוי מסד נתונים" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "מדיה גיבוי" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "אפשרויות משפטיות" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "אפשרויות דוא\"ל" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "אפשרויות תכונות" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "אפשרויות SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "אפשרויות מערכת" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -188,75 +202,100 @@ msgid "" "## Version\n" "Current API version: {version}\n" msgstr "" -"\nברוכים הבאים לתיעוד של eVibes. eVibes היא פלטפורמת מסחר אלקטרוני עוצמתית המאפשרת לכם להקים ולנהל חנות מקוונת מכל סוג שהוא בכמה לחיצות בלבד. ## תכונות עיקריות - **קטלוג מוצרים:** ניהול פרטי מוצרים, מחירים, מלאי וזמינות בקטגוריות מרובות. - **ניהול הזמנות:** עיבוד הזמנות, מעקב אחר ביצוען וטיפול יעיל בבקשות לקוחות.\n" -"- **אימות ואישור:** אימות משתמשים מקיף באמצעות אסימוני JWT והרשאות מבוססות תפקידים. - **עיבוד תשלומים:** שלבו מספר שערי תשלום ונהלו עסקאות בצורה מאובטחת. - **ניהול בלוג ותוכן:** צרו ונהלו פוסטים בבלוג ותוכן שיווקי לחנות שלכם. - **פעולות B2B:** נקודות קצה ייעודיות לעסקאות בין עסקים וניהול סיטונאי.\n" -"- **תמיכה בריבוי שפות:** שירות ללקוחות ברחבי העולם עם יכולות בינלאומיות מלאות (i18n). - **אינטגרציות מותאמות אישית:** ארכיטקטורת API ניתנת להרחבה לשילוב עם פלטפורמות ושירותים חיצוניים. - **ניתוח ודיווח:** יצירת דוחות מפורטים על מכירות, מלאי והתנהגות לקוחות. - **עדכונים בזמן אמת:** קבלת נתונים בזמן אמת על רמות המלאי, סטטוס ההזמנות ושינויים במחירים.\n" "\n" -"## ממשקי API זמינים - **REST API:** ממשק RESTful מלא (תיעוד זה) - **GraphQL API:** זמין ב-`/graphql/` עם ממשק GraphiQL לשאילתות אינטראקטיביות ## אימות - האימות מתבצע באמצעות אסימוני JWT. כלול את האסימון בכותרת `X-EVIBES-AUTH` של בקשותיך בפורמט `Bearer `.\n" -"- אורך חיי אסימון הגישה הוא {access_lifetime} {access_unit}. - אורך חיי אסימון הרענון הוא {refresh_hours} שעות. - אסימוני הרענון מסתובבים באופן אוטומטי ומבוטלים לאחר השימוש לשם אבטחה משופרת. ## בינלאומיות (i18n) - הגדר את הכותרת `Accept-Language` כדי לציין את השפה המועדפת עליך (לדוגמה, `Accept-Language: en-US`).\n" -"- ניתן לאחזר את השפות הזמינות מנקודת הקצה `/app/languages/`. - כל התוכן המוצג למשתמש תומך במספר שפות באופן מובנה. ## פורמטים של תגובה ה-API תומך במספר פורמטים של תגובה: - **JSON** (ברירת מחדל, בפורמט camelCase) - **XML** (הוסף `?format=xml` או הגדר `Accept: application/xml`)\n" -"- **YAML** (הוסף `?format=yaml` או הגדר `Accept: application/x-yaml`) ## תקינות וניטור - בדיקות תקינות: `/health/` - מדדי Prometheus: `/prometheus/metrics/` ## גרסה גרסת ה-API הנוכחית: {version}\n" +"ברוכים הבאים לתיעוד של Schon. Schon היא פלטפורמת מסחר אלקטרוני עוצמתית " +"המאפשרת לכם להקים ולנהל חנות מקוונת מכל סוג שהוא בכמה לחיצות בלבד. ## תכונות " +"עיקריות - **קטלוג מוצרים:** ניהול פרטי מוצרים, מחירים, מלאי וזמינות " +"בקטגוריות מרובות. - **ניהול הזמנות:** עיבוד הזמנות, מעקב אחר ביצוען וטיפול " +"יעיל בבקשות לקוחות.\n" +"- **אימות ואישור:** אימות משתמשים מקיף באמצעות אסימוני JWT והרשאות מבוססות " +"תפקידים. - **עיבוד תשלומים:** שלבו מספר שערי תשלום ונהלו עסקאות בצורה " +"מאובטחת. - **ניהול בלוג ותוכן:** צרו ונהלו פוסטים בבלוג ותוכן שיווקי לחנות " +"שלכם. - **פעולות B2B:** נקודות קצה ייעודיות לעסקאות בין עסקים וניהול " +"סיטונאי.\n" +"- **תמיכה בריבוי שפות:** שירות ללקוחות ברחבי העולם עם יכולות בינלאומיות " +"מלאות (i18n). - **אינטגרציות מותאמות אישית:** ארכיטקטורת API ניתנת להרחבה " +"לשילוב עם פלטפורמות ושירותים חיצוניים. - **ניתוח ודיווח:** יצירת דוחות " +"מפורטים על מכירות, מלאי והתנהגות לקוחות. - **עדכונים בזמן אמת:** קבלת נתונים " +"בזמן אמת על רמות המלאי, סטטוס ההזמנות ושינויים במחירים.\n" +"\n" +"## ממשקי API זמינים - **REST API:** ממשק RESTful מלא (תיעוד זה) - **GraphQL " +"API:** זמין ב-`/graphql/` עם ממשק GraphiQL לשאילתות אינטראקטיביות ## אימות - " +"האימות מתבצע באמצעות אסימוני JWT. כלול את האסימון בכותרת `X-SCHON-AUTH` של " +"בקשותיך בפורמט `Bearer `.\n" +"- אורך חיי אסימון הגישה הוא {access_lifetime} {access_unit}. - אורך חיי " +"אסימון הרענון הוא {refresh_hours} שעות. - אסימוני הרענון מסתובבים באופן " +"אוטומטי ומבוטלים לאחר השימוש לשם אבטחה משופרת. ## בינלאומיות (i18n) - הגדר " +"את הכותרת `Accept-Language` כדי לציין את השפה המועדפת עליך (לדוגמה, `Accept-" +"Language: en-US`).\n" +"- ניתן לאחזר את השפות הזמינות מנקודת הקצה `/app/languages/`. - כל התוכן " +"המוצג למשתמש תומך במספר שפות באופן מובנה. ## פורמטים של תגובה ה-API תומך " +"במספר פורמטים של תגובה: - **JSON** (ברירת מחדל, בפורמט camelCase) - **XML** " +"(הוסף `?format=xml` או הגדר `Accept: application/xml`)\n" +"- **YAML** (הוסף `?format=yaml` או הגדר `Accept: application/x-yaml`) ## " +"תקינות וניטור - בדיקות תקינות: `/health/` - מדדי Prometheus: `/prometheus/" +"metrics/` ## גרסה גרסת ה-API הנוכחית: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "האתר שלי" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "בריאות" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "תמיכה" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "תפריט" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "לוח מחוונים" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "תצורה" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "משימות תקופתיות" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "לוח משימות" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "קישורים מהירים" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "משתמשים" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "קבוצות" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "הזמנות" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "מוצרים" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "קטגוריות" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "מותגים" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "פוסטים בבלוג" diff --git a/evibes/locale/hi_IN/LC_MESSAGES/django.mo b/schon/locale/hi_IN/LC_MESSAGES/django.mo similarity index 72% rename from evibes/locale/hi_IN/LC_MESSAGES/django.mo rename to schon/locale/hi_IN/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/evibes/locale/hi_IN/LC_MESSAGES/django.mo and b/schon/locale/hi_IN/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/hr_HR/LC_MESSAGES/django.po b/schon/locale/hi_IN/LC_MESSAGES/django.po similarity index 70% rename from evibes/locale/hr_HR/LC_MESSAGES/django.po rename to schon/locale/hi_IN/LC_MESSAGES/django.po index 0908c04b..b258780d 100644 --- a/evibes/locale/hr_HR/LC_MESSAGES/django.po +++ b/schon/locale/hi_IN/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:26+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,140 +16,140 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and " -"manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" "- **Product Catalog:** Manage product details, pricing, inventory, and " @@ -180,7 +180,7 @@ msgid "" "\n" "## Authentication\n" "- Authentication is handled via JWT tokens. Include the token in the `X-" -"EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" "- Refresh tokens are automatically rotated and invalidated after usage for " @@ -206,66 +206,66 @@ msgid "" "Current API version: {version}\n" msgstr "" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "" diff --git a/evibes/locale/hr_HR/LC_MESSAGES/django.mo b/schon/locale/hr_HR/LC_MESSAGES/django.mo similarity index 72% rename from evibes/locale/hr_HR/LC_MESSAGES/django.mo rename to schon/locale/hr_HR/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/evibes/locale/hr_HR/LC_MESSAGES/django.mo and b/schon/locale/hr_HR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/kk_KZ/LC_MESSAGES/django.po b/schon/locale/hr_HR/LC_MESSAGES/django.po similarity index 70% rename from evibes/locale/kk_KZ/LC_MESSAGES/django.po rename to schon/locale/hr_HR/LC_MESSAGES/django.po index 0908c04b..a906746c 100644 --- a/evibes/locale/kk_KZ/LC_MESSAGES/django.po +++ b/schon/locale/hr_HR/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,140 +16,140 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and " -"manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" "- **Product Catalog:** Manage product details, pricing, inventory, and " @@ -180,7 +180,7 @@ msgid "" "\n" "## Authentication\n" "- Authentication is handled via JWT tokens. Include the token in the `X-" -"EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" "- Refresh tokens are automatically rotated and invalidated after usage for " @@ -206,66 +206,66 @@ msgid "" "Current API version: {version}\n" msgstr "" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "" diff --git a/evibes/locale/id_ID/LC_MESSAGES/django.mo b/schon/locale/id_ID/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/id_ID/LC_MESSAGES/django.mo rename to schon/locale/id_ID/LC_MESSAGES/django.mo index 26a235fa..fc6d5b8b 100644 Binary files a/evibes/locale/id_ID/LC_MESSAGES/django.mo and b/schon/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/id_ID/LC_MESSAGES/django.po b/schon/locale/id_ID/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/id_ID/LC_MESSAGES/django.po rename to schon/locale/id_ID/LC_MESSAGES/django.po index a13c4366..eb415343 100644 --- a/evibes/locale/id_ID/LC_MESSAGES/django.po +++ b/schon/locale/id_ID/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Nama perusahaan" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Alamat perusahaan" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Nomor telepon perusahaan" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "Tarif pajak dalam yurisdiksi perusahaan Anda. Biarkan 0 jika Anda tidak " "ingin memproses pajak." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Menunjukkan apakah pajak sudah termasuk dalam harga jual produk" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Kunci API nilai tukar" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!JANGAN BERUBAH!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Host SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Port SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Gunakan TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Gunakan SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nama pengguna SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Kata sandi SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Opsi Mail from (Surat dari)" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Berapa hari kami menyimpan pesan dari pengguna anonim" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Berapa hari kami menyimpan pesan dari pengguna yang diautentikasi" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Menonaktifkan fungsionalitas beli" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Kunci API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Kunci API Abstrak" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proksi HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Entitas untuk menyimpan data iklan" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Entitas untuk menyimpan data analitik" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Menyimpan tanggapan dari API vendor" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Mencadangkan basis data" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Media cadangan" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Opsi Hukum" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Opsi Email" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Opsi Fitur" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Opsi SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Opsi Sistem" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,42 +205,60 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Selamat datang di dokumentasi eVibes.\n" +"Selamat datang di dokumentasi Schon.\n" "\n" -"eVibes adalah platform e-commerce yang kuat yang memungkinkan Anda untuk meluncurkan dan mengelola toko online dalam bentuk apa pun hanya dengan beberapa klik.\n" +"Schon adalah platform e-commerce yang kuat yang memungkinkan Anda untuk " +"meluncurkan dan mengelola toko online dalam bentuk apa pun hanya dengan " +"beberapa klik.\n" "\n" "## Fitur Utama\n" -"- Katalog Produk:** Kelola detail produk, harga, inventaris, dan ketersediaan di berbagai kategori.\n" -"- Manajemen Pesanan:** Memproses pesanan, melacak pemenuhan pesanan, dan menangani permintaan pelanggan secara efisien.\n" -"- Autentikasi & Otorisasi:** Autentikasi pengguna yang komprehensif dengan token JWT dan izin berbasis peran.\n" -"- Pemrosesan Pembayaran:** Mengintegrasikan beberapa gateway pembayaran dan mengelola transaksi dengan aman.\n" -"- Manajemen Blog & Konten:** Buat dan kelola posting blog dan konten pemasaran untuk toko Anda.\n" -"- ** Operasi B2B:** Titik akhir khusus untuk transaksi bisnis-ke-bisnis dan manajemen grosir.\n" -"- Dukungan Multi-bahasa:** Melayani pelanggan di seluruh dunia dengan kemampuan internasionalisasi penuh (i18n).\n" -"- Integrasi Khusus:** Arsitektur API yang dapat diperluas untuk berintegrasi dengan platform dan layanan eksternal.\n" -"- Analisis & Pelaporan:** Menghasilkan laporan terperinci tentang penjualan, inventaris, dan perilaku pelanggan.\n" -"- **Pembaruan Waktu Nyata:** Dapatkan data langsung tentang tingkat inventaris, status pesanan, dan perubahan harga.\n" +"- Katalog Produk:** Kelola detail produk, harga, inventaris, dan " +"ketersediaan di berbagai kategori.\n" +"- Manajemen Pesanan:** Memproses pesanan, melacak pemenuhan pesanan, dan " +"menangani permintaan pelanggan secara efisien.\n" +"- Autentikasi & Otorisasi:** Autentikasi pengguna yang komprehensif dengan " +"token JWT dan izin berbasis peran.\n" +"- Pemrosesan Pembayaran:** Mengintegrasikan beberapa gateway pembayaran dan " +"mengelola transaksi dengan aman.\n" +"- Manajemen Blog & Konten:** Buat dan kelola posting blog dan konten " +"pemasaran untuk toko Anda.\n" +"- ** Operasi B2B:** Titik akhir khusus untuk transaksi bisnis-ke-bisnis dan " +"manajemen grosir.\n" +"- Dukungan Multi-bahasa:** Melayani pelanggan di seluruh dunia dengan " +"kemampuan internasionalisasi penuh (i18n).\n" +"- Integrasi Khusus:** Arsitektur API yang dapat diperluas untuk berintegrasi " +"dengan platform dan layanan eksternal.\n" +"- Analisis & Pelaporan:** Menghasilkan laporan terperinci tentang penjualan, " +"inventaris, dan perilaku pelanggan.\n" +"- **Pembaruan Waktu Nyata:** Dapatkan data langsung tentang tingkat " +"inventaris, status pesanan, dan perubahan harga.\n" "\n" "## API yang tersedia\n" "- **REST API:** Antarmuka RESTful penuh (dokumentasi ini)\n" -"- API GraphQL:** Tersedia di `/graphql/` dengan antarmuka GraphiQL untuk kueri interaktif\n" +"- API GraphQL:** Tersedia di `/graphql/` dengan antarmuka GraphiQL untuk " +"kueri interaktif\n" "\n" "## Otentikasi\n" -"- Otentikasi ditangani melalui token JWT. Sertakan token di header `X-EVIBES-AUTH` pada permintaan Anda dalam format `Bearer `.\n" +"- Otentikasi ditangani melalui token JWT. Sertakan token di header `X-SCHON-" +"AUTH` pada permintaan Anda dalam format `Bearer `.\n" "- Masa berlaku token akses adalah {access_lifetime} {access_unit}.\n" "- Masa berlaku token refresh adalah {refresh_hours} jam.\n" -"- Refresh token secara otomatis dirotasi dan dibatalkan setelah digunakan untuk meningkatkan keamanan.\n" +"- Refresh token secara otomatis dirotasi dan dibatalkan setelah digunakan " +"untuk meningkatkan keamanan.\n" "\n" "## Internasionalisasi (i18n)\n" -"- Atur header `Accept-Language` untuk menentukan bahasa yang Anda inginkan (misalnya, `Accept-Language: en-US`).\n" +"- Atur header `Accept-Language` untuk menentukan bahasa yang Anda inginkan " +"(misalnya, `Accept-Language: en-US`).\n" "- Bahasa yang tersedia dapat diambil dari titik akhir `/app/languages/`.\n" -"- Semua konten yang berhadapan dengan pengguna mendukung beberapa bahasa secara langsung.\n" +"- Semua konten yang berhadapan dengan pengguna mendukung beberapa bahasa " +"secara langsung.\n" "\n" "Format Tanggapan ## Format Tanggapan\n" "API mendukung beberapa format respons:\n" "- **JSON** (default, berformat camelCase)\n" "- **XML** (tambahkan `?format=xml` atau setel `Accept: application/xml`)\n" -"- **YAML** (tambahkan `?format=yaml` atau setel `Accept: application/x-yaml`)\n" +"- **YAML** (tambahkan `?format=yaml` atau setel `Accept: application/x-" +"yaml`)\n" "\n" "## Kesehatan & Pemantauan\n" "- Pemeriksaan kesehatan: `/health/`\n" @@ -234,66 +267,66 @@ msgstr "" "## Versi\n" "Versi API saat ini: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Situs saya" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Kesehatan" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Dukungan" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dasbor" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfigurasi" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Tugas Berkala" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Papan tugas" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Tautan Cepat" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Pengguna" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grup" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Pesanan" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produk" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategori" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Merek" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Posting blog" diff --git a/evibes/locale/it_IT/LC_MESSAGES/django.mo b/schon/locale/it_IT/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/it_IT/LC_MESSAGES/django.mo rename to schon/locale/it_IT/LC_MESSAGES/django.mo index 1a43d99a..d7a7d3db 100644 Binary files a/evibes/locale/it_IT/LC_MESSAGES/django.mo and b/schon/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/it_IT/LC_MESSAGES/django.po b/schon/locale/it_IT/LC_MESSAGES/django.po similarity index 64% rename from evibes/locale/it_IT/LC_MESSAGES/django.po rename to schon/locale/it_IT/LC_MESSAGES/django.po index 9933aec6..3a57c85d 100644 --- a/evibes/locale/it_IT/LC_MESSAGES/django.po +++ b/schon/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:02+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,167 +13,182 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Nome della società" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Indirizzo dell'azienda" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Numero di telefono dell'azienda" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -"Aliquota fiscale nella giurisdizione della vostra azienda. Lasciare 0 se non" -" si desidera elaborare le imposte." +"Aliquota fiscale nella giurisdizione della vostra azienda. Lasciare 0 se non " +"si desidera elaborare le imposte." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Mostra se le tasse sono già incluse nel prezzo di vendita del prodotto." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Chiave API del tasso di cambio" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!! NON CAMBIARE!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Host SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Porta SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Utilizzare TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Utilizzare SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nome utente SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Password SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Opzione Posta da" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Per quanti giorni conserviamo i messaggi degli utenti anonimi" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Per quanti giorni conserviamo i messaggi degli utenti autenticati" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Disattivare la funzionalità di acquisto" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL dell'API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Chiave API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Chiave API astratta" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Un'entità per la memorizzazione dei dati pubblicitari" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Un'entità per la memorizzazione dei dati analitici" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Salvare le risposte dalle API dei fornitori" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Database di backup" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Supporti di backup" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Opzioni legali" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Opzioni e-mail" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Caratteristiche Opzioni" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Opzioni SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Opzioni di sistema" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -191,42 +206,61 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Benvenuti nella documentazione di eVibes.\n" +"Benvenuti nella documentazione di Schon.\n" "\n" -"eVibes è una potente piattaforma di e-commerce che consente di lanciare e gestire un negozio online di qualsiasi tipo in pochi clic.\n" +"Schon è una potente piattaforma di e-commerce che consente di lanciare e " +"gestire un negozio online di qualsiasi tipo in pochi clic.\n" "\n" "## Caratteristiche principali\n" -"- **Catalogo dei prodotti:** Gestione dei dettagli dei prodotti, dei prezzi, delle scorte e della disponibilità di più categorie.\n" -"- Gestione degli ordini:** Elaborazione degli ordini, monitoraggio dell'evasione e gestione efficiente delle richieste dei clienti.\n" -"- Autenticazione e autorizzazione:** Autenticazione completa degli utenti con token JWT e autorizzazioni basate sui ruoli.\n" -"- Elaborazione dei pagamenti:** Integrazione di più gateway di pagamento e gestione sicura delle transazioni.\n" -"- Gestione di blog e contenuti:** Creazione e gestione di post sul blog e di contenuti di marketing per il vostro negozio.\n" -"- Operazioni B2B:** Endpoint dedicati per le transazioni business-to-business e la gestione della vendita all'ingrosso.\n" -"- Supporto multilingue:** Servite i clienti in tutto il mondo con funzionalità di internazionalizzazione completa (i18n).\n" -"- Integrazioni personalizzate:** Architettura API estensibile per l'integrazione con piattaforme e servizi esterni.\n" -"- **Analitica e reportistica:** Generazione di report dettagliati su vendite, inventario e comportamento dei clienti.\n" -"- Aggiornamenti in tempo reale:** Ottenete dati in tempo reale sui livelli di inventario, sullo stato degli ordini e sulle modifiche dei prezzi.\n" +"- **Catalogo dei prodotti:** Gestione dei dettagli dei prodotti, dei prezzi, " +"delle scorte e della disponibilità di più categorie.\n" +"- Gestione degli ordini:** Elaborazione degli ordini, monitoraggio " +"dell'evasione e gestione efficiente delle richieste dei clienti.\n" +"- Autenticazione e autorizzazione:** Autenticazione completa degli utenti " +"con token JWT e autorizzazioni basate sui ruoli.\n" +"- Elaborazione dei pagamenti:** Integrazione di più gateway di pagamento e " +"gestione sicura delle transazioni.\n" +"- Gestione di blog e contenuti:** Creazione e gestione di post sul blog e di " +"contenuti di marketing per il vostro negozio.\n" +"- Operazioni B2B:** Endpoint dedicati per le transazioni business-to-" +"business e la gestione della vendita all'ingrosso.\n" +"- Supporto multilingue:** Servite i clienti in tutto il mondo con " +"funzionalità di internazionalizzazione completa (i18n).\n" +"- Integrazioni personalizzate:** Architettura API estensibile per " +"l'integrazione con piattaforme e servizi esterni.\n" +"- **Analitica e reportistica:** Generazione di report dettagliati su " +"vendite, inventario e comportamento dei clienti.\n" +"- Aggiornamenti in tempo reale:** Ottenete dati in tempo reale sui livelli " +"di inventario, sullo stato degli ordini e sulle modifiche dei prezzi.\n" "\n" "## API disponibili\n" "- API REST:** Interfaccia REST completa (questa documentazione)\n" -"- API **GraphQL:** Disponibile su `/graphql/` con interfaccia GraphiQL per le query interattive.\n" +"- API **GraphQL:** Disponibile su `/graphql/` con interfaccia GraphiQL per " +"le query interattive.\n" "\n" "## Autenticazione\n" -"- L'autenticazione è gestita tramite token JWT. Includere il token nell'intestazione `X-EVIBES-AUTH` delle richieste nel formato `Bearer `.\n" +"- L'autenticazione è gestita tramite token JWT. Includere il token " +"nell'intestazione `X-SCHON-AUTH` delle richieste nel formato `Bearer " +"`.\n" "- La durata di vita del token di accesso è {access_lifetime} {access_unit}.\n" "- La durata del token di aggiornamento è di {refresh_hours} ore.\n" -"- I token di aggiornamento vengono ruotati e invalidati automaticamente dopo l'uso per una maggiore sicurezza.\n" +"- I token di aggiornamento vengono ruotati e invalidati automaticamente dopo " +"l'uso per una maggiore sicurezza.\n" "\n" "## Internazionalizzazione (i18n)\n" -"- Impostare l'intestazione `Accept-Language` per specificare la lingua preferita (ad esempio, `Accept-Language: en-US`).\n" -"- Le lingue disponibili possono essere recuperate dall'endpoint `/app/languages/`.\n" -"- Tutti i contenuti rivolti all'utente supportano immediatamente più lingue.\n" +"- Impostare l'intestazione `Accept-Language` per specificare la lingua " +"preferita (ad esempio, `Accept-Language: en-US`).\n" +"- Le lingue disponibili possono essere recuperate dall'endpoint `/app/" +"languages/`.\n" +"- Tutti i contenuti rivolti all'utente supportano immediatamente più " +"lingue.\n" "\n" "## Formati di risposta\n" "L'API supporta diversi formati di risposta:\n" "- **JSON** (predefinito, formattato in camelCase)\n" "- **XML** (aggiungere `?format=xml` o impostare `Accept: application/xml`)\n" -"- **YAML** (aggiungere `?format=yaml` o impostare `Accept: application/x-yaml`)\n" +"- **YAML** (aggiungere `?format=yaml` o impostare `Accept: application/x-" +"yaml`)\n" "\n" "## Salute e monitoraggio\n" "- Controlli sulla salute: `/salute/`\n" @@ -235,66 +269,66 @@ msgstr "" "## Versione\n" "Versione attuale dell'API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Il mio sito" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Salute" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Supporto" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Cruscotto" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Configurazione" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Compiti periodici" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Lavagna" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Collegamenti rapidi" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Utenti" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Gruppi" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Ordini" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Prodotti" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categorie" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Marche" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/ja_JP/LC_MESSAGES/django.mo b/schon/locale/ja_JP/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/ja_JP/LC_MESSAGES/django.mo rename to schon/locale/ja_JP/LC_MESSAGES/django.mo index c72acfd5..3d6458eb 100644 Binary files a/evibes/locale/ja_JP/LC_MESSAGES/django.mo and b/schon/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ja_JP/LC_MESSAGES/django.po b/schon/locale/ja_JP/LC_MESSAGES/django.po similarity index 68% rename from evibes/locale/ja_JP/LC_MESSAGES/django.po rename to schon/locale/ja_JP/LC_MESSAGES/django.po index 13a6600c..5c5abf3f 100644 --- a/evibes/locale/ja_JP/LC_MESSAGES/django.po +++ b/schon/locale/ja_JP/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:19+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,164 +13,179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "会社名" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "会社住所" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "会社の電話番号" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "貴社管轄の税率。税務処理を行わない場合は「0」のままにしてください。" -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "商品の販売価格に税金が含まれているかどうかを表示します。" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "為替レートAPIキー" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "変えないでくれ" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTPホスト" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTPポート" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "TLSを使用する" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "SSLの使用" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTPユーザー名" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTPパスワード" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "オプションからのメール" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "匿名ユーザーからのメッセージの保存日数" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "認証されたユーザーからのメッセージを何日間保存するか" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "購入機能を無効にする" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI APIキー" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "抽象APIキー" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTPプロキシ" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "広告データを保存するエンティティ" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "分析データを保存するエンティティ" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "ベンダーのAPIからの応答を保存する" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "データベースのバックアップ" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "バックアップ・メディア" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "法的オプション" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Eメールオプション" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "機能オプション" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEOオプション" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "システムオプション" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -188,34 +203,44 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"eVibes のドキュメントへようこそ。\n" +"Schon のドキュメントへようこそ。\n" "\n" -"eVibesは、数クリックであらゆる種類のオンラインストアを立ち上げ、管理できる強力なeコマースプラットフォームです。\n" +"Schonは、数クリックであらゆる種類のオンラインストアを立ち上げ、管理できる強力" +"なeコマースプラットフォームです。\n" "\n" "## 主な機能\n" -"- 商品カタログ:** 複数のカテゴリにまたがる商品の詳細、価格、在庫、在庫状況を管理します。\n" +"- 商品カタログ:** 複数のカテゴリにまたがる商品の詳細、価格、在庫、在庫状況を" +"管理します。\n" "- 注文管理:**注文を処理し、履行を追跡し、顧客の要求を効率的に処理します。\n" "- JWT トークンとロールベースの権限による包括的なユーザー認証。\n" "- 複数の決済ゲートウェイを統合し、トランザクションを安全に管理します。\n" -"- ブログ・コンテンツ管理:** ブログ記事やマーケティングコンテンツを作成・管理できます。\n" +"- ブログ・コンテンツ管理:** ブログ記事やマーケティングコンテンツを作成・管理" +"できます。\n" "- B2B オペレーション:** 企業間取引と卸売管理のための専用エンドポイント。\n" -"- **多言語サポート:**完全な国際化(国際化)機能で世界中の顧客にサービスを提供します。\n" -"- カスタム統合:**外部プラットフォームやサービスと統合するための拡張可能なAPIアーキテクチャ。\n" +"- **多言語サポート:**完全な国際化(国際化)機能で世界中の顧客にサービスを提供" +"します。\n" +"- カスタム統合:**外部プラットフォームやサービスと統合するための拡張可能なAPI" +"アーキテクチャ。\n" "- 分析&レポート:**売上、在庫、顧客行動に関する詳細なレポートを生成します。\n" -"- リアルタイム更新:**在庫レベル、注文状況、価格変更に関するライブデータを取得します。\n" +"- リアルタイム更新:**在庫レベル、注文状況、価格変更に関するライブデータを取" +"得します。\n" "\n" "## 利用可能なAPI\n" "- **REST API:** 完全なRESTfulインターフェース(このドキュメント)\n" -"- **GraphQL API:** `/graphql/` で利用可能で、対話的なクエリのための GraphiQL インターフェースがある。\n" +"- **GraphQL API:** `/graphql/` で利用可能で、対話的なクエリのための GraphiQL " +"インターフェースがある。\n" "\n" "## 認証\n" -"- 認証はJWTトークンで行われる。リクエストの `X-EVIBES-AUTH` ヘッダーに `Bearer ` という形式でトークンを含めてください。\n" +"- 認証はJWTトークンで行われる。リクエストの `X-SCHON-AUTH` ヘッダーに " +"`Bearer ` という形式でトークンを含めてください。\n" "- アクセストークンの有効期限は {access_lifetime} です。{access_unit}です。\n" "- リフレッシュ・トークンの有効期限は {refresh_hours} 時間です。\n" -"- リフレッシュ・トークンはセキュリティ強化のため、使用後に自動的にローテーションされ無効化されます。\n" +"- リフレッシュ・トークンはセキュリティ強化のため、使用後に自動的にローテー" +"ションされ無効化されます。\n" "\n" "## 国際化 (i18n)\n" -"- Accept-Language`ヘッダを設定して、希望する言語を指定する (例: `Accept-Language: en-US`) 。\n" +"- Accept-Language`ヘッダを設定して、希望する言語を指定する (例: `Accept-" +"Language: en-US`) 。\n" "- 利用可能な言語は `/app/languages/` エンドポイントから取得できます。\n" "- すべてのユーザー向けコンテンツは、すぐに多言語をサポートします。\n" "\n" @@ -223,7 +248,8 @@ msgstr "" "APIは複数のレスポンスフォーマットをサポートしています:\n" "- JSON** (デフォルト、キャメルケースフォーマット)\n" "- XML** (`?format=xml` を追加するか、`Accept: application/xml` を設定する)\n" -"- YAML** (`?format=yaml` を追加するか、`Accept: application/x-yaml` を設定してください)\n" +"- YAML** (`?format=yaml` を追加するか、`Accept: application/x-yaml` を設定し" +"てください)\n" "\n" "## ヘルス&モニタリング\n" "- ヘルスチェックヘルスチェック: `/health/`\n" @@ -232,66 +258,66 @@ msgstr "" "## バージョン\n" "現在のAPIバージョン:現在のAPIバージョン: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "私のサイト" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "健康" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "サポート" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "メニュー" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "ダッシュボード" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "コンフィグ" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "定期的なタスク" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "タスクボード" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "クイックリンク" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "ユーザー" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "グループ" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "受注状況" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "製品紹介" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "カテゴリー" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "ブランド" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "ブログ記事" diff --git a/evibes/locale/kk_KZ/LC_MESSAGES/django.mo b/schon/locale/kk_KZ/LC_MESSAGES/django.mo similarity index 72% rename from evibes/locale/kk_KZ/LC_MESSAGES/django.mo rename to schon/locale/kk_KZ/LC_MESSAGES/django.mo index f7b56b65..582b5dd4 100644 Binary files a/evibes/locale/kk_KZ/LC_MESSAGES/django.mo and b/schon/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/hi_IN/LC_MESSAGES/django.po b/schon/locale/kk_KZ/LC_MESSAGES/django.po similarity index 70% rename from evibes/locale/hi_IN/LC_MESSAGES/django.po rename to schon/locale/kk_KZ/LC_MESSAGES/django.po index 0908c04b..4a758980 100644 --- a/evibes/locale/hi_IN/LC_MESSAGES/django.po +++ b/schon/locale/kk_KZ/LC_MESSAGES/django.po @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:13+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,140 +16,140 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and " -"manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" "- **Product Catalog:** Manage product details, pricing, inventory, and " @@ -180,7 +180,7 @@ msgid "" "\n" "## Authentication\n" "- Authentication is handled via JWT tokens. Include the token in the `X-" -"EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" "- Refresh tokens are automatically rotated and invalidated after usage for " @@ -206,66 +206,66 @@ msgid "" "Current API version: {version}\n" msgstr "" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "" diff --git a/evibes/locale/ko_KR/LC_MESSAGES/django.mo b/schon/locale/ko_KR/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/ko_KR/LC_MESSAGES/django.mo rename to schon/locale/ko_KR/LC_MESSAGES/django.mo index 2f0e1304..7f2258a9 100644 Binary files a/evibes/locale/ko_KR/LC_MESSAGES/django.mo and b/schon/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ko_KR/LC_MESSAGES/django.po b/schon/locale/ko_KR/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/ko_KR/LC_MESSAGES/django.po rename to schon/locale/ko_KR/LC_MESSAGES/django.po index 7067bc7f..c1cfa31b 100644 --- a/evibes/locale/ko_KR/LC_MESSAGES/django.po +++ b/schon/locale/ko_KR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:50+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,164 +13,180 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "회사 이름" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "회사 주소" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "회사 전화번호" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." -msgstr "회사 관할 지역의 세율입니다. 세금을 처리하지 않으려면 0을 그대로 둡니다." +msgstr "" +"회사 관할 지역의 세율입니다. 세금을 처리하지 않으려면 0을 그대로 둡니다." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "제품 판매 가격에 세금이 이미 포함되어 있는지 표시합니다." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "환율 API 키" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!변경하지 마세요!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP 호스트" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP 포트" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "TLS 사용" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "SSL 사용" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP 사용자 이름" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP 비밀번호" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "메일 발신자 옵션" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "익명 사용자의 메시지를 보관하는 일수" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "인증된 사용자의 메시지를 보관하는 일수" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "구매 기능 비활성화" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "오픈스트리트맵 노미나팀 API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API 키" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "추상 API 키" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP 프록시" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "광고 데이터를 저장하는 엔티티" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "분석 데이터를 저장하는 엔티티" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "공급업체 API의 응답 저장하기" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "백업 데이터베이스" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "백업 미디어" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "법적 옵션" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "이메일 옵션" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "기능 옵션" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO 옵션" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "시스템 옵션" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -188,34 +204,46 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"eVibes 문서에 오신 것을 환영합니다.\n" +"Schon 문서에 오신 것을 환영합니다.\n" "\n" -"eVibes는 클릭 몇 번으로 모든 종류의 온라인 스토어를 시작하고 관리할 수 있는 강력한 전자상거래 플랫폼입니다.\n" +"Schon는 클릭 몇 번으로 모든 종류의 온라인 스토어를 시작하고 관리할 수 있는 강" +"력한 전자상거래 플랫폼입니다.\n" "\n" "주요 기능 ## 주요 기능\n" -"- **제품 카탈로그:** 여러 카테고리에서 제품 세부 정보, 가격, 재고 및 가용성을 관리합니다.\n" -"- 주문 관리:** 주문을 처리하고, 주문 이행을 추적하고, 고객 요청을 효율적으로 처리하세요.\n" -"- 인증 및 권한 부여:** JWT 토큰 및 역할 기반 권한으로 포괄적인 사용자 인증을 수행합니다.\n" +"- **제품 카탈로그:** 여러 카테고리에서 제품 세부 정보, 가격, 재고 및 가용성" +"을 관리합니다.\n" +"- 주문 관리:** 주문을 처리하고, 주문 이행을 추적하고, 고객 요청을 효율적으로 " +"처리하세요.\n" +"- 인증 및 권한 부여:** JWT 토큰 및 역할 기반 권한으로 포괄적인 사용자 인증을 " +"수행합니다.\n" "- 결제 처리:** 여러 결제 게이트웨이를 통합하고 거래를 안전하게 관리하세요.\n" -"- **블로그 및 콘텐츠 관리:** 스토어용 블로그 게시물과 마케팅 콘텐츠를 생성하고 관리합니다.\n" +"- **블로그 및 콘텐츠 관리:** 스토어용 블로그 게시물과 마케팅 콘텐츠를 생성하" +"고 관리합니다.\n" "- B2B 운영:** B2B 거래 및 도매 관리를 위한 전용 엔드포인트.\n" -"- 다국어 지원:** 완전한 국제화(i18n) 기능으로 전 세계 고객에게 서비스를 제공합니다.\n" -"- **맞춤형 통합:** 외부 플랫폼 및 서비스와의 통합을 위한 확장 가능한 API 아키텍처.\n" -"- **분석 및 보고:** 판매, 재고, 고객 행동에 대한 상세한 보고서를 생성합니다.\n" -"- **실시간 업데이트:** 재고 수준, 주문 상태, 가격 변동에 대한 실시간 데이터를 받아보세요.\n" +"- 다국어 지원:** 완전한 국제화(i18n) 기능으로 전 세계 고객에게 서비스를 제공" +"합니다.\n" +"- **맞춤형 통합:** 외부 플랫폼 및 서비스와의 통합을 위한 확장 가능한 API 아키" +"텍처.\n" +"- **분석 및 보고:** 판매, 재고, 고객 행동에 대한 상세한 보고서를 생성합니" +"다.\n" +"- **실시간 업데이트:** 재고 수준, 주문 상태, 가격 변동에 대한 실시간 데이터" +"를 받아보세요.\n" "\n" "## 사용 가능한 API\n" "- **REST API:** 전체 RESTful 인터페이스(이 문서)\n" -"- GraphQL API:** 대화형 쿼리를 위한 GraphiQL 인터페이스로 `/graphql/`에서 사용 가능\n" +"- GraphQL API:** 대화형 쿼리를 위한 GraphiQL 인터페이스로 `/graphql/`에서 사" +"용 가능\n" "\n" "## 인증\n" -"- 인증은 JWT 토큰을 통해 처리됩니다. 토큰을 요청의 `X-EVIBES-AUTH` 헤더에 `Bearer ` 형식으로 포함하세요.\n" +"- 인증은 JWT 토큰을 통해 처리됩니다. 토큰을 요청의 `X-SCHON-AUTH` 헤더에 " +"`Bearer ` 형식으로 포함하세요.\n" "- 액세스 토큰 수명은 {access_lifetime}입니다. {access_unit}입니다.\n" "- 새로 고침 토큰 수명은 {refresh_hours} 시간입니다.\n" "- 새로 고침 토큰은 보안 강화를 위해 사용 후 자동으로 교체되고 무효화됩니다.\n" "\n" "## 국제화(i18n)\n" -"- 수락 언어` 헤더를 설정하여 선호하는 언어를 지정합니다(예: `수락 언어: en-US`).\n" +"- 수락 언어` 헤더를 설정하여 선호하는 언어를 지정합니다(예: `수락 언어: en-" +"US`).\n" "- 사용 가능한 언어는 `/app/languages/` 엔드포인트에서 검색할 수 있습니다.\n" "- 모든 사용자 대상 콘텐츠는 기본적으로 여러 언어를 지원합니다.\n" "\n" @@ -232,66 +260,66 @@ msgstr "" "## 버전\n" "현재 API 버전입니다: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "내 사이트" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "건강" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "지원" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "메뉴" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "대시보드" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "구성" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "정기 작업" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "작업 보드" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "빠른 링크" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "사용자" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "그룹" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "주문" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "제품" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "카테고리" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "브랜드" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "블로그 게시물" diff --git a/evibes/locale/nl_NL/LC_MESSAGES/django.mo b/schon/locale/nl_NL/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/nl_NL/LC_MESSAGES/django.mo rename to schon/locale/nl_NL/LC_MESSAGES/django.mo index 70b2be26..cdf31aef 100644 Binary files a/evibes/locale/nl_NL/LC_MESSAGES/django.mo and b/schon/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/nl_NL/LC_MESSAGES/django.po b/schon/locale/nl_NL/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/nl_NL/LC_MESSAGES/django.po rename to schon/locale/nl_NL/LC_MESSAGES/django.po index 815c86ae..3b74587d 100644 --- a/evibes/locale/nl_NL/LC_MESSAGES/django.po +++ b/schon/locale/nl_NL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,168 +13,183 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Naam van het bedrijf" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Adres van het bedrijf" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Telefoonnummer van het bedrijf" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -"Belastingtarief in het rechtsgebied van je bedrijf. Laat 0 staan als je geen" -" belastingen wilt verwerken." +"Belastingtarief in het rechtsgebied van je bedrijf. Laat 0 staan als je geen " +"belastingen wilt verwerken." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Geeft aan of de belastingen al zijn opgenomen in de verkoopprijzen van het " "product" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Wisselkoers API sleutel" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "NIET VERANDEREN!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP host" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP poort" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "TLS gebruiken" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "SSL gebruiken" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP gebruikersnaam" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP wachtwoord" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Mail van optie" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Hoeveel dagen we berichten van anonieme gebruikers bewaren" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Hoeveel dagen we berichten van geverifieerde gebruikers bewaren" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Koopfunctie uitschakelen" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API sleutel" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstracte API-sleutel" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Een entiteit voor het opslaan van adverteerdersgegevens" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Een entiteit voor het opslaan van analytische gegevens" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Reacties opslaan van API's van leveranciers" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Back-up database" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Back-up media" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Juridische opties" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "E-mailopties" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Functies Opties" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO Opties" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Systeemopties" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -192,42 +207,59 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Welkom bij de eVibes documentatie.\n" +"Welkom bij de Schon documentatie.\n" "\n" -"eVibes is een krachtig e-commerce platform waarmee je in een paar klikken een online winkel van elk type kunt starten en beheren.\n" +"Schon is een krachtig e-commerce platform waarmee je in een paar klikken een " +"online winkel van elk type kunt starten en beheren.\n" "\n" "## Belangrijkste functies\n" -"- **Productcatalogus:**Beheer productgegevens, prijzen, voorraad en beschikbaarheid in meerdere categorieën.\n" -"- **Order Management:** Verwerk bestellingen, volg de leveringen en behandel verzoeken van klanten efficiënt.\n" -"- **Authenticatie en autorisatie:**Uitgebreide gebruikersverificatie met JWT tokens en rolgebaseerde rechten.\n" -"- **Betalingsverwerking:** Integreer meerdere betalingsgateways en beheer transacties veilig.\n" -"- **Blog & Content Management:** Creëer en beheer blog posts en marketing content voor uw winkel.\n" -"- **B2B Operations:** Specifieke eindpunten voor business-to-business transacties en groothandelsbeheer.\n" -"- Ondersteuning voor meerdere talen:** Bedien klanten wereldwijd met volledige internationalisatiemogelijkheden (i18n).\n" -"- Aangepaste integraties:** Extensibele API-architectuur voor integratie met externe platforms en diensten.\n" -"- Analyse en rapportage:** Genereer gedetailleerde rapporten over verkoop, voorraad en klantgedrag.\n" -"- Realtime updates:** Ontvang live gegevens over voorraadniveaus, orderstatussen en prijswijzigingen.\n" +"- **Productcatalogus:**Beheer productgegevens, prijzen, voorraad en " +"beschikbaarheid in meerdere categorieën.\n" +"- **Order Management:** Verwerk bestellingen, volg de leveringen en behandel " +"verzoeken van klanten efficiënt.\n" +"- **Authenticatie en autorisatie:**Uitgebreide gebruikersverificatie met JWT " +"tokens en rolgebaseerde rechten.\n" +"- **Betalingsverwerking:** Integreer meerdere betalingsgateways en beheer " +"transacties veilig.\n" +"- **Blog & Content Management:** Creëer en beheer blog posts en marketing " +"content voor uw winkel.\n" +"- **B2B Operations:** Specifieke eindpunten voor business-to-business " +"transacties en groothandelsbeheer.\n" +"- Ondersteuning voor meerdere talen:** Bedien klanten wereldwijd met " +"volledige internationalisatiemogelijkheden (i18n).\n" +"- Aangepaste integraties:** Extensibele API-architectuur voor integratie met " +"externe platforms en diensten.\n" +"- Analyse en rapportage:** Genereer gedetailleerde rapporten over verkoop, " +"voorraad en klantgedrag.\n" +"- Realtime updates:** Ontvang live gegevens over voorraadniveaus, " +"orderstatussen en prijswijzigingen.\n" "\n" "## Beschikbare API's\n" "- **REST API:** Volledige RESTful interface (deze documentatie)\n" -"- **GraphQL API:** Beschikbaar op `/graphql/` met GraphiQL interface voor interactieve queries\n" +"- **GraphQL API:** Beschikbaar op `/graphql/` met GraphiQL interface voor " +"interactieve queries\n" "\n" "## Authenticatie\n" -"- Authenticatie wordt afgehandeld via JWT tokens. Neem het token op in de `X-EVIBES-AUTH` header van je verzoeken in het formaat `Bearer `.\n" +"- Authenticatie wordt afgehandeld via JWT tokens. Neem het token op in de `X-" +"SCHON-AUTH` header van je verzoeken in het formaat `Bearer `.\n" "- De levensduur van het toegangstoken is {access_lifetime} {access_unit}.\n" "- De levensduur van een verversingstoken is {refresh_hours} uur.\n" -"- Refresh tokens worden automatisch geroteerd en ongeldig gemaakt na gebruik voor een betere beveiliging.\n" +"- Refresh tokens worden automatisch geroteerd en ongeldig gemaakt na gebruik " +"voor een betere beveiliging.\n" "\n" "## Internationalisatie (i18n)\n" -"- Stel de `Accept-Language` header in om uw voorkeurstaal op te geven (bijvoorbeeld `Accept-Language: en-US`).\n" -"- Beschikbare talen kunnen worden opgehaald van het `/app/languages/` eindpunt.\n" +"- Stel de `Accept-Language` header in om uw voorkeurstaal op te geven " +"(bijvoorbeeld `Accept-Language: en-US`).\n" +"- Beschikbare talen kunnen worden opgehaald van het `/app/languages/` " +"eindpunt.\n" "- Alle gebruikerscontent ondersteunt standaard meerdere talen.\n" "\n" "## Antwoordformaten\n" "De API ondersteunt meerdere antwoordformaten:\n" "- **JSON** (standaard, camelCase geformatteerd)\n" "- **XML** (voeg `?format=xml` toe of stel `Accept: application/xml` in)\n" -"- **YAML** (voeg `?format=yaml` toe of stel `Accept: application/x-yaml` in)\n" +"- **YAML** (voeg `?format=yaml` toe of stel `Accept: application/x-yaml` " +"in)\n" "\n" "## Gezondheid en bewaking\n" "- Gezondheidscontroles: `/health/`\n" @@ -236,66 +268,66 @@ msgstr "" "## Versie\n" "Huidige API versie: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Mijn site" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Gezondheid" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Ondersteuning" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dashboard" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Config" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periodieke taken" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Taakbord" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Snelle links" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Gebruikers" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Groepen" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Bestellingen" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Producten" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categorieën" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Merken" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/no_NO/LC_MESSAGES/django.mo b/schon/locale/no_NO/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/no_NO/LC_MESSAGES/django.mo rename to schon/locale/no_NO/LC_MESSAGES/django.mo index 141df521..82bfd566 100644 Binary files a/evibes/locale/no_NO/LC_MESSAGES/django.mo and b/schon/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/no_NO/LC_MESSAGES/django.po b/schon/locale/no_NO/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/no_NO/LC_MESSAGES/django.po rename to schon/locale/no_NO/LC_MESSAGES/django.po index cbde92f2..76202e8a 100644 --- a/evibes/locale/no_NO/LC_MESSAGES/django.po +++ b/schon/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,166 +13,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Selskapets navn" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Selskapets adresse" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Telefonnummer til selskapet" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -"Skattesats i jurisdiksjonen til selskapet ditt. La 0 stå hvis du ikke ønsker" -" å behandle skatter." +"Skattesats i jurisdiksjonen til selskapet ditt. La 0 stå hvis du ikke ønsker " +"å behandle skatter." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Viser om avgiftene allerede er inkludert i produktets salgspris" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "API-nøkkel for valutakurs" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!! IKKE ENDRE !!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP-vert" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP-port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Bruk TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Bruk SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP-brukernavn" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP-passord" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Alternativet Mail fra" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Hvor mange dager vi lagrer meldinger fra anonyme brukere" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Hvor mange dager vi lagrer meldinger fra autentiserte brukere" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Deaktiver kjøpsfunksjonalitet" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API-nøkkel" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstrakt API-nøkkel" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "En enhet for lagring av annonseringsdata" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "En enhet for lagring av analysedata" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Lagre svar fra leverandørers API-er" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Sikkerhetskopiering av database" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Backup-medier" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Juridiske alternativer" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "E-postalternativer" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Funksjoner Alternativer" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO-alternativer" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Systemalternativer" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,34 +205,49 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Velkommen til eVibes-dokumentasjonen.\n" +"Velkommen til Schon-dokumentasjonen.\n" "\n" -"eVibes er en kraftig e-handelsplattform som lar deg starte og administrere en hvilken som helst type nettbutikk med bare noen få klikk.\n" +"Schon er en kraftig e-handelsplattform som lar deg starte og administrere en " +"hvilken som helst type nettbutikk med bare noen få klikk.\n" "\n" "## Nøkkelfunksjoner\n" -"- Produktkatalog:** Administrer produktdetaljer, priser, lagerbeholdning og tilgjengelighet på tvers av flere kategorier.\n" -"- Ordrehåndtering:** Behandle bestillinger, spore oppfyllelse og håndtere kundeforespørsler effektivt.\n" -"- Autentisering og autorisasjon:** Omfattende brukerautentisering med JWT-tokens og rollebaserte tillatelser.\n" -"- Betalingsbehandling: ** Integrer flere betalingsportaler og håndter transaksjoner på en sikker måte.\n" -"- Blogg- og innholdsadministrasjon: ** Opprett og administrer blogginnlegg og markedsføringsinnhold for butikken din.\n" -"- B2B-drift: ** Dedikerte endepunkter for business-to-business-transaksjoner og grossistadministrasjon.\n" -"- Flerspråklig støtte:** Betjen kunder over hele verden med full internasjonaliseringsfunksjonalitet (i18n).\n" -"- **Tilpassede integrasjoner:** Utvidbar API-arkitektur for integrering med eksterne plattformer og tjenester.\n" -"- Analyse og rapportering:** Generer detaljerte rapporter om salg, lagerbeholdning og kundeatferd.\n" -"- Sanntidsoppdateringer:** Få sanntidsdata om lagernivåer, ordrestatus og prisendringer.\n" +"- Produktkatalog:** Administrer produktdetaljer, priser, lagerbeholdning og " +"tilgjengelighet på tvers av flere kategorier.\n" +"- Ordrehåndtering:** Behandle bestillinger, spore oppfyllelse og håndtere " +"kundeforespørsler effektivt.\n" +"- Autentisering og autorisasjon:** Omfattende brukerautentisering med JWT-" +"tokens og rollebaserte tillatelser.\n" +"- Betalingsbehandling: ** Integrer flere betalingsportaler og håndter " +"transaksjoner på en sikker måte.\n" +"- Blogg- og innholdsadministrasjon: ** Opprett og administrer blogginnlegg " +"og markedsføringsinnhold for butikken din.\n" +"- B2B-drift: ** Dedikerte endepunkter for business-to-business-transaksjoner " +"og grossistadministrasjon.\n" +"- Flerspråklig støtte:** Betjen kunder over hele verden med full " +"internasjonaliseringsfunksjonalitet (i18n).\n" +"- **Tilpassede integrasjoner:** Utvidbar API-arkitektur for integrering med " +"eksterne plattformer og tjenester.\n" +"- Analyse og rapportering:** Generer detaljerte rapporter om salg, " +"lagerbeholdning og kundeatferd.\n" +"- Sanntidsoppdateringer:** Få sanntidsdata om lagernivåer, ordrestatus og " +"prisendringer.\n" "\n" "## Tilgjengelige API-er\n" "- **REST API:** Fullt REST-grensesnitt (denne dokumentasjonen)\n" -"- GraphiQL API:** Tilgjengelig på `/graphql/` med GraphiQL-grensesnitt for interaktive spørringer\n" +"- GraphiQL API:** Tilgjengelig på `/graphql/` med GraphiQL-grensesnitt for " +"interaktive spørringer\n" "\n" "## Autentisering\n" -"- Autentisering håndteres via JWT-tokens. Inkluder tokenet i `X-EVIBES-AUTH`-overskriften i forespørslene dine i formatet `Bearer `.\n" +"- Autentisering håndteres via JWT-tokens. Inkluder tokenet i `X-SCHON-AUTH`-" +"overskriften i forespørslene dine i formatet `Bearer `.\n" "- Levetiden for tilgangstoken er {access_lifetime}. {access_unit}.\n" "- Levetiden for oppdateringstoken er {refresh_hours} timer.\n" -"- Oppdateringstokener roteres automatisk og ugyldiggjøres etter bruk for økt sikkerhet.\n" +"- Oppdateringstokener roteres automatisk og ugyldiggjøres etter bruk for økt " +"sikkerhet.\n" "\n" "## Internasjonalisering (i18n)\n" -"- Angi `Accept-Language`-overskriften for å spesifisere ditt foretrukne språk (f.eks. `Accept-Language: en-US`).\n" +"- Angi `Accept-Language`-overskriften for å spesifisere ditt foretrukne " +"språk (f.eks. `Accept-Language: en-US`).\n" "- Tilgjengelige språk kan hentes fra endepunktet `/app/languages/`.\n" "- Alt brukerrettet innhold støtter flere språk uten videre.\n" "\n" @@ -225,7 +255,8 @@ msgstr "" "API-et støtter flere svarformater:\n" "- **JSON** (standard, camelCase-formatert)\n" "- XML** (legg til `?format=xml` eller angi `Accept: application/xml`)\n" -"- **YAML** (legg til `?format=yaml` eller angi `Accept: application/x-yaml`)\n" +"- **YAML** (legg til `?format=yaml` eller angi `Accept: application/x-" +"yaml`)\n" "\n" "## Helse og overvåking\n" "- Helsesjekker: `/health/`\n" @@ -234,66 +265,66 @@ msgstr "" "## Versjon\n" "Gjeldende API-versjon: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Min side" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Helse" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Støtte" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Meny" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Dashbord" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfigurer" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periodiske oppgaver" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Oppgavetavle" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Hurtigkoblinger" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Brukere" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupper" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Bestillinger" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produkter" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategorier" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Merkevarer" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogginnlegg" diff --git a/evibes/locale/pl_PL/LC_MESSAGES/django.mo b/schon/locale/pl_PL/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/pl_PL/LC_MESSAGES/django.mo rename to schon/locale/pl_PL/LC_MESSAGES/django.mo index deae1dfa..152783dd 100644 Binary files a/evibes/locale/pl_PL/LC_MESSAGES/django.mo and b/schon/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/pl_PL/LC_MESSAGES/django.po b/schon/locale/pl_PL/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/pl_PL/LC_MESSAGES/django.po rename to schon/locale/pl_PL/LC_MESSAGES/django.po index 16e48b03..7c4ad2d5 100644 --- a/evibes/locale/pl_PL/LC_MESSAGES/django.po +++ b/schon/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Nazwa firmy" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Adres spółki" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Numer telefonu firmy" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "Stawka podatku w jurysdykcji Twojej firmy. Pozostaw 0, jeśli nie chcesz " "przetwarzać podatków." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Pokazuje, czy podatki są już uwzględnione w cenie sprzedaży produktu." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Klucz API kursu wymiany" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!! NIE ZMIENIAJ !!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Host SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Port SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Używanie TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Używanie protokołu SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nazwa użytkownika SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Hasło SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Poczta z opcji" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Ile dni przechowujemy wiadomości od anonimowych użytkowników?" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Ile dni przechowujemy wiadomości od uwierzytelnionych użytkowników?" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Wyłączenie funkcji kupowania" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "Adres URL interfejsu API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Klucz API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstrakcyjny klucz API" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Serwer proxy HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Jednostka do przechowywania danych reklamowych" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Jednostka do przechowywania danych analitycznych" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Zapisywanie odpowiedzi z interfejsów API dostawców" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Kopia zapasowa bazy danych" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Nośniki kopii zapasowych" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Opcje prawne" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Opcje e-mail" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Opcje funkcji" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Opcje SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Opcje systemowe" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,36 +205,53 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Witamy w dokumentacji eVibes.\n" +"Witamy w dokumentacji Schon.\n" "\n" -"eVibes to potężna platforma e-commerce, która umożliwia uruchomienie i zarządzanie sklepem internetowym dowolnego rodzaju za pomocą zaledwie kilku kliknięć.\n" +"Schon to potężna platforma e-commerce, która umożliwia uruchomienie i " +"zarządzanie sklepem internetowym dowolnego rodzaju za pomocą zaledwie kilku " +"kliknięć.\n" "\n" "## Kluczowe funkcje\n" -"- Katalog produktów:** Zarządzanie szczegółami produktów, cenami, zapasami i dostępnością w wielu kategoriach.\n" -"- **Zarządzanie zamówieniami:** Przetwarzanie zamówień, śledzenie realizacji i efektywna obsługa zgłoszeń klientów.\n" -"- Uwierzytelnianie i autoryzacja:** Kompleksowe uwierzytelnianie użytkowników za pomocą tokenów JWT i uprawnień opartych na rolach.\n" -"- Przetwarzanie płatności:** Integracja wielu bramek płatniczych i bezpieczne zarządzanie transakcjami.\n" -"- Blog i zarządzanie treścią:** Tworzenie i zarządzanie postami na blogu i treściami marketingowymi dla sklepu.\n" -"- Operacje B2B:** Dedykowane punkty końcowe dla transakcji między firmami i zarządzania sprzedażą hurtową.\n" -"- Obsługa wielu języków:** Obsługa klientów na całym świecie dzięki pełnym możliwościom internacjonalizacji (i18n).\n" -"- Integracje niestandardowe:** Rozszerzalna architektura API do integracji z zewnętrznymi platformami i usługami.\n" -"- Analityka i raportowanie:** Generowanie szczegółowych raportów dotyczących sprzedaży, zapasów i zachowań klientów.\n" -"- Aktualizacje w czasie rzeczywistym:** Uzyskaj dane na żywo o poziomach zapasów, statusach zamówień i zmianach cen.\n" +"- Katalog produktów:** Zarządzanie szczegółami produktów, cenami, zapasami i " +"dostępnością w wielu kategoriach.\n" +"- **Zarządzanie zamówieniami:** Przetwarzanie zamówień, śledzenie realizacji " +"i efektywna obsługa zgłoszeń klientów.\n" +"- Uwierzytelnianie i autoryzacja:** Kompleksowe uwierzytelnianie " +"użytkowników za pomocą tokenów JWT i uprawnień opartych na rolach.\n" +"- Przetwarzanie płatności:** Integracja wielu bramek płatniczych i " +"bezpieczne zarządzanie transakcjami.\n" +"- Blog i zarządzanie treścią:** Tworzenie i zarządzanie postami na blogu i " +"treściami marketingowymi dla sklepu.\n" +"- Operacje B2B:** Dedykowane punkty końcowe dla transakcji między firmami i " +"zarządzania sprzedażą hurtową.\n" +"- Obsługa wielu języków:** Obsługa klientów na całym świecie dzięki pełnym " +"możliwościom internacjonalizacji (i18n).\n" +"- Integracje niestandardowe:** Rozszerzalna architektura API do integracji z " +"zewnętrznymi platformami i usługami.\n" +"- Analityka i raportowanie:** Generowanie szczegółowych raportów dotyczących " +"sprzedaży, zapasów i zachowań klientów.\n" +"- Aktualizacje w czasie rzeczywistym:** Uzyskaj dane na żywo o poziomach " +"zapasów, statusach zamówień i zmianach cen.\n" "\n" "## Dostępne API\n" "- **REST API:** Pełny interfejs RESTful (ta dokumentacja)\n" -"- API GraphQL:** Dostępne pod adresem `/graphql/` z interfejsem GraphiQL do interaktywnych zapytań.\n" +"- API GraphQL:** Dostępne pod adresem `/graphql/` z interfejsem GraphiQL do " +"interaktywnych zapytań.\n" "\n" "## Uwierzytelnianie\n" -"- Uwierzytelnianie jest obsługiwane za pomocą tokenów JWT. Dołącz token w nagłówku `X-EVIBES-AUTH` swoich żądań w formacie `Bearer `.\n" +"- Uwierzytelnianie jest obsługiwane za pomocą tokenów JWT. Dołącz token w " +"nagłówku `X-SCHON-AUTH` swoich żądań w formacie `Bearer `.\n" "- Okres ważności tokenu dostępu wynosi {access_lifetime} {access_unit}.\n" "- Okres ważności tokenu odświeżania wynosi {refresh_hours} godzin.\n" -"- Tokeny odświeżania są automatycznie obracane i unieważniane po użyciu w celu zwiększenia bezpieczeństwa.\n" +"- Tokeny odświeżania są automatycznie obracane i unieważniane po użyciu w " +"celu zwiększenia bezpieczeństwa.\n" "\n" "## Internacjonalizacja (i18n)\n" -"- Ustaw nagłówek `Accept-Language`, aby określić preferowany język (np. `Accept-Language: en-US`).\n" +"- Ustaw nagłówek `Accept-Language`, aby określić preferowany język (np. " +"`Accept-Language: en-US`).\n" "- Dostępne języki można pobrać z punktu końcowego `/app/languages/`.\n" -"- Cała zawartość skierowana do użytkownika obsługuje wiele języków od razu po wyjęciu z pudełka.\n" +"- Cała zawartość skierowana do użytkownika obsługuje wiele języków od razu " +"po wyjęciu z pudełka.\n" "\n" "## Formaty odpowiedzi\n" "API obsługuje wiele formatów odpowiedzi:\n" @@ -234,66 +266,66 @@ msgstr "" "## Wersja\n" "Aktualna wersja API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Moja strona" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Zdrowie" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Wsparcie" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Pulpit nawigacyjny" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfiguracja" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Zadania okresowe" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Tablica zadań" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Szybkie łącza" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Użytkownicy" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupy" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Zamówienia" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produkty" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategorie" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Marki" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposts" diff --git a/evibes/locale/pt_BR/LC_MESSAGES/django.mo b/schon/locale/pt_BR/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/pt_BR/LC_MESSAGES/django.mo rename to schon/locale/pt_BR/LC_MESSAGES/django.mo index 062d4a6c..6230678e 100644 Binary files a/evibes/locale/pt_BR/LC_MESSAGES/django.mo and b/schon/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/pt_BR/LC_MESSAGES/django.po b/schon/locale/pt_BR/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/pt_BR/LC_MESSAGES/django.po rename to schon/locale/pt_BR/LC_MESSAGES/django.po index c45ad2b6..2fe9705b 100644 --- a/evibes/locale/pt_BR/LC_MESSAGES/django.po +++ b/schon/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Nome da empresa" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Endereço da empresa" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Número de telefone da empresa" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,147 +33,162 @@ msgstr "" "Taxa de imposto na jurisdição de sua empresa. Deixe 0 se você não quiser " "processar impostos." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Mostra se os impostos já estão incluídos nos preços de venda do produto" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Chave da API de taxa de câmbio" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!NÃO MUDE!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Host SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Porta SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Usar TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Usar SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nome de usuário SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Senha SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Opção de correio eletrônico de" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Por quantos dias armazenamos mensagens de usuários anônimos" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Por quantos dias armazenamos mensagens de usuários autenticados" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Desativar a funcionalidade de compra" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL da API do OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Chave da API da OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Chave abstrata da API" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Uma entidade para armazenar dados de propaganda" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Uma entidade para armazenar dados analíticos" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Salvar respostas das APIs dos fornecedores" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Banco de dados de backup" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Mídia de backup" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Opções legais" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Opções de e-mail" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Opções de recursos" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Opções de SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Opções do sistema" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -191,36 +206,55 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Bem-vindo à documentação do eVibes.\n" +"Bem-vindo à documentação do Schon.\n" "\n" -"O eVibes é uma poderosa plataforma de comércio eletrônico que lhe permite lançar e gerenciar uma loja on-line de qualquer tipo com apenas alguns cliques.\n" +"O Schon é uma poderosa plataforma de comércio eletrônico que lhe permite " +"lançar e gerenciar uma loja on-line de qualquer tipo com apenas alguns " +"cliques.\n" "\n" "## Principais recursos\n" -"- Catálogo de produtos:** Gerencie detalhes, preços, estoque e disponibilidade de produtos em várias categorias.\n" -"- Gerenciamento de pedidos:** Processe pedidos, acompanhe o atendimento e trate as solicitações dos clientes com eficiência.\n" -"- Autenticação e autorização:** Autenticação abrangente de usuários com tokens JWT e permissões baseadas em funções.\n" -"- Processamento de pagamentos: integre vários gateways de pagamento e gerencie as transações com segurança.\n" -"- **Gerenciamento de blogs e conteúdo:** Crie e gerencie postagens de blogs e conteúdo de marketing para sua loja.\n" -"- Operações B2B:** Pontos de extremidade dedicados para transações business-to-business e gerenciamento de atacado.\n" -"- Suporte a vários idiomas:** Atenda a clientes em todo o mundo com recursos completos de internacionalização (i18n).\n" -"- Integrações personalizadas:** Arquitetura de API extensível para integração com plataformas e serviços externos.\n" -"- Análises e relatórios:** Gerar relatórios detalhados sobre vendas, estoque e comportamento do cliente.\n" -"- Atualizações em tempo real:** Obtenha dados em tempo real sobre níveis de estoque, status de pedidos e alterações de preços.\n" +"- Catálogo de produtos:** Gerencie detalhes, preços, estoque e " +"disponibilidade de produtos em várias categorias.\n" +"- Gerenciamento de pedidos:** Processe pedidos, acompanhe o atendimento e " +"trate as solicitações dos clientes com eficiência.\n" +"- Autenticação e autorização:** Autenticação abrangente de usuários com " +"tokens JWT e permissões baseadas em funções.\n" +"- Processamento de pagamentos: integre vários gateways de pagamento e " +"gerencie as transações com segurança.\n" +"- **Gerenciamento de blogs e conteúdo:** Crie e gerencie postagens de blogs " +"e conteúdo de marketing para sua loja.\n" +"- Operações B2B:** Pontos de extremidade dedicados para transações business-" +"to-business e gerenciamento de atacado.\n" +"- Suporte a vários idiomas:** Atenda a clientes em todo o mundo com recursos " +"completos de internacionalização (i18n).\n" +"- Integrações personalizadas:** Arquitetura de API extensível para " +"integração com plataformas e serviços externos.\n" +"- Análises e relatórios:** Gerar relatórios detalhados sobre vendas, estoque " +"e comportamento do cliente.\n" +"- Atualizações em tempo real:** Obtenha dados em tempo real sobre níveis de " +"estoque, status de pedidos e alterações de preços.\n" "\n" "## APIs disponíveis\n" "- API REST:** Interface RESTful completa (esta documentação)\n" -"- API GraphQL:** Disponível em `/graphql/` com interface GraphiQL para consultas interativas\n" +"- API GraphQL:** Disponível em `/graphql/` com interface GraphiQL para " +"consultas interativas\n" "\n" "## Autenticação\n" -"- A autenticação é tratada por meio de tokens JWT. Inclua o token no cabeçalho `X-EVIBES-AUTH` de suas solicitações no formato `Bearer `.\n" +"- A autenticação é tratada por meio de tokens JWT. Inclua o token no " +"cabeçalho `X-SCHON-AUTH` de suas solicitações no formato `Bearer " +"`.\n" "- O tempo de vida do token de acesso é {access_lifetime} {access_unit}.\n" "- A vida útil do token de atualização é de {refresh_hours} horas.\n" -"- Os tokens de atualização são automaticamente girados e invalidados após o uso para aumentar a segurança.\n" +"- Os tokens de atualização são automaticamente girados e invalidados após o " +"uso para aumentar a segurança.\n" "\n" "## Internacionalização (i18n)\n" -"- Defina o cabeçalho `Accept-Language` para especificar seu idioma preferido (por exemplo, `Accept-Language: en-US`).\n" -"- Os idiomas disponíveis podem ser recuperados no ponto de extremidade `/app/languages/`.\n" -"- Todo o conteúdo voltado para o usuário é compatível com vários idiomas desde o início.\n" +"- Defina o cabeçalho `Accept-Language` para especificar seu idioma preferido " +"(por exemplo, `Accept-Language: en-US`).\n" +"- Os idiomas disponíveis podem ser recuperados no ponto de extremidade `/app/" +"languages/`.\n" +"- Todo o conteúdo voltado para o usuário é compatível com vários idiomas " +"desde o início.\n" "\n" "## Formatos de resposta\n" "A API oferece suporte a vários formatos de resposta:\n" @@ -235,66 +269,66 @@ msgstr "" "## Versão\n" "Versão atual da API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Meu site" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Saúde" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Suporte" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Painel de controle" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Configuração" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Tarefas periódicas" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Quadro de tarefas" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Links rápidos" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Usuários" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupos" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Pedidos" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produtos" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categorias" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Marcas" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Postagens em blogs" diff --git a/evibes/locale/ro_RO/LC_MESSAGES/django.mo b/schon/locale/ro_RO/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/ro_RO/LC_MESSAGES/django.mo rename to schon/locale/ro_RO/LC_MESSAGES/django.mo index 9d21414b..9be58001 100644 Binary files a/evibes/locale/ro_RO/LC_MESSAGES/django.mo and b/schon/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ro_RO/LC_MESSAGES/django.po b/schon/locale/ro_RO/LC_MESSAGES/django.po similarity index 64% rename from evibes/locale/ro_RO/LC_MESSAGES/django.po rename to schon/locale/ro_RO/LC_MESSAGES/django.po index 30834bdd..2d4d87f7 100644 --- a/evibes/locale/ro_RO/LC_MESSAGES/django.po +++ b/schon/locale/ro_RO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:19+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Denumirea societății" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Adresa societății" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Numărul de telefon al societății" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,147 +33,162 @@ msgstr "" "Cota de impozitare în jurisdicția companiei dumneavoastră. Lăsați 0 dacă nu " "doriți să procesați taxele." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "" "Arată dacă taxele sunt deja incluse în prețurile de vânzare ale produsului" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Cheie API pentru rata de schimb" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!NU SCHIMBAȚI!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Gazdă SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Portul SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Utilizați TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Utilizați SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Nume utilizator SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Parola SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Posta de la opțiune" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Câte zile păstrăm mesajele de la utilizatorii anonimi" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Câte zile stocăm mesajele de la utilizatorii autentificați" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Dezactivați funcționalitatea de cumpărare" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Cheie API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Cheie API abstractă" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "O entitate pentru stocarea datelor privind publicitatea" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "O entitate pentru stocarea datelor analitice" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Salvați răspunsurile de la API-urile furnizorilor" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Backup bază de date" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Suporturi de rezervă" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Opțiuni juridice" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Opțiuni de e-mail" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Caracteristici Opțiuni" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Opțiuni SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Opțiuni de sistem" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -191,42 +206,62 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Bine ați venit la documentația eVibes.\n" +"Bine ați venit la documentația Schon.\n" "\n" -"eVibes este o platformă puternică de comerț electronic care vă permite să lansați și să gestionați un magazin online de orice tip în doar câteva clicuri.\n" +"Schon este o platformă puternică de comerț electronic care vă permite să " +"lansați și să gestionați un magazin online de orice tip în doar câteva " +"clicuri.\n" "\n" "## Caracteristici principale\n" -"- **Product Catalog:** Gestionați detaliile produselor, prețurile, inventarul și disponibilitatea în mai multe categorii.\n" -"- **Order Management:** Procesați comenzile, urmăriți îndeplinirea și gestionați eficient cererile clienților.\n" -"- **Autentificare și autorizare: ** Autentificare cuprinzătoare a utilizatorilor cu token-uri JWT și permisiuni bazate pe roluri.\n" -"- **Payment Processing:** Integrați mai multe gateway-uri de plată și gestionați tranzacțiile în siguranță.\n" -"- **Blog & Content Management:** Creați și gestionați postări pe blog și conținut de marketing pentru magazinul dvs.\n" -"- **B2B Operations:** Puncte finale dedicate pentru tranzacțiile business-to-business și gestionarea comerțului cu ridicata.\n" -"- **Suport multilingv:** Serviți clienții din întreaga lume cu capacități complete de internaționalizare (i18n).\n" -"- **Integrații personalizate:** Arhitectură API extensibilă pentru integrarea cu platforme și servicii externe.\n" -"- **Analytics & Reporting:** Generați rapoarte detaliate privind vânzările, stocurile și comportamentul clienților.\n" -"- **Actualizări în timp real:** Obțineți date în timp real privind nivelurile stocurilor, starea comenzilor și modificările prețurilor.\n" +"- **Product Catalog:** Gestionați detaliile produselor, prețurile, " +"inventarul și disponibilitatea în mai multe categorii.\n" +"- **Order Management:** Procesați comenzile, urmăriți îndeplinirea și " +"gestionați eficient cererile clienților.\n" +"- **Autentificare și autorizare: ** Autentificare cuprinzătoare a " +"utilizatorilor cu token-uri JWT și permisiuni bazate pe roluri.\n" +"- **Payment Processing:** Integrați mai multe gateway-uri de plată și " +"gestionați tranzacțiile în siguranță.\n" +"- **Blog & Content Management:** Creați și gestionați postări pe blog și " +"conținut de marketing pentru magazinul dvs.\n" +"- **B2B Operations:** Puncte finale dedicate pentru tranzacțiile business-to-" +"business și gestionarea comerțului cu ridicata.\n" +"- **Suport multilingv:** Serviți clienții din întreaga lume cu capacități " +"complete de internaționalizare (i18n).\n" +"- **Integrații personalizate:** Arhitectură API extensibilă pentru " +"integrarea cu platforme și servicii externe.\n" +"- **Analytics & Reporting:** Generați rapoarte detaliate privind vânzările, " +"stocurile și comportamentul clienților.\n" +"- **Actualizări în timp real:** Obțineți date în timp real privind " +"nivelurile stocurilor, starea comenzilor și modificările prețurilor.\n" "\n" "## API-uri disponibile\n" "- **REST API:** Interfață RESTful completă (această documentație)\n" -"- **GraphQL API:** Disponibil la `/graphql/` cu interfața GraphiQL pentru interogări interactive\n" +"- **GraphQL API:** Disponibil la `/graphql/` cu interfața GraphiQL pentru " +"interogări interactive\n" "\n" "## Autentificare\n" -"- Autentificarea este gestionată prin jetoane JWT. Includeți tokenul în antetul `X-EVIBES-AUTH` al cererilor dvs. în formatul `Bearer `.\n" -"- Durata de viață a jetonului de acces este {access_lifetime} {access_unit}.\n" +"- Autentificarea este gestionată prin jetoane JWT. Includeți tokenul în " +"antetul `X-SCHON-AUTH` al cererilor dvs. în formatul `Bearer `.\n" +"- Durata de viață a jetonului de acces este {access_lifetime} " +"{access_unit}.\n" "- Durata de viață a jetonului de reînnoire este de {refresh_hours} ore.\n" -"- Jetoanele de reîmprospătare sunt rotite automat și invalidate după utilizare pentru o securitate sporită.\n" +"- Jetoanele de reîmprospătare sunt rotite automat și invalidate după " +"utilizare pentru o securitate sporită.\n" "\n" "## Internaționalizare (i18n)\n" -"- Setați antetul `Accept-Language` pentru a specifica limba preferată (de exemplu, `Accept-Language: en-US`).\n" -"- Limbile disponibile pot fi preluate de la punctul final `/app/languages/`.\n" -"- Toate conținuturile destinate utilizatorilor acceptă din start mai multe limbi.\n" +"- Setați antetul `Accept-Language` pentru a specifica limba preferată (de " +"exemplu, `Accept-Language: en-US`).\n" +"- Limbile disponibile pot fi preluate de la punctul final `/app/languages/" +"`.\n" +"- Toate conținuturile destinate utilizatorilor acceptă din start mai multe " +"limbi.\n" "\n" "## Formate de răspuns\n" "API acceptă mai multe formate de răspuns:\n" "- **JSON** (implicit, formatat camelCase)\n" "- **XML** (adăugați `?format=xml` sau setați `Accept: application/xml`)\n" -"- **YAML** (adăugați `?format=yaml` sau setați `Accept: application/x-yaml`)\n" +"- **YAML** (adăugați `?format=yaml` sau setați `Accept: application/x-" +"yaml`)\n" "\n" "## Sănătate și monitorizare\n" "- Verificări de sănătate: `/health/`\n" @@ -235,66 +270,66 @@ msgstr "" "## Versiune\n" "Versiunea curentă a API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Site-ul meu" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Sănătate" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Sprijin" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Meniu" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Tablou de bord" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Configurare" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Sarcini periodice" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Tablou de sarcini" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Linkuri rapide" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Utilizatori" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupuri" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Ordine" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produse" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Categorii" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Mărci" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogposturi" diff --git a/evibes/locale/ru_RU/LC_MESSAGES/django.mo b/schon/locale/ru_RU/LC_MESSAGES/django.mo similarity index 70% rename from evibes/locale/ru_RU/LC_MESSAGES/django.mo rename to schon/locale/ru_RU/LC_MESSAGES/django.mo index eda67f2d..8a69fb64 100644 Binary files a/evibes/locale/ru_RU/LC_MESSAGES/django.mo and b/schon/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ru_RU/LC_MESSAGES/django.po b/schon/locale/ru_RU/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/ru_RU/LC_MESSAGES/django.po rename to schon/locale/ru_RU/LC_MESSAGES/django.po index 7bad368e..2138f0c1 100644 --- a/evibes/locale/ru_RU/LC_MESSAGES/django.po +++ b/schon/locale/ru_RU/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:47+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Название компании" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Адрес компании" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Номер телефона компании" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "Ставка налога в юрисдикции вашей компании. Оставьте 0, если вы не хотите " "обрабатывать налоги." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Показывает, включены ли налоги в отпускную цену продукта." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Ключ API обменного курса" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!НЕ МЕНЯЙТЕ!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP-хост" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Порт SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Используйте TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Используйте SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Имя пользователя SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Пароль SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Почта из опции" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Сколько дней мы храним сообщения от анонимных пользователей" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Сколько дней мы храним сообщения от аутентифицированных пользователей" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Отключить функцию покупки" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "URL-адрес API OpenStreetMap Nominatim" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Ключ API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Абстрактный ключ API" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP-прокси" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Сущность для хранения данных о рекламе" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Сущность для хранения аналитических данных" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Сохраняйте ответы от API поставщиков" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Резервная копия базы данных" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Резервные носители" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Юридические возможности" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Параметры электронной почты" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Характеристики Опции" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Параметры SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Параметры системы" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,42 +205,60 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Добро пожаловать в документацию eVibes.\n" +"Добро пожаловать в документацию Schon.\n" "\n" -"eVibes - это мощная платформа для электронной коммерции, которая позволяет запустить и управлять интернет-магазином любого типа всего за несколько кликов.\n" +"Schon - это мощная платформа для электронной коммерции, которая позволяет " +"запустить и управлять интернет-магазином любого типа всего за несколько " +"кликов.\n" "\n" "## Ключевые особенности.\n" -"- **Каталог товаров:** Управление информацией о товарах, ценами, запасами и наличием товаров в нескольких категориях.\n" -"- **Управление заказами:** Обработка заказов, отслеживание выполнения и эффективная обработка запросов клиентов.\n" -"- **Аутентификация и авторизация:** Комплексная аутентификация пользователей с помощью JWT-токенов и ролевых разрешений.\n" -"- **Обработка платежей:** Интеграция нескольких платежных шлюзов и безопасное управление транзакциями.\n" -"- **Управление блогом и контентом:** Создание и управление записями в блоге и маркетинговым контентом для вашего магазина.\n" -"- **B2B-операции:** Выделенные конечные точки для транзакций между предпринимателями и управления оптовыми продажами.\n" -"- **Мультиязыковая поддержка:** Обслуживайте клиентов по всему миру, используя возможности полной интернационализации (i18n).\n" -"- **Заказные интеграции:** Расширяемая архитектура API для интеграции с внешними платформами и сервисами.\n" -"- **Аналитика и отчетность:** Генерируйте подробные отчеты о продажах, запасах и поведении клиентов.\n" -"- **Обновления в режиме реального времени:** Получайте данные об уровне запасов, состоянии заказов и изменениях цен в режиме реального времени.\n" +"- **Каталог товаров:** Управление информацией о товарах, ценами, запасами и " +"наличием товаров в нескольких категориях.\n" +"- **Управление заказами:** Обработка заказов, отслеживание выполнения и " +"эффективная обработка запросов клиентов.\n" +"- **Аутентификация и авторизация:** Комплексная аутентификация пользователей " +"с помощью JWT-токенов и ролевых разрешений.\n" +"- **Обработка платежей:** Интеграция нескольких платежных шлюзов и " +"безопасное управление транзакциями.\n" +"- **Управление блогом и контентом:** Создание и управление записями в блоге " +"и маркетинговым контентом для вашего магазина.\n" +"- **B2B-операции:** Выделенные конечные точки для транзакций между " +"предпринимателями и управления оптовыми продажами.\n" +"- **Мультиязыковая поддержка:** Обслуживайте клиентов по всему миру, " +"используя возможности полной интернационализации (i18n).\n" +"- **Заказные интеграции:** Расширяемая архитектура API для интеграции с " +"внешними платформами и сервисами.\n" +"- **Аналитика и отчетность:** Генерируйте подробные отчеты о продажах, " +"запасах и поведении клиентов.\n" +"- **Обновления в режиме реального времени:** Получайте данные об уровне " +"запасов, состоянии заказов и изменениях цен в режиме реального времени.\n" "\n" "## Доступные API\n" "- **REST API:** Полный REST-интерфейс (данная документация)\n" -"- **GraphQL API:** Доступен по адресу `/graphql/` с интерфейсом GraphiQL для интерактивных запросов\n" +"- **GraphQL API:** Доступен по адресу `/graphql/` с интерфейсом GraphiQL для " +"интерактивных запросов\n" "\n" "## Аутентификация\n" -"- Аутентификация осуществляется с помощью JWT-токенов. Включите токен в заголовок `X-EVIBES-AUTH` ваших запросов в формате `Bearer <ваш_токен>`.\n" +"- Аутентификация осуществляется с помощью JWT-токенов. Включите токен в " +"заголовок `X-SCHON-AUTH` ваших запросов в формате `Bearer <ваш_токен>`.\n" "- Срок действия токена доступа составляет {access_lifetime} {access_unit}.\n" "- Время жизни токена обновления составляет {refresh_hours} часов.\n" -"- Для повышения безопасности маркеры доступа автоматически аннулируются после использования.\n" +"- Для повышения безопасности маркеры доступа автоматически аннулируются " +"после использования.\n" "\n" "## Интернационализация (i18n)\n" -"- В заголовке `Accept-Language` укажите предпочтительный язык (например, `Accept-Language: en-US`).\n" +"- В заголовке `Accept-Language` укажите предпочтительный язык (например, " +"`Accept-Language: en-US`).\n" "- Доступные языки можно получить из `/app/languages/`.\n" -"- Весь контент, предназначенный для пользователей, изначально поддерживает несколько языков.\n" +"- Весь контент, предназначенный для пользователей, изначально поддерживает " +"несколько языков.\n" "\n" "## Форматы ответов\n" "API поддерживает несколько форматов ответов:\n" "- **JSON** (по умолчанию, с форматированием в camelCase)\n" "- **XML** (добавьте `?format=xml` или установите `Accept: application/xml`)\n" -"- **YAML** (добавьте `?format=yaml` или установите `Accept: application/x-yaml`)\n" +"- **YAML** (добавьте `?format=yaml` или установите `Accept: application/x-" +"yaml`)\n" "\n" "## Здоровье и мониторинг\n" "- Проверка здоровья: `/health/`\n" @@ -234,66 +267,66 @@ msgstr "" "## Версия\n" "Текущая версия API: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Мой сайт" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Здоровье" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Поддержка" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Меню" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" -msgstr "Приборная панель" +msgstr "Панель" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Конфигурация" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Периодические задания" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Доска задач" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Быстрые ссылки" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Пользователи" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Группы" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Заказы" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Продукция" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Категории" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Бренды" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Записи в блогах" diff --git a/evibes/locale/sv_SE/LC_MESSAGES/django.mo b/schon/locale/sv_SE/LC_MESSAGES/django.mo similarity index 79% rename from evibes/locale/sv_SE/LC_MESSAGES/django.mo rename to schon/locale/sv_SE/LC_MESSAGES/django.mo index 63d52c00..fae72a8a 100644 Binary files a/evibes/locale/sv_SE/LC_MESSAGES/django.mo and b/schon/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/sv_SE/LC_MESSAGES/django.po b/schon/locale/sv_SE/LC_MESSAGES/django.po similarity index 65% rename from evibes/locale/sv_SE/LC_MESSAGES/django.po rename to schon/locale/sv_SE/LC_MESSAGES/django.po index 0b3b1ace..f83cf40a 100644 --- a/evibes/locale/sv_SE/LC_MESSAGES/django.po +++ b/schon/locale/sv_SE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 02:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Företagets namn" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Företagets adress" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Telefonnummer till företaget" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,146 +33,161 @@ msgstr "" "Skattesats i ditt företags jurisdiktion. Lämna 0 om du inte vill behandla " "skatter." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Visar om skatterna redan är inkluderade i produktens försäljningspris" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "API-nyckel för växelkurs" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!ÄNDRA INTE!!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP-värd" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP-port" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Använd TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Använd SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP-användarnamn" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP-lösenord" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Mail från alternativ" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Hur många dagar vi lagrar meddelanden från anonyma användare" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "Hur många dagar vi lagrar meddelanden från autentiserade användare" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Inaktivera köpfunktionalitet" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API-nyckel" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Abstrakt API-nyckel" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP-proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "En enhet för lagring av annonseringsdata" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "En enhet för lagring av analysdata" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Spara svar från leverantörers API:er" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Säkerhetskopiera databas" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Backup media" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Juridiska alternativ" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Alternativ för e-post" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Funktioner Alternativ" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO-alternativ" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Systemalternativ" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -190,42 +205,59 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"Välkommen till eVibes dokumentation.\n" +"Välkommen till Schon dokumentation.\n" "\n" -"eVibes är en kraftfull e-handelsplattform som gör att du kan starta och hantera en onlinebutik av alla slag med bara några få klick.\n" +"Schon är en kraftfull e-handelsplattform som gör att du kan starta och " +"hantera en onlinebutik av alla slag med bara några få klick.\n" "\n" "## Viktiga funktioner\n" -"- Produktkatalog:** Hantera produktinformation, priser, lager och tillgänglighet i flera kategorier.\n" -"- ** Orderhantering:** Behandla beställningar, spåra uppfyllande och hantera kundförfrågningar effektivt.\n" -"- Autentisering och auktorisering: ** Omfattande användarautentisering med JWT-tokens och rollbaserade behörigheter.\n" -"- **Betalningshantering:** Integrera flera betalningsgateways och hantera transaktioner på ett säkert sätt.\n" -"- **Blogg & Content Management:** Skapa och hantera blogginlägg och marknadsföringsinnehåll för din butik.\n" -"- **B2B Operations:** Dedikerade slutpunkter för transaktioner mellan företag och grossisthantering.\n" -"- Stöd för flera språk: ** Betjäna kunder över hela världen med fullständiga internationaliseringsfunktioner (i18n).\n" -"- **Kundanpassade integrationer:** Utökad API-arkitektur för integrering med externa plattformar och tjänster.\n" -"- **Analys och rapportering:** Generera detaljerade rapporter om försäljning, lager och kundbeteende.\n" -"- Uppdateringar i realtid: ** Få live-data om lagernivåer, orderstatus och prisändringar.\n" +"- Produktkatalog:** Hantera produktinformation, priser, lager och " +"tillgänglighet i flera kategorier.\n" +"- ** Orderhantering:** Behandla beställningar, spåra uppfyllande och hantera " +"kundförfrågningar effektivt.\n" +"- Autentisering och auktorisering: ** Omfattande användarautentisering med " +"JWT-tokens och rollbaserade behörigheter.\n" +"- **Betalningshantering:** Integrera flera betalningsgateways och hantera " +"transaktioner på ett säkert sätt.\n" +"- **Blogg & Content Management:** Skapa och hantera blogginlägg och " +"marknadsföringsinnehåll för din butik.\n" +"- **B2B Operations:** Dedikerade slutpunkter för transaktioner mellan " +"företag och grossisthantering.\n" +"- Stöd för flera språk: ** Betjäna kunder över hela världen med fullständiga " +"internationaliseringsfunktioner (i18n).\n" +"- **Kundanpassade integrationer:** Utökad API-arkitektur för integrering med " +"externa plattformar och tjänster.\n" +"- **Analys och rapportering:** Generera detaljerade rapporter om " +"försäljning, lager och kundbeteende.\n" +"- Uppdateringar i realtid: ** Få live-data om lagernivåer, orderstatus och " +"prisändringar.\n" "\n" "## Tillgängliga API:er\n" "- **REST API:** Fullständigt RESTful-gränssnitt (denna dokumentation)\n" -"- **GraphQL API:** Tillgängligt på `/graphql/` med GraphiQL-gränssnitt för interaktiva frågor\n" +"- **GraphQL API:** Tillgängligt på `/graphql/` med GraphiQL-gränssnitt för " +"interaktiva frågor\n" "\n" "## Autentisering\n" -"- Autentisering hanteras via JWT-tokens. Inkludera token i `X-EVIBES-AUTH`-huvudet för dina förfrågningar i formatet `Bearer `.\n" +"- Autentisering hanteras via JWT-tokens. Inkludera token i `X-SCHON-AUTH`-" +"huvudet för dina förfrågningar i formatet `Bearer `.\n" "- Åtkomsttokenens livstid är {access_lifetime} {access_unit}.\n" "- Uppdateringstokenens livslängd är {refresh_hours} timmar.\n" -"- Uppdateringstokens roteras automatiskt och ogiltigförklaras efter användning för ökad säkerhet.\n" +"- Uppdateringstokens roteras automatiskt och ogiltigförklaras efter " +"användning för ökad säkerhet.\n" "\n" "## Internationalisering (i18n)\n" -"- Ange önskat språk i rubriken `Accept-Language` (t.ex. `Accept-Language: en-US`).\n" +"- Ange önskat språk i rubriken `Accept-Language` (t.ex. `Accept-Language: en-" +"US`).\n" "- Tillgängliga språk kan hämtas från slutpunkten `/app/languages/`.\n" "- Allt innehåll som vänder sig till användare stöder flera språk direkt.\n" "\n" "## Svarsformat\n" "API:et stöder flera olika svarsformat:\n" "- **JSON** (standard, camelCase-formaterad)\n" -"- **XML** (lägg till `?format=xml` eller ställ in `Accept: application/xml`)\n" -"- **YAML** (lägg till `?format=yaml` eller ställ in `Accept: application/x-yaml`)\n" +"- **XML** (lägg till `?format=xml` eller ställ in `Accept: application/" +"xml`)\n" +"- **YAML** (lägg till `?format=yaml` eller ställ in `Accept: application/x-" +"yaml`)\n" "\n" "## Hälsa och övervakning\n" "- Hälsokontroller: `/hälsa/`\n" @@ -234,66 +266,66 @@ msgstr "" "## Version\n" "Aktuell API-version: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Min webbplats" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Hälsa" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Stöd" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Meny" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Instrumentpanel" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfig" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periodiska uppgifter" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Uppgiftstavla" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Snabblänkar" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Användare" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Grupper" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Beställningar" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Produkter" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategorier" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Brands" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blogginlägg" diff --git a/evibes/locale/th_TH/LC_MESSAGES/django.mo b/schon/locale/th_TH/LC_MESSAGES/django.mo similarity index 80% rename from evibes/locale/th_TH/LC_MESSAGES/django.mo rename to schon/locale/th_TH/LC_MESSAGES/django.mo index 3a2680f0..9f36cdd2 100644 Binary files a/evibes/locale/th_TH/LC_MESSAGES/django.mo and b/schon/locale/th_TH/LC_MESSAGES/django.mo differ diff --git a/schon/locale/th_TH/LC_MESSAGES/django.po b/schon/locale/th_TH/LC_MESSAGES/django.po new file mode 100644 index 00000000..59eb6502 --- /dev/null +++ b/schon/locale/th_TH/LC_MESSAGES/django.po @@ -0,0 +1,304 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: SCHON 2026.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th-th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: schon/settings/constance.py:24 +msgid "Name of the company" +msgstr "ชื่อบริษัท" + +#: schon/settings/constance.py:25 +msgid "Address of the company" +msgstr "ที่อยู่ของบริษัท" + +#: schon/settings/constance.py:28 +msgid "Phone number of the company" +msgstr "หมายเลขโทรศัพท์ของบริษัท" + +#: schon/settings/constance.py:35 +msgid "" +"Tax rate in jurisdiction of your company. Leave 0 if you don't want to " +"process taxes." +msgstr "อัตราภาษีในเขตอำนาจศาลของบริษัทของคุณ. ให้เป็น 0 หากคุณไม่ต้องการดำเนินการภาษี." + +#: schon/settings/constance.py:44 +msgid "Shows if the taxes are already included in product's selling prices" +msgstr "แสดงว่าภาษีรวมอยู่ในราคาขายของสินค้าแล้วหรือไม่" + +#: schon/settings/constance.py:52 +msgid "Exchange rate API key" +msgstr "คีย์ API อัตราแลกเปลี่ยน" + +#: schon/settings/constance.py:58 +msgid "!!!DO NOT CHANGE!!!" +msgstr "!!!ห้ามเปลี่ยนแปลง!!!" + +#: schon/settings/constance.py:60 +msgid "SMTP host" +msgstr "โฮสต์ SMTP" + +#: schon/settings/constance.py:61 +msgid "SMTP port" +msgstr "พอร์ต SMTP" + +#: schon/settings/constance.py:62 +msgid "Use TLS" +msgstr "ใช้ TLS" + +#: schon/settings/constance.py:63 +msgid "Use SSL" +msgstr "ใช้ SSL" + +#: schon/settings/constance.py:66 +msgid "SMTP username" +msgstr "ชื่อผู้ใช้ SMTP" + +#: schon/settings/constance.py:70 +msgid "SMTP password" +msgstr "รหัสผ่าน SMTP" + +#: schon/settings/constance.py:72 +msgid "Mail from option" +msgstr "จดหมายจากตัวเลือก" + +#: schon/settings/constance.py:76 +msgid "How many days we store messages from anonymous users" +msgstr "เราเก็บข้อความจากผู้ใช้ที่ไม่ระบุตัวตนไว้กี่วัน" + +#: schon/settings/constance.py:80 +msgid "How many days we store messages from authenticated users" +msgstr "เราเก็บข้อความจากผู้ใช้ที่ผ่านการยืนยันตัวตนไว้กี่วัน" + +#: schon/settings/constance.py:84 +msgid "Disable buy functionality" +msgstr "ปิดการใช้งานฟังก์ชันการซื้อ" + +#: schon/settings/constance.py:88 +msgid "OpenStreetMap Nominatim API URL" +msgstr "URL ของ API OpenStreetMap Nominatim" + +#: schon/settings/constance.py:92 +msgid "OpenAI API Key" +msgstr "คีย์ API ของ OpenAI" + +#: schon/settings/constance.py:96 +msgid "Abstract API Key" +msgstr "คีย์ API แบบนามธรรม" + +#: schon/settings/constance.py:104 +msgid "HTTP Proxy" +msgstr "HTTP พร็อกซี" + +#: schon/settings/constance.py:112 +msgid "An entity for storing advertisiment data" +msgstr "หน่วยงานสำหรับเก็บข้อมูลโฆษณา" + +#: schon/settings/constance.py:120 +msgid "An entity for storing analytics data" +msgstr "หน่วยงานสำหรับเก็บข้อมูลการวิเคราะห์" + +#: schon/settings/constance.py:125 +msgid "Save responses from vendors' APIs" +msgstr "บันทึกการตอบกลับจาก API ของผู้ขาย" + +#: schon/settings/constance.py:126 +msgid "Backup database" +msgstr "ฐานข้อมูลสำรอง" + +#: schon/settings/constance.py:127 +msgid "Backup media" +msgstr "สื่อสำรองข้อมูล" + +#: schon/settings/constance.py:133 +msgid "Legal Options" +msgstr "ทางเลือกทางกฎหมาย" + +#: schon/settings/constance.py:141 +msgid "Email Options" +msgstr "ตัวเลือกอีเมล" + +#: schon/settings/constance.py:151 +msgid "Features Options" +msgstr "คุณสมบัติ ตัวเลือก" + +#: schon/settings/constance.py:160 +msgid "SEO Options" +msgstr "ตัวเลือก SEO" + +#: schon/settings/constance.py:164 +msgid "System Options" +msgstr "ตัวเลือกระบบ" + +#: schon/settings/drf.py:51 +#, python-brace-format +msgid "" +"\n" +"Welcome to the Schon documentation.\n" +"\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" +"\n" +"## Key Features\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" +"\n" +"## Available APIs\n" +"- **REST API:** Full RESTful interface (this documentation)\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" +"\n" +"## Authentication\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" +"- Access token lifetime is {access_lifetime} {access_unit}.\n" +"- Refresh token lifetime is {refresh_hours} hours.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" +"\n" +"## Internationalization (i18n)\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" +"- Available languages can be retrieved from the `/app/languages/` endpoint.\n" +"- All user-facing content supports multiple languages out of the box.\n" +"\n" +"## Response Formats\n" +"The API supports multiple response formats:\n" +"- **JSON** (default, camelCase formatted)\n" +"- **XML** (add `?format=xml` or set `Accept: application/xml`)\n" +"- **YAML** (add `?format=yaml` or set `Accept: application/x-yaml`)\n" +"\n" +"## Health & Monitoring\n" +"- Health checks: `/health/`\n" +"- Prometheus metrics: `/prometheus/metrics/`\n" +"\n" +"## Version\n" +"Current API version: {version}\n" +msgstr "" +"\n" +"ยินดีต้อนรับสู่เอกสารคู่มือของ Schon Schon " +"เป็นแพลตฟอร์มอีคอมเมิร์ซที่ทรงพลังซึ่งช่วยให้คุณสามารถเปิดตัวและจัดการร้านค้าออนไลน์ได้ทุกประเภทเพียงแค่ไม่กี่คลิก " +"## คุณสมบัติหลัก - **แคตตาล็อกสินค้า:** จัดการรายละเอียดสินค้า ราคาสินค้า สินค้าคงคลัง " +"และความพร้อมจำหน่ายในหลายหมวดหมู่ - **การจัดการคำสั่งซื้อ:** ประมวลผลคำสั่งซื้อ " +"ติดตามการจัดส่ง และจัดการคำขอของลูกค้าอย่างมีประสิทธิภาพ\n" +"- **การตรวจสอบสิทธิ์และการอนุญาต:** การตรวจสอบสิทธิ์ผู้ใช้อย่างครอบคลุมด้วยโทเค็น JWT " +"และสิทธิ์ตามบทบาท - **การประมวลผลการชำระเงิน:** " +"ผสานรวมเกตเวย์การชำระเงินหลายช่องทางและจัดการธุรกรรมอย่างปลอดภัย - " +"**การจัดการบล็อกและเนื้อหา:** สร้างและจัดการโพสต์บล็อกและเนื้อหาการตลาดสำหรับร้านค้าของคุณ " +"- **การดำเนินงาน B2B:** " +"จุดสิ้นสุดเฉพาะสำหรับการทำธุรกรรมระหว่างธุรกิจและการจัดการขายส่ง\n" +"- **รองรับหลายภาษา:** " +"ให้บริการลูกค้าทั่วโลกด้วยความสามารถในการรองรับภาษาสากลอย่างเต็มรูปแบบ (i18n) - " +"**การผสานระบบแบบกำหนดเอง:** สถาปัตยกรรม API " +"ที่สามารถขยายได้สำหรับการผสานกับแพลตฟอร์มและบริการภายนอก - **การวิเคราะห์และรายงาน:** " +"สร้างรายงานละเอียดเกี่ยวกับยอดขาย, สินค้าคงคลัง, และพฤติกรรมของลูกค้า - " +"**การอัปเดตแบบเรียลไทม์:** รับข้อมูลสดเกี่ยวกับระดับสินค้าคงคลัง, สถานะการสั่งซื้อ, " +"และการเปลี่ยนแปลงราคา\n" +"\n" +"## API ที่มีให้บริการ - **REST API:** อินเทอร์เฟซ RESTful แบบเต็มรูปแบบ (เอกสารนี้) - " +"**GraphQL API:** สามารถใช้งานได้ที่ `/graphql/` พร้อมอินเทอร์เฟซ GraphiQL " +"สำหรับการสืบค้นแบบโต้ตอบ ## การยืนยันตัวตน - การยืนยันตัวตนดำเนินการผ่านโทเค็น JWT " +"โปรดใส่โทเค็นในหัวข้อ `X-SCHON-AUTH` ของคำขอของคุณในรูปแบบ `Bearer `\n" +"- ระยะเวลาการใช้งานของโทเค็นการเข้าถึงคือ {access_lifetime} {access_unit}. - " +"ระยะเวลาการใช้งานของโทเค็นการรีเฟรชคือ {refresh_hours} ชั่วโมง. - " +"โทเค็นการรีเฟรชจะถูกหมุนเวียนและยกเลิกการใช้งานโดยอัตโนมัติหลังการใช้งานเพื่อเพิ่มความปลอดภัย. " +"## การแปลภาษา (i18n) - ตั้งค่าหัวข้อ `Accept-Language` เพื่อระบุภาษาที่คุณต้องการ (เช่น " +"`Accept-Language: en-US`).\n" +"- ภาษาที่มีให้บริการสามารถดึงข้อมูลได้จากจุดสิ้นสุด `/app/languages/` - " +"เนื้อหาที่แสดงต่อผู้ใช้ทั้งหมดรองรับหลายภาษาโดยอัตโนมัติ ## รูปแบบการตอบกลับ API " +"รองรับรูปแบบการตอบกลับหลายรูปแบบ: - **JSON** (ค่าเริ่มต้น, รูปแบบ camelCase) - " +"**XML** (เพิ่ม `?format=xml` หรือตั้งค่า `Accept: application/xml`)\n" +"- **YAML** (เพิ่ม `?format=yaml` หรือตั้งค่า `Accept: application/x-yaml`) ## " +"สุขภาพและการตรวจสอบ - การตรวจสอบสุขภาพ: `/health/` - เมตริก Prometheus: `/" +"prometheus/metrics/` ## เวอร์ชัน เวอร์ชัน API ปัจจุบัน: {version}\n" + +#: schon/settings/unfold.py:43 +msgid "My site" +msgstr "เว็บไซต์ของฉัน" + +#: schon/settings/unfold.py:51 +msgid "Health" +msgstr "สุขภาพ" + +#: schon/settings/unfold.py:55 +msgid "Support" +msgstr "การสนับสนุน" + +#: schon/settings/unfold.py:92 +msgid "Menu" +msgstr "เมนู" + +#: schon/settings/unfold.py:97 +msgid "Dashboard" +msgstr "แดชบอร์ด" + +#: schon/settings/unfold.py:102 +msgid "Config" +msgstr "การกำหนดค่า" + +#: schon/settings/unfold.py:107 +msgid "Periodic Tasks" +msgstr "งานประจำ" + +#: schon/settings/unfold.py:134 +msgid "Taskboard" +msgstr "กระดานงาน" + +#: schon/settings/unfold.py:146 +msgid "Quick Links" +msgstr "ลิงก์ด่วน" + +#: schon/settings/unfold.py:151 +msgid "Users" +msgstr "ผู้ใช้" + +#: schon/settings/unfold.py:156 +msgid "Groups" +msgstr "กลุ่ม" + +#: schon/settings/unfold.py:161 +msgid "Orders" +msgstr "คำสั่ง" + +#: schon/settings/unfold.py:166 +msgid "Products" +msgstr "ผลิตภัณฑ์" + +#: schon/settings/unfold.py:171 +msgid "Categories" +msgstr "หมวดหมู่" + +#: schon/settings/unfold.py:176 +msgid "Brands" +msgstr "แบรนด์" + +#: schon/settings/unfold.py:181 +msgid "Blogposts" +msgstr "บทความบล็อก" diff --git a/evibes/locale/tr_TR/LC_MESSAGES/django.mo b/schon/locale/tr_TR/LC_MESSAGES/django.mo similarity index 81% rename from evibes/locale/tr_TR/LC_MESSAGES/django.mo rename to schon/locale/tr_TR/LC_MESSAGES/django.mo index 38ef1aef..e8b44f64 100644 Binary files a/evibes/locale/tr_TR/LC_MESSAGES/django.mo and b/schon/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/tr_TR/LC_MESSAGES/django.po b/schon/locale/tr_TR/LC_MESSAGES/django.po similarity index 63% rename from evibes/locale/tr_TR/LC_MESSAGES/django.po rename to schon/locale/tr_TR/LC_MESSAGES/django.po index 129e2522..bb8aba40 100644 --- a/evibes/locale/tr_TR/LC_MESSAGES/django.po +++ b/schon/locale/tr_TR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Şirketin adı" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Şirketin adresi" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Şirketin telefon numarası" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." @@ -33,147 +33,161 @@ msgstr "" "Şirketinizin yetki alanındaki vergi oranı. Vergi işlemek istemiyorsanız 0 " "bırakın." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Vergilerin ürünün satış fiyatına dahil edilip edilmediğini gösterir" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Döviz kuru API anahtarı" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!! DEĞIŞTIRMEYIN!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP ana bilgisayarı" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP bağlantı noktası" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "TLS kullanın" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "SSL kullanın" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP kullanıcı adı" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP şifresi" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Posta seçeneği" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "Anonim kullanıcılardan gelen mesajları kaç gün saklıyoruz" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" -msgstr "" -"Kimliği doğrulanmış kullanıcılardan gelen mesajları kaç gün saklıyoruz" +msgstr "Kimliği doğrulanmış kullanıcılardan gelen mesajları kaç gün saklıyoruz" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Satın alma işlevini devre dışı bırakın" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL'si" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API Anahtarı" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Soyut API Anahtarı" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP Proxy" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Reklam verilerini depolamak için bir varlık" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Analitik verileri depolamak için bir varlık" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Satıcıların API'lerinden gelen yanıtları kaydedin" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Yedek veritabanı" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Yedekleme ortamı" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Yasal Seçenekler" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "E-posta Seçenekleri" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Özellikler Seçenekler" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "SEO Seçenekleri" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Sistem Seçenekleri" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -191,42 +205,61 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"eVibes belgelerine hoş geldiniz.\n" +"Schon belgelerine hoş geldiniz.\n" "\n" -"eVibes, sadece birkaç tıklamayla her türlü çevrimiçi mağazayı açmanıza ve yönetmenize olanak tanıyan güçlü bir e-ticaret platformudur.\n" +"Schon, sadece birkaç tıklamayla her türlü çevrimiçi mağazayı açmanıza ve " +"yönetmenize olanak tanıyan güçlü bir e-ticaret platformudur.\n" "\n" "## Temel Özellikler\n" -"- Ürün Kataloğu:** Birden fazla kategoride ürün ayrıntılarını, fiyatlandırmayı, envanteri ve kullanılabilirliği yönetin.\n" -"- Sipariş Yönetimi:** Siparişleri işleyin, gönderimi takip edin ve müşteri taleplerini verimli bir şekilde ele alın.\n" -"- Kimlik Doğrulama ve Yetkilendirme:** JWT belirteçleri ve rol tabanlı izinler ile kapsamlı kullanıcı kimlik doğrulaması.\n" -"- **Ödeme İşleme:** Birden fazla ödeme ağ geçidini entegre edin ve işlemleri güvenli bir şekilde yönetin.\n" -"- **Blog ve İçerik Yönetimi:** Mağazanız için blog gönderileri ve pazarlama içeriği oluşturun ve yönetin.\n" -"- **B2B İşlemleri:** İşletmeler arası işlemler ve toptan satış yönetimi için özel uç noktalar.\n" -"- Çoklu Dil Desteği:** Tam uluslararasılaştırma (i18n) yetenekleri ile dünya çapındaki müşterilere hizmet verin.\n" -"- Özel Entegrasyonlar:** Harici platformlar ve hizmetlerle entegrasyon için genişletilebilir API mimarisi.\n" -"- Analitik ve Raporlama:** Satış, envanter ve müşteri davranışları hakkında ayrıntılı raporlar oluşturun.\n" -"- Gerçek Zamanlı Güncellemeler:** Envanter seviyeleri, sipariş durumları ve fiyat değişiklikleri hakkında canlı veriler alın.\n" +"- Ürün Kataloğu:** Birden fazla kategoride ürün ayrıntılarını, " +"fiyatlandırmayı, envanteri ve kullanılabilirliği yönetin.\n" +"- Sipariş Yönetimi:** Siparişleri işleyin, gönderimi takip edin ve müşteri " +"taleplerini verimli bir şekilde ele alın.\n" +"- Kimlik Doğrulama ve Yetkilendirme:** JWT belirteçleri ve rol tabanlı " +"izinler ile kapsamlı kullanıcı kimlik doğrulaması.\n" +"- **Ödeme İşleme:** Birden fazla ödeme ağ geçidini entegre edin ve işlemleri " +"güvenli bir şekilde yönetin.\n" +"- **Blog ve İçerik Yönetimi:** Mağazanız için blog gönderileri ve pazarlama " +"içeriği oluşturun ve yönetin.\n" +"- **B2B İşlemleri:** İşletmeler arası işlemler ve toptan satış yönetimi için " +"özel uç noktalar.\n" +"- Çoklu Dil Desteği:** Tam uluslararasılaştırma (i18n) yetenekleri ile dünya " +"çapındaki müşterilere hizmet verin.\n" +"- Özel Entegrasyonlar:** Harici platformlar ve hizmetlerle entegrasyon için " +"genişletilebilir API mimarisi.\n" +"- Analitik ve Raporlama:** Satış, envanter ve müşteri davranışları hakkında " +"ayrıntılı raporlar oluşturun.\n" +"- Gerçek Zamanlı Güncellemeler:** Envanter seviyeleri, sipariş durumları ve " +"fiyat değişiklikleri hakkında canlı veriler alın.\n" "\n" "## Mevcut API'ler\n" "- **REST API:** Tam RESTful arayüz (bu dokümantasyon)\n" -"- **GraphQL API:** Etkileşimli sorgular için GraphiQL arayüzü ile `/graphql/` adresinde mevcuttur\n" +"- **GraphQL API:** Etkileşimli sorgular için GraphiQL arayüzü ile `/graphql/" +"` adresinde mevcuttur\n" "\n" "## Kimlik Doğrulama\n" -"- Kimlik doğrulama JWT belirteçleri aracılığıyla gerçekleştirilir. Belirteci, isteklerinizin `X-EVIBES-AUTH` başlığına `Bearer ` biçiminde ekleyin.\n" +"- Kimlik doğrulama JWT belirteçleri aracılığıyla gerçekleştirilir. " +"Belirteci, isteklerinizin `X-SCHON-AUTH` başlığına `Bearer ` " +"biçiminde ekleyin.\n" "- Erişim belirteci ömrü {access_lifetime} {access_unit}.\n" "- Yenileme belirteci ömrü {refresh_hours} saattir.\n" -"- Yenileme belirteçleri, gelişmiş güvenlik için kullanımdan sonra otomatik olarak döndürülür ve geçersiz kılınır.\n" +"- Yenileme belirteçleri, gelişmiş güvenlik için kullanımdan sonra otomatik " +"olarak döndürülür ve geçersiz kılınır.\n" "\n" "## Uluslararasılaştırma (i18n)\n" -"- Tercih ettiğiniz dili belirtmek için `Accept-Language` başlığını ayarlayın (örneğin, `Accept-Language: en-US`).\n" +"- Tercih ettiğiniz dili belirtmek için `Accept-Language` başlığını ayarlayın " +"(örneğin, `Accept-Language: en-US`).\n" "- Mevcut diller `/app/languages/` uç noktasından alınabilir.\n" -"- Kullanıcıya yönelik tüm içerikler kutudan çıkar çıkmaz birden fazla dili destekler.\n" +"- Kullanıcıya yönelik tüm içerikler kutudan çıkar çıkmaz birden fazla dili " +"destekler.\n" "\n" "## Yanıt Biçimleri\n" "API birden fazla yanıt biçimini destekler:\n" "- **JSON** (varsayılan, camelCase biçimlendirilmiş)\n" -"- **XML** (`?format=xml` ekleyin veya `Accept: application/xml` olarak ayarlayın)\n" -"- **YAML** (`?format=yaml` ekleyin veya `Accept: application/x-yaml` olarak ayarlayın)\n" +"- **XML** (`?format=xml` ekleyin veya `Accept: application/xml` olarak " +"ayarlayın)\n" +"- **YAML** (`?format=yaml` ekleyin veya `Accept: application/x-yaml` olarak " +"ayarlayın)\n" "\n" "## Sağlık ve İzleme\n" "- Sağlık kontrolleri: `/health/`\n" @@ -235,66 +268,66 @@ msgstr "" "## Sürüm\n" "Geçerli API sürümü: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Benim sitem" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Sağlık" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Destek" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Menü" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Gösterge Tablosu" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Konfigürasyon" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Periyodik Görevler" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Görev Panosu" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Hızlı Bağlantılar" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Kullanıcılar" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Gruplar" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Siparişler" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Ürünler" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Kategoriler" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Markalar" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Blog Yazıları" diff --git a/evibes/locale/vi_VN/LC_MESSAGES/django.mo b/schon/locale/vi_VN/LC_MESSAGES/django.mo similarity index 77% rename from evibes/locale/vi_VN/LC_MESSAGES/django.mo rename to schon/locale/vi_VN/LC_MESSAGES/django.mo index 60a4df4e..43cddcb1 100644 Binary files a/evibes/locale/vi_VN/LC_MESSAGES/django.mo and b/schon/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/vi_VN/LC_MESSAGES/django.po b/schon/locale/vi_VN/LC_MESSAGES/django.po similarity index 50% rename from evibes/locale/vi_VN/LC_MESSAGES/django.po rename to schon/locale/vi_VN/LC_MESSAGES/django.po index 8d971774..191f9f88 100644 --- a/evibes/locale/vi_VN/LC_MESSAGES/django.po +++ b/schon/locale/vi_VN/LC_MESSAGES/django.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,168 +12,182 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "Tên công ty" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "Địa chỉ của công ty" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "Số điện thoại của công ty" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "" -"Tỷ lệ thuế tại khu vực pháp lý của công ty bạn. Để trống ô này nếu bạn không" -" muốn xử lý thuế." +"Tỷ lệ thuế tại khu vực pháp lý của công ty bạn. Để trống ô này nếu bạn không " +"muốn xử lý thuế." -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "Hiển thị xem thuế đã được tính vào giá bán của sản phẩm hay chưa." -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "Khóa API tỷ giá hối đoái" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "!!!KHÔNG THAY ĐỔI!!!" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "Máy chủ SMTP" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "Cổng SMTP" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "Sử dụng TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "Sử dụng SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "Tên người dùng SMTP" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "Mật khẩu SMTP" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "Thư từ tùy chọn" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" -msgstr "" -"Chúng tôi lưu trữ tin nhắn từ người dùng ẩn danh trong bao nhiêu ngày?" +msgstr "Chúng tôi lưu trữ tin nhắn từ người dùng ẩn danh trong bao nhiêu ngày?" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "" "Chúng tôi lưu trữ tin nhắn từ người dùng đã xác thực trong bao nhiêu ngày?" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "Vô hiệu hóa chức năng mua hàng" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "Địa chỉ URL API Nominatim của OpenStreetMap" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "Khóa API OpenAI" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "Tóm tắt Khóa API" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "Proxy HTTP" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "Một thực thể dùng để lưu trữ dữ liệu quảng cáo" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "Một thực thể dùng để lưu trữ dữ liệu phân tích." -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "Lưu trữ các phản hồi từ API của nhà cung cấp" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "Sao lưu cơ sở dữ liệu" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "Phương tiện sao lưu" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "Các lựa chọn pháp lý" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "Tùy chọn email" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "Tính năng và tùy chọn" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "Các tùy chọn SEO" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "Tùy chọn hệ thống" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -191,75 +204,105 @@ msgid "" "## Version\n" "Current API version: {version}\n" msgstr "" -"\nChào mừng đến với tài liệu hướng dẫn của eVibes. eVibes là một nền tảng thương mại điện tử mạnh mẽ cho phép bạn khởi chạy và quản lý cửa hàng trực tuyến bất kỳ loại nào chỉ với vài cú nhấp chuột. ## Tính năng chính - **Danh mục sản phẩm:** Quản lý chi tiết sản phẩm, giá cả, tồn kho và tình trạng sẵn có trên nhiều danh mục. - **Quản lý đơn hàng:** Xử lý đơn hàng, theo dõi quá trình giao hàng và xử lý yêu cầu của khách hàng một cách hiệu quả.\n" -"- **Xác thực & Quyền truy cập:** Hệ thống xác thực người dùng toàn diện với token JWT và quyền truy cập dựa trên vai trò. - **Xử lý thanh toán:** Tích hợp nhiều cổng thanh toán và quản lý giao dịch an toàn. - **Quản lý blog và nội dung:** Tạo và quản lý bài viết blog và nội dung tiếp thị cho cửa hàng của bạn. - **Hoạt động B2B:** Các điểm cuối chuyên dụng cho giao dịch giữa doanh nghiệp và quản lý bán buôn.\n" -"- **Hỗ trợ đa ngôn ngữ:** Phục vụ khách hàng toàn cầu với khả năng quốc tế hóa (i18n) đầy đủ. - **Tích hợp tùy chỉnh:** Kiến trúc API mở rộng để tích hợp với các nền tảng và dịch vụ bên ngoài. - **Phân tích & Báo cáo:** Tạo báo cáo chi tiết về doanh số, hàng tồn kho và hành vi khách hàng. - **Cập nhật thời gian thực:** Nhận dữ liệu trực tiếp về mức tồn kho, trạng thái đơn hàng và thay đổi giá cả.\n" "\n" -"## Các API có sẵn - **REST API:** Giao diện RESTful đầy đủ (tài liệu này) - **GraphQL API:** Có sẵn tại `/graphql/` với giao diện GraphiQL cho các truy vấn tương tác ## Xác thực - Xác thực được xử lý thông qua token JWT. Bao gồm token trong tiêu đề `X-EVIBES-AUTH` của yêu cầu của bạn theo định dạng `Bearer `.\n" -"- Thời hạn sử dụng của token truy cập là {access_lifetime} {access_unit}. - Thời hạn sử dụng của token làm mới là {refresh_hours} giờ. - Token làm mới được tự động xoay vòng và vô hiệu hóa sau khi sử dụng để tăng cường bảo mật. ## Quốc tế hóa (i18n) - Đặt tiêu đề `Accept-Language` để chỉ định ngôn ngữ ưa thích của bạn (ví dụ: `Accept-Language: en-US`).\n" -"- Các ngôn ngữ có sẵn có thể được lấy từ điểm cuối `/app/languages/`. - Tất cả nội dung hiển thị cho người dùng đều hỗ trợ nhiều ngôn ngữ ngay từ đầu. ## Định dạng phản hồi API hỗ trợ nhiều định dạng phản hồi: - **JSON** (mặc định, định dạng camelCase) - **XML** (thêm `?format=xml` hoặc đặt `Accept: application/xml`)\n" -"- **YAML** (thêm `?format=yaml` hoặc đặt `Accept: application/x-yaml`) ## Sức khỏe & Giám sát - Kiểm tra sức khỏe: `/health/` - Chỉ số Prometheus: `/prometheus/metrics/` ## Phiên bản Phiên bản API hiện tại: {version}\n" +"Chào mừng đến với tài liệu hướng dẫn của Schon. Schon là một nền tảng thương " +"mại điện tử mạnh mẽ cho phép bạn khởi chạy và quản lý cửa hàng trực tuyến " +"bất kỳ loại nào chỉ với vài cú nhấp chuột. ## Tính năng chính - **Danh mục " +"sản phẩm:** Quản lý chi tiết sản phẩm, giá cả, tồn kho và tình trạng sẵn có " +"trên nhiều danh mục. - **Quản lý đơn hàng:** Xử lý đơn hàng, theo dõi quá " +"trình giao hàng và xử lý yêu cầu của khách hàng một cách hiệu quả.\n" +"- **Xác thực & Quyền truy cập:** Hệ thống xác thực người dùng toàn diện với " +"token JWT và quyền truy cập dựa trên vai trò. - **Xử lý thanh toán:** Tích " +"hợp nhiều cổng thanh toán và quản lý giao dịch an toàn. - **Quản lý blog và " +"nội dung:** Tạo và quản lý bài viết blog và nội dung tiếp thị cho cửa hàng " +"của bạn. - **Hoạt động B2B:** Các điểm cuối chuyên dụng cho giao dịch giữa " +"doanh nghiệp và quản lý bán buôn.\n" +"- **Hỗ trợ đa ngôn ngữ:** Phục vụ khách hàng toàn cầu với khả năng quốc tế " +"hóa (i18n) đầy đủ. - **Tích hợp tùy chỉnh:** Kiến trúc API mở rộng để tích " +"hợp với các nền tảng và dịch vụ bên ngoài. - **Phân tích & Báo cáo:** Tạo " +"báo cáo chi tiết về doanh số, hàng tồn kho và hành vi khách hàng. - **Cập " +"nhật thời gian thực:** Nhận dữ liệu trực tiếp về mức tồn kho, trạng thái đơn " +"hàng và thay đổi giá cả.\n" +"\n" +"## Các API có sẵn - **REST API:** Giao diện RESTful đầy đủ (tài liệu này) - " +"**GraphQL API:** Có sẵn tại `/graphql/` với giao diện GraphiQL cho các truy " +"vấn tương tác ## Xác thực - Xác thực được xử lý thông qua token JWT. Bao gồm " +"token trong tiêu đề `X-SCHON-AUTH` của yêu cầu của bạn theo định dạng " +"`Bearer `.\n" +"- Thời hạn sử dụng của token truy cập là {access_lifetime} {access_unit}. - " +"Thời hạn sử dụng của token làm mới là {refresh_hours} giờ. - Token làm mới " +"được tự động xoay vòng và vô hiệu hóa sau khi sử dụng để tăng cường bảo mật. " +"## Quốc tế hóa (i18n) - Đặt tiêu đề `Accept-Language` để chỉ định ngôn ngữ " +"ưa thích của bạn (ví dụ: `Accept-Language: en-US`).\n" +"- Các ngôn ngữ có sẵn có thể được lấy từ điểm cuối `/app/languages/`. - Tất " +"cả nội dung hiển thị cho người dùng đều hỗ trợ nhiều ngôn ngữ ngay từ đầu. " +"## Định dạng phản hồi API hỗ trợ nhiều định dạng phản hồi: - **JSON** (mặc " +"định, định dạng camelCase) - **XML** (thêm `?format=xml` hoặc đặt `Accept: " +"application/xml`)\n" +"- **YAML** (thêm `?format=yaml` hoặc đặt `Accept: application/x-yaml`) ## " +"Sức khỏe & Giám sát - Kiểm tra sức khỏe: `/health/` - Chỉ số Prometheus: `/" +"prometheus/metrics/` ## Phiên bản Phiên bản API hiện tại: {version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "Trang web của tôi" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "Sức khỏe" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "Hỗ trợ" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "Thực đơn" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "Bảng điều khiển" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "Cấu hình" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "Các tác vụ định kỳ" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "Bảng nhiệm vụ" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "Liên kết nhanh" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "Người dùng" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "Nhóm" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "Đơn hàng" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "Sản phẩm" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "Các danh mục" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "Thương hiệu" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "Bài viết trên blog" diff --git a/evibes/locale/zh_Hans/LC_MESSAGES/django.mo b/schon/locale/zh_Hans/LC_MESSAGES/django.mo similarity index 78% rename from evibes/locale/zh_Hans/LC_MESSAGES/django.mo rename to schon/locale/zh_Hans/LC_MESSAGES/django.mo index d83d8bb4..78414c3e 100644 Binary files a/evibes/locale/zh_Hans/LC_MESSAGES/django.mo and b/schon/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/zh_Hans/LC_MESSAGES/django.po b/schon/locale/zh_Hans/LC_MESSAGES/django.po similarity index 70% rename from evibes/locale/zh_Hans/LC_MESSAGES/django.po rename to schon/locale/zh_Hans/LC_MESSAGES/django.po index b8c0506f..92932e86 100644 --- a/evibes/locale/zh_Hans/LC_MESSAGES/django.po +++ b/schon/locale/zh_Hans/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" -"Project-Id-Version: EVIBES 2026.1\n" +"Project-Id-Version: SCHON 2026.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-21 00:51+0300\n" +"POT-Creation-Date: 2026-01-26 01:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,164 +13,179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: evibes/settings/constance.py:24 +#: schon/settings/constance.py:24 msgid "Name of the company" msgstr "公司名称" -#: evibes/settings/constance.py:25 +#: schon/settings/constance.py:25 msgid "Address of the company" msgstr "公司地址" -#: evibes/settings/constance.py:28 +#: schon/settings/constance.py:28 msgid "Phone number of the company" msgstr "公司电话号码" -#: evibes/settings/constance.py:35 +#: schon/settings/constance.py:35 msgid "" "Tax rate in jurisdiction of your company. Leave 0 if you don't want to " "process taxes." msgstr "贵公司所在地区的税率。如果不想处理税款,请留下 0。" -#: evibes/settings/constance.py:44 +#: schon/settings/constance.py:44 msgid "Shows if the taxes are already included in product's selling prices" msgstr "显示税费是否已包含在产品售价中" -#: evibes/settings/constance.py:52 +#: schon/settings/constance.py:52 msgid "Exchange rate API key" msgstr "汇率 API 密钥" -#: evibes/settings/constance.py:58 +#: schon/settings/constance.py:58 msgid "!!!DO NOT CHANGE!!!" msgstr "不要换" -#: evibes/settings/constance.py:60 +#: schon/settings/constance.py:60 msgid "SMTP host" msgstr "SMTP 主机" -#: evibes/settings/constance.py:61 +#: schon/settings/constance.py:61 msgid "SMTP port" msgstr "SMTP 端口" -#: evibes/settings/constance.py:62 +#: schon/settings/constance.py:62 msgid "Use TLS" msgstr "使用 TLS" -#: evibes/settings/constance.py:63 +#: schon/settings/constance.py:63 msgid "Use SSL" msgstr "使用 SSL" -#: evibes/settings/constance.py:66 +#: schon/settings/constance.py:66 msgid "SMTP username" msgstr "SMTP 用户名" -#: evibes/settings/constance.py:70 +#: schon/settings/constance.py:70 msgid "SMTP password" msgstr "SMTP 密码" -#: evibes/settings/constance.py:72 +#: schon/settings/constance.py:72 msgid "Mail from option" msgstr "从选项发送邮件" -#: evibes/settings/constance.py:76 +#: schon/settings/constance.py:76 msgid "How many days we store messages from anonymous users" msgstr "我们将匿名用户的信息保存多少天" -#: evibes/settings/constance.py:80 +#: schon/settings/constance.py:80 msgid "How many days we store messages from authenticated users" msgstr "我们会将已验证用户的信息保存多少天" -#: evibes/settings/constance.py:84 +#: schon/settings/constance.py:84 msgid "Disable buy functionality" msgstr "禁用购买功能" -#: evibes/settings/constance.py:88 +#: schon/settings/constance.py:88 msgid "OpenStreetMap Nominatim API URL" msgstr "OpenStreetMap Nominatim API URL" -#: evibes/settings/constance.py:92 +#: schon/settings/constance.py:92 msgid "OpenAI API Key" msgstr "OpenAI API 密钥" -#: evibes/settings/constance.py:96 +#: schon/settings/constance.py:96 msgid "Abstract API Key" msgstr "抽象应用程序接口密钥" -#: evibes/settings/constance.py:104 +#: schon/settings/constance.py:104 msgid "HTTP Proxy" msgstr "HTTP 代理服务器" -#: evibes/settings/constance.py:112 +#: schon/settings/constance.py:112 msgid "An entity for storing advertisiment data" msgstr "存储广告数据的实体" -#: evibes/settings/constance.py:120 +#: schon/settings/constance.py:120 msgid "An entity for storing analytics data" msgstr "存储分析数据的实体" -#: evibes/settings/constance.py:125 +#: schon/settings/constance.py:125 msgid "Save responses from vendors' APIs" msgstr "保存来自供应商应用程序接口的响应" -#: evibes/settings/constance.py:126 +#: schon/settings/constance.py:126 msgid "Backup database" msgstr "备份数据库" -#: evibes/settings/constance.py:127 +#: schon/settings/constance.py:127 msgid "Backup media" msgstr "备份介质" -#: evibes/settings/constance.py:133 +#: schon/settings/constance.py:133 msgid "Legal Options" msgstr "法律选择" -#: evibes/settings/constance.py:141 +#: schon/settings/constance.py:141 msgid "Email Options" msgstr "电子邮件选项" -#: evibes/settings/constance.py:151 +#: schon/settings/constance.py:151 msgid "Features Options" msgstr "功能选项" -#: evibes/settings/constance.py:160 +#: schon/settings/constance.py:160 msgid "SEO Options" msgstr "搜索引擎优化选项" -#: evibes/settings/constance.py:164 +#: schon/settings/constance.py:164 msgid "System Options" msgstr "系统选项" -#: evibes/settings/drf.py:51 +#: schon/settings/drf.py:51 #, python-brace-format msgid "" "\n" -"Welcome to the eVibes documentation.\n" +"Welcome to the Schon documentation.\n" "\n" -"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n" +"Schon is a powerful e-commerce platform that allows you to launch and manage " +"an online store of any kind in just a few clicks.\n" "\n" "## Key Features\n" -"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n" -"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n" -"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n" -"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n" -"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n" -"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n" -"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n" -"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n" -"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n" -"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n" +"- **Product Catalog:** Manage product details, pricing, inventory, and " +"availability across multiple categories.\n" +"- **Order Management:** Process orders, track fulfillment, and handle " +"customer requests efficiently.\n" +"- **Authentication & Authorization:** Comprehensive user authentication with " +"JWT tokens and role-based permissions.\n" +"- **Payment Processing:** Integrate multiple payment gateways and manage " +"transactions securely.\n" +"- **Blog & Content Management:** Create and manage blog posts and marketing " +"content for your store.\n" +"- **B2B Operations:** Dedicated endpoints for business-to-business " +"transactions and wholesale management.\n" +"- **Multi-language Support:** Serve customers worldwide with full " +"internationalization (i18n) capabilities.\n" +"- **Custom Integrations:** Extensible API architecture for integrating with " +"external platforms and services.\n" +"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, " +"and customer behavior.\n" +"- **Real-Time Updates:** Get live data on inventory levels, order statuses, " +"and pricing changes.\n" "\n" "## Available APIs\n" "- **REST API:** Full RESTful interface (this documentation)\n" -"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n" +"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for " +"interactive queries\n" "\n" "## Authentication\n" -"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `.\n" +"- Authentication is handled via JWT tokens. Include the token in the `X-" +"SCHON-AUTH` header of your requests in the format `Bearer `.\n" "- Access token lifetime is {access_lifetime} {access_unit}.\n" "- Refresh token lifetime is {refresh_hours} hours.\n" -"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n" +"- Refresh tokens are automatically rotated and invalidated after usage for " +"enhanced security.\n" "\n" "## Internationalization (i18n)\n" -"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n" +"- Set the `Accept-Language` header to specify your preferred language (e.g., " +"`Accept-Language: en-US`).\n" "- Available languages can be retrieved from the `/app/languages/` endpoint.\n" "- All user-facing content supports multiple languages out of the box.\n" "\n" @@ -188,9 +203,10 @@ msgid "" "Current API version: {version}\n" msgstr "" "\n" -"欢迎使用 eVibes 文档。\n" +"欢迎使用 Schon 文档。\n" "\n" -"eVibes 是一个功能强大的电子商务平台,只需点击几下,您就可以创建和管理任何类型的网上商店。\n" +"Schon 是一个功能强大的电子商务平台,只需点击几下,您就可以创建和管理任何类型" +"的网上商店。\n" "\n" "## 关键功能\n" "- 产品目录:** 管理多个类别的产品详情、定价、库存和可用性。\n" @@ -206,16 +222,19 @@ msgstr "" "\n" "## 可用的应用程序接口\n" "- REST API:** 完整的 REST 接口(本文档)\n" -"- **GraphQL 应用程序接口:** 可在 `/graphql/`使用 GraphiQL 接口进行交互式查询\n" +"- **GraphQL 应用程序接口:** 可在 `/graphql/`使用 GraphiQL 接口进行交互式查" +"询\n" "\n" "## 验证\n" -"- 通过 JWT 标记进行身份验证。在请求的 `X-EVIBES-AUTH` 头中包含令牌,格式为 `Bearer `。\n" +"- 通过 JWT 标记进行身份验证。在请求的 `X-SCHON-AUTH` 头中包含令牌,格式为 " +"`Bearer `。\n" "- 访问令牌的有效期为 {access_lifetime} {access_unit}。\n" "- 刷新令牌的有效期为 {refresh_hours} 小时。\n" "- 刷新令牌在使用后会自动轮换和失效,以增强安全性。\n" "\n" "### 国际化(i18n)\n" -"- 设置 `Accept-Language` 标头,指定首选语言(例如,`Accept-Language: en-US`)。\n" +"- 设置 `Accept-Language` 标头,指定首选语言(例如,`Accept-Language: en-" +"US`)。\n" "- 可从 `/app/languages/` 端点检索可用语言。\n" "- 所有面向用户的内容均支持多种语言。\n" "\n" @@ -232,66 +251,66 @@ msgstr "" "## 版本\n" "当前的 API 版本:{version}\n" -#: evibes/settings/unfold.py:28 +#: schon/settings/unfold.py:43 msgid "My site" msgstr "我的网站" -#: evibes/settings/unfold.py:36 +#: schon/settings/unfold.py:51 msgid "Health" msgstr "健康" -#: evibes/settings/unfold.py:40 +#: schon/settings/unfold.py:55 msgid "Support" msgstr "支持" -#: evibes/settings/unfold.py:77 +#: schon/settings/unfold.py:92 msgid "Menu" msgstr "菜单" -#: evibes/settings/unfold.py:82 +#: schon/settings/unfold.py:97 msgid "Dashboard" msgstr "仪表板" -#: evibes/settings/unfold.py:87 +#: schon/settings/unfold.py:102 msgid "Config" msgstr "配置" -#: evibes/settings/unfold.py:92 +#: schon/settings/unfold.py:107 msgid "Periodic Tasks" msgstr "定期任务" -#: evibes/settings/unfold.py:119 +#: schon/settings/unfold.py:134 msgid "Taskboard" msgstr "任务板" -#: evibes/settings/unfold.py:131 +#: schon/settings/unfold.py:146 msgid "Quick Links" msgstr "快速链接" -#: evibes/settings/unfold.py:136 +#: schon/settings/unfold.py:151 msgid "Users" msgstr "用户" -#: evibes/settings/unfold.py:141 +#: schon/settings/unfold.py:156 msgid "Groups" msgstr "组别" -#: evibes/settings/unfold.py:146 +#: schon/settings/unfold.py:161 msgid "Orders" msgstr "订单" -#: evibes/settings/unfold.py:151 +#: schon/settings/unfold.py:166 msgid "Products" msgstr "产品" -#: evibes/settings/unfold.py:156 +#: schon/settings/unfold.py:171 msgid "Categories" msgstr "类别" -#: evibes/settings/unfold.py:161 +#: schon/settings/unfold.py:176 msgid "Brands" msgstr "品牌" -#: evibes/settings/unfold.py:166 +#: schon/settings/unfold.py:181 msgid "Blogposts" msgstr "博客文章" diff --git a/evibes/middleware.py b/schon/middleware.py similarity index 96% rename from evibes/middleware.py rename to schon/middleware.py index c2d01e0e..ffe03697 100644 --- a/evibes/middleware.py +++ b/schon/middleware.py @@ -29,9 +29,9 @@ from rest_framework_simplejwt.exceptions import InvalidToken from sentry_sdk import capture_exception from engine.vibes_auth.models import User -from evibes.settings.drf import JSON_UNDERSCOREIZE -from evibes.utils.misc import RatelimitedError -from evibes.utils.parsers import underscoreize +from schon.settings.drf import JSON_UNDERSCOREIZE +from schon.utils.misc import RatelimitedError +from schon.utils.parsers import underscoreize logger = logging.getLogger(__name__) @@ -45,7 +45,7 @@ class CustomCommonMiddleware(CommonMiddleware): except DisallowedHost: # Return a permanent redirect to match the base class return type return HttpResponsePermanentRedirect( - f"https://api.{getenv('EVIBES_BASE_DOMAIN', 'localhost')}" + f"https://api.{getenv('SCHON_BASE_DOMAIN', 'localhost')}" ) diff --git a/evibes/pagination.py b/schon/pagination.py similarity index 98% rename from evibes/pagination.py rename to schon/pagination.py index 24bf41ea..b3ef9530 100644 --- a/evibes/pagination.py +++ b/schon/pagination.py @@ -13,7 +13,7 @@ class CustomPagination(PageNumberPagination): def get_paginated_response(self, data: list[dict[Any, Any]]) -> Response: if not self.page_size: self.page_size = 88 - if not 1 <= self.page_size <= 255: + if not 1 <= self.page_size <= 128: raise ValueError("Page size must be between 1 and 255") if not self.page: paginator = Paginator(data, self.page_size) diff --git a/evibes/settings/__init__.py b/schon/settings/__init__.py similarity index 92% rename from evibes/settings/__init__.py rename to schon/settings/__init__.py index a99caa76..e22b874b 100644 --- a/evibes/settings/__init__.py +++ b/schon/settings/__init__.py @@ -10,5 +10,4 @@ from .emailing import * # noqa: F403 from .extensions import * # noqa: F403 from .graphene import * # noqa: F403 from .logconfig import * # noqa: F403 -from .summernote import * # noqa: F403 from .unfold import * # noqa: F403 diff --git a/evibes/settings/base.py b/schon/settings/base.py similarity index 92% rename from evibes/settings/base.py rename to schon/settings/base.py index 01cb7cfa..9bd561bf 100644 --- a/evibes/settings/base.py +++ b/schon/settings/base.py @@ -6,15 +6,15 @@ from typing import Any from django.core.exceptions import ImproperlyConfigured -EVIBES_VERSION = "2026.1" +SCHON_VERSION = "2026.1" RELEASE_DATE = datetime(2026, 1, 5) -PROJECT_NAME = getenv("EVIBES_PROJECT_NAME", "eVibes") +PROJECT_NAME = getenv("SCHON_PROJECT_NAME", "Schon") TASKBOARD_URL = getenv( - "EVIBES_TASKBOARD_URL", + "SCHON_TASKBOARD_URL", "https://plane.wiseless.xyz/spaces/issues/dd33cb0ab9b04ef08a10f7eefae6d90c/?board=kanban", ) -SUPPORT_CONTACT = getenv("EVIBES_SUPPORT_CONTACT", "https://t.me/fureunoir") +SUPPORT_CONTACT = getenv("SCHON_SUPPORT_CONTACT", "https://t.me/fureunoir") BASE_DIR: Path = Path(__file__).resolve().parent.parent.parent INITIALIZED: bool = (BASE_DIR / ".initialized").exists() @@ -24,10 +24,10 @@ DEBUG: bool = bool(int(getenv("DEBUG", "1"))) DEBUG_DATABASE: bool = bool(int(getenv("DEBUG_DATABASE", "0"))) DEBUG_CELERY: bool = bool(int(getenv("DEBUG_DATABASE", "0"))) -BASE_DOMAIN: str = getenv("EVIBES_BASE_DOMAIN", "localhost") -STOREFRONT_DOMAIN: str = getenv("EVIBES_STOREFRONT_DOMAIN", "localhost") +BASE_DOMAIN: str = getenv("SCHON_BASE_DOMAIN", "localhost") +STOREFRONT_DOMAIN: str = getenv("SCHON_STOREFRONT_DOMAIN", "localhost") -ALLOW_MESSAGING: bool = bool(int(getenv("EVIBES_ALLOW_MESSAGING", "0"))) +ALLOW_MESSAGING: bool = bool(int(getenv("SCHON_ALLOW_MESSAGING", "0"))) ALLOWED_HOSTS: set[str] = { "app", @@ -95,7 +95,7 @@ CORS_ALLOW_HEADERS = ( "sentry-trace", "user-agent", "x-csrftoken", - "x-evibes-auth", + "x-schon-auth", "x-requested-with", ) @@ -113,7 +113,6 @@ INSTALLED_APPS: list[str] = [ "unfold.contrib.filters", "unfold.contrib.forms", "unfold.contrib.inlines", - "unfold_markdown", "unfold.contrib.constance", "unfold.contrib.import_export", "constance", @@ -143,7 +142,6 @@ INSTALLED_APPS: list[str] = [ "django_celery_results", "django_extensions", "django_redis", - "django_summernote", "widget_tweaks", "mptt", "rest_framework", @@ -159,7 +157,6 @@ INSTALLED_APPS: list[str] = [ "dbbackup", "corsheaders", "constance.backends.database", - "django_mailbox", "graphene_django", "channels", "engine.core", @@ -173,21 +170,21 @@ if DEBUG: INSTALLED_APPS.insert(wn_app_index, "whitenoise.runserver_nostatic") MIDDLEWARE: list[str] = [ - "evibes.middleware.BlockInvalidHostMiddleware", - "evibes.middleware.RateLimitMiddleware", + "schon.middleware.BlockInvalidHostMiddleware", + "schon.middleware.RateLimitMiddleware", "django_prometheus.middleware.PrometheusBeforeMiddleware", "django.middleware.security.SecurityMiddleware", "whitenoise.middleware.WhiteNoiseMiddleware", "django.contrib.sessions.middleware.SessionMiddleware", "corsheaders.middleware.CorsMiddleware", - "evibes.middleware.CustomCommonMiddleware", + "schon.middleware.CustomCommonMiddleware", "django.middleware.csrf.CsrfViewMiddleware", "django.contrib.auth.middleware.AuthenticationMiddleware", "django.contrib.messages.middleware.MessageMiddleware", "django.contrib.admindocs.middleware.XViewMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware", - "evibes.middleware.CustomLocaleMiddleware", - "evibes.middleware.CamelCaseMiddleWare", + "schon.middleware.CustomLocaleMiddleware", + "schon.middleware.CamelCaseMiddleWare", "django_prometheus.middleware.PrometheusAfterMiddleware", ] @@ -216,7 +213,7 @@ TEMPLATES: list[ USE_I18N: bool = True LOCALE_PATHS: tuple[Path, ...] = ( - (BASE_DIR / "evibes/locale"), + (BASE_DIR / "schon/locale"), (BASE_DIR / "engine/blog/locale"), (BASE_DIR / "engine/core/locale"), (BASE_DIR / "engine/payments/locale"), @@ -352,11 +349,11 @@ CURRENCY_CODE: str = dict(CURRENCIES_BY_LANGUAGES).get(LANGUAGE_CODE, "") MODELTRANSLATION_FALLBACK_LANGUAGES: tuple[str, ...] = (LANGUAGE_CODE, "en-us", "de-de") -ROOT_URLCONF: str = "evibes.urls" +ROOT_URLCONF: str = "schon.urls" -WSGI_APPLICATION: str = "evibes.wsgi.application" +WSGI_APPLICATION: str = "schon.wsgi.application" -ASGI_APPLICATION: str = "evibes.asgi.application" +ASGI_APPLICATION: str = "schon.asgi.application" DEFAULT_AUTO_FIELD: str = "django.db.models.BigAutoField" @@ -364,10 +361,10 @@ TIME_ZONE: str = getenv("TIME_ZONE", "Europe/London") WHITENOISE_MANIFEST_STRICT: bool = False -STATIC_URL: str = f"https://api.{BASE_DOMAIN}/static/" if INITIALIZED else "static/" +STATIC_URL: str = f"https://api.{BASE_DOMAIN}/static/" if INITIALIZED else "/static/" STATIC_ROOT: Path = BASE_DIR / "static" -MEDIA_URL: str = f"https://api.{BASE_DOMAIN}/media/" if INITIALIZED else "media/" +MEDIA_URL: str = f"https://api.{BASE_DOMAIN}/media/" if INITIALIZED else "/media/" MEDIA_ROOT: Path = BASE_DIR / "media" AUTH_USER_MODEL: str = "vibes_auth.User" @@ -450,7 +447,7 @@ if getenv("SENTRY_DSN"): RedisIntegration(), ], environment="development" if DEBUG else "production", - release=f"evibes@{EVIBES_VERSION}", + release=f"schon@{SCHON_VERSION}", traces_sample_rate=1.0 if DEBUG else 0.2, profiles_sample_rate=1.0 if DEBUG else 0.1, max_request_body_size="always", @@ -465,7 +462,7 @@ LANGUAGE_COOKIE_HTTPONLY: bool = True DATA_UPLOAD_MAX_NUMBER_FIELDS: int = 8888 -RATELIMIT_EXCEPTION_CLASS: str = "evibes.utils.misc.RatelimitedError" +RATELIMIT_EXCEPTION_CLASS: str = "schon.utils.misc.RatelimitedError" ADMINS: list[tuple[str, ...]] = [("Egor Gorbunov", "contact@fureunoir.com")] @@ -483,7 +480,7 @@ STORAGES: dict[str, Any] = { if getenv("DBBACKUP_HOST") and getenv("DBBACKUP_USER") and getenv("DBBACKUP_PASS"): dbbackup_server_type = getenv("DBBACKUP_TYPE", "sftp") project_name = ( - getenv("EVIBES_PROJECT_NAME", "evibes_common").lower().replace(" ", "_") + getenv("SCHON_PROJECT_NAME", "schon_common").lower().replace(" ", "_") ) raw_path = getenv("DBBACKUP_PATH", f"/backups/{project_name}/") diff --git a/evibes/settings/caches.py b/schon/settings/caches.py similarity index 95% rename from evibes/settings/caches.py rename to schon/settings/caches.py index 2d3409c3..024c2e7a 100644 --- a/evibes/settings/caches.py +++ b/schon/settings/caches.py @@ -1,7 +1,7 @@ import sys from os import getenv -from evibes.settings.base import REDIS_PASSWORD +from schon.settings.base import REDIS_PASSWORD CACHES = { "default": { diff --git a/evibes/settings/celery.py b/schon/settings/celery.py similarity index 86% rename from evibes/settings/celery.py rename to schon/settings/celery.py index a57a85c5..ec133324 100644 --- a/evibes/settings/celery.py +++ b/schon/settings/celery.py @@ -1,6 +1,6 @@ from datetime import timedelta -from evibes.settings.base import REDIS_PASSWORD, TIME_ZONE +from schon.settings.base import REDIS_PASSWORD, TIME_ZONE CELERY_ENABLE_UTC = False CELERY_TIMEZONE = TIME_ZONE @@ -106,4 +106,14 @@ CELERY_BEAT_SCHEDULE = { "schedule": timedelta(hours=2), "options": {"queue": "default"}, }, + "send_scheduled_campaigns": { + "task": "engine.vibes_auth.emailing.tasks.send_scheduled_campaigns", + "schedule": timedelta(minutes=5), + "options": {"queue": "default"}, + }, + "generate_marketplace_feeds_task": { + "task": "engine.core.tasks.generate_marketplace_feeds_task", + "schedule": timedelta(days=1), + "options": {"queue": "default"}, + }, } diff --git a/evibes/settings/constance.py b/schon/settings/constance.py similarity index 91% rename from evibes/settings/constance.py rename to schon/settings/constance.py index d0de3e53..b350d25b 100644 --- a/evibes/settings/constance.py +++ b/schon/settings/constance.py @@ -69,8 +69,17 @@ CONSTANCE_CONFIG = OrderedDict( "EMAIL_HOST_PASSWORD", (getenv("EMAIL_HOST_PASSWORD", "SUPERsecretPASSWORD"), _("SMTP password")), ), - ("EMAIL_FROM", (getenv("EMAIL_FROM", "eVibes"), _("Mail from option"))), + ("EMAIL_FROM", (getenv("EMAIL_FROM", "Schon"), _("Mail from option"))), ### Features Options ### + ( + "EXPORT_TO_MARKETPLACES", + ( + "", + _( + "Export products to specified marketplaces. Comma-separated list from " + ), + ), + ), ( "DAYS_TO_STORE_ANON_MSGS", (1, _("How many days we store messages from anonymous users")), @@ -108,7 +117,7 @@ CONSTANCE_CONFIG = OrderedDict( ( "ADVERTSIMENT", ( - getenv("EVIBES_ADVERTISIMENT", ""), + getenv("SCHON_ADVERTISIMENT", ""), _("An entity for storing advertisiment data"), "json", ), @@ -116,7 +125,7 @@ CONSTANCE_CONFIG = OrderedDict( ( "ANALYTICS", ( - getenv("EVIBES_ANALYTICS", ""), + getenv("SCHON_ANALYTICS", ""), _("An entity for storing analytics data"), "json", ), @@ -149,6 +158,7 @@ CONSTANCE_CONFIG_FIELDSETS = OrderedDict( "EMAIL_FROM", ), _("Features Options"): ( + "EXPORT_TO_MARKETPLACES", "DAYS_TO_STORE_ANON_MSGS", "DAYS_TO_STORE_AUTH_MSGS", "DISABLED_COMMERCE", diff --git a/evibes/settings/csp.py b/schon/settings/csp.py similarity index 100% rename from evibes/settings/csp.py rename to schon/settings/csp.py diff --git a/evibes/settings/database.py b/schon/settings/database.py similarity index 100% rename from evibes/settings/database.py rename to schon/settings/database.py diff --git a/evibes/settings/dbbackup.py b/schon/settings/dbbackup.py similarity index 100% rename from evibes/settings/dbbackup.py rename to schon/settings/dbbackup.py diff --git a/evibes/settings/drf.py b/schon/settings/drf.py similarity index 88% rename from evibes/settings/drf.py rename to schon/settings/drf.py index 99e79b09..84727a4f 100644 --- a/evibes/settings/drf.py +++ b/schon/settings/drf.py @@ -5,25 +5,25 @@ from typing import Any from django.utils.text import format_lazy from django.utils.translation import gettext_lazy as _ -from evibes.settings.base import ( +from schon.settings.base import ( BASE_DOMAIN, DEBUG, - EVIBES_VERSION, PROJECT_NAME, + SCHON_VERSION, SECRET_KEY, ) REST_FRAMEWORK: dict[str, Any] = { - "DEFAULT_PAGINATION_CLASS": "evibes.pagination.CustomPagination", + "DEFAULT_PAGINATION_CLASS": "schon.pagination.CustomPagination", "PAGE_SIZE": 30, "DEFAULT_AUTHENTICATION_CLASSES": [ "rest_framework_simplejwt.authentication.JWTAuthentication", ], "DEFAULT_RENDERER_CLASSES": ( - "evibes.utils.renderers.CamelCaseRenderer", + "schon.utils.renderers.CamelCaseRenderer", "rest_framework.renderers.BrowsableAPIRenderer", ), - "DEFAULT_PARSER_CLASSES": ("evibes.utils.parsers.CamelCaseParser",), + "DEFAULT_PARSER_CLASSES": ("schon.utils.parsers.CamelCaseParser",), "DEFAULT_SCHEMA_CLASS": "drf_spectacular.generators.AutoSchema", "DEFAULT_PERMISSION_CLASSES": ("rest_framework.permissions.AllowAny",), "JSON_UNDERSCOREIZE": { @@ -45,13 +45,13 @@ SIMPLE_JWT: dict[str, timedelta | str | bool] = { "SIGNING_KEY": getenv("JWT_SIGNING_KEY", SECRET_KEY), # noqa: F405 "USER_ID_FIELD": "uuid", "USER_ID_CLAIM": "user_uuid", - "AUTH_HEADER_NAME": "HTTP_X_EVIBES_AUTH", + "AUTH_HEADER_NAME": "HTTP_X_SCHON_AUTH", } _SPECTACULAR_DESCRIPTION_TEMPLATE = _(""" -Welcome to the eVibes documentation. +Welcome to the Schon documentation. -eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks. +Schon is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks. ## Key Features - **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories. @@ -70,7 +70,7 @@ eVibes is a powerful e-commerce platform that allows you to launch and manage an - **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries ## Authentication -- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer `. +- Authentication is handled via JWT tokens. Include the token in the `X-SCHON-AUTH` header of your requests in the format `Bearer `. - Access token lifetime is {access_lifetime} {access_unit}. - Refresh token lifetime is {refresh_hours} hours. - Refresh tokens are automatically rotated and invalidated after usage for enhanced security. @@ -108,7 +108,7 @@ SPECTACULAR_DESCRIPTION = format_lazy( access_lifetime=_access_lifetime, access_unit=_access_unit, refresh_hours=_refresh_hours, - version=EVIBES_VERSION, + version=SCHON_VERSION, ) SPECTACULAR_SETTINGS = { @@ -116,12 +116,12 @@ SPECTACULAR_SETTINGS = { "DEFAULT_GENERATOR_CLASS": "drf_spectacular_websocket.schemas.WsSchemaGenerator", "TITLE": f"{PROJECT_NAME} API", "DESCRIPTION": SPECTACULAR_DESCRIPTION, - "VERSION": EVIBES_VERSION, # noqa: F405 - "TOS": "https://evibes.wiseless.xyz/terms-of-service", + "VERSION": SCHON_VERSION, # noqa: F405 + "TOS": "https://schon.wiseless.xyz/terms-of-service", "SWAGGER_UI_DIST": "SIDECAR", "CAMELIZE_NAMES": True, "POSTPROCESSING_HOOKS": [ - "evibes.utils.renderers.camelize_serializer_fields", + "schon.utils.renderers.camelize_serializer_fields", "drf_spectacular.hooks.postprocess_schema_enums", ], "REDOC_DIST": "SIDECAR", diff --git a/evibes/settings/elasticsearch.py b/schon/settings/elasticsearch.py similarity index 92% rename from evibes/settings/elasticsearch.py rename to schon/settings/elasticsearch.py index eb842c8c..4de5590e 100644 --- a/evibes/settings/elasticsearch.py +++ b/schon/settings/elasticsearch.py @@ -1,6 +1,6 @@ from os import getenv -from evibes.settings.base import DEBUG +from schon.settings.base import DEBUG ELASTICSEARCH_DSL = { "default": { diff --git a/evibes/settings/emailing.py b/schon/settings/emailing.py similarity index 90% rename from evibes/settings/emailing.py rename to schon/settings/emailing.py index fac159f2..89b5fcf6 100644 --- a/evibes/settings/emailing.py +++ b/schon/settings/emailing.py @@ -7,4 +7,4 @@ EMAIL_USE_TLS = bool(int(getenv("EMAIL_USE_TLS", 0))) EMAIL_USE_SSL = bool(int(getenv("EMAIL_USE_SSL", 1))) EMAIL_HOST_USER = getenv("EMAIL_HOST_USER", "no-user@fix.this") EMAIL_HOST_PASSWORD = getenv("EMAIL_HOST_PASSWORD", "SUPERsecretPASSWORD") -EMAIL_FROM = getenv("EMAIL_FROM", "eVibes") +EMAIL_FROM = getenv("EMAIL_FROM", "Schon") diff --git a/evibes/settings/extensions.py b/schon/settings/extensions.py similarity index 85% rename from evibes/settings/extensions.py rename to schon/settings/extensions.py index c3f74482..729c1c14 100644 --- a/evibes/settings/extensions.py +++ b/schon/settings/extensions.py @@ -1,5 +1,5 @@ # noinspection PyUnresolvedReferences -from evibes.settings.base import * # noqa: F403 +from schon.settings.base import * # noqa: F403 GRAPH_MODELS = { "all_applications": True, diff --git a/schon/settings/graphene.py b/schon/settings/graphene.py new file mode 100644 index 00000000..02eb378c --- /dev/null +++ b/schon/settings/graphene.py @@ -0,0 +1,13 @@ +from schon.settings.base import DEBUG + +GRAPHENE = { + "MIDDLEWARE": [ + "schon.middleware.GrapheneLoggingErrorsDebugMiddleware", + "schon.middleware.GrapheneJWTAuthorizationMiddleware", + ] + if DEBUG + else [ + "schon.middleware.GrapheneJWTAuthorizationMiddleware", + ], + "CAMELCASE_ERRORS": True, +} diff --git a/evibes/settings/logconfig.py b/schon/settings/logconfig.py similarity index 96% rename from evibes/settings/logconfig.py rename to schon/settings/logconfig.py index feeeb738..6d860141 100644 --- a/evibes/settings/logconfig.py +++ b/schon/settings/logconfig.py @@ -1,6 +1,6 @@ import logging -from evibes.settings.base import DEBUG, DEBUG_CELERY, DEBUG_DATABASE +from schon.settings.base import DEBUG, DEBUG_CELERY, DEBUG_DATABASE class SkipVariableDoesNotExistFilter(logging.Filter): @@ -40,7 +40,7 @@ LOGGING = { "require_debug_false": {"()": "django.utils.log.RequireDebugFalse"}, "require_debug_true": {"()": "django.utils.log.RequireDebugTrue"}, "skip_variable_doesnotexist": { - "()": "evibes.settings.logconfig.SkipVariableDoesNotExistFilter" + "()": "schon.settings.logconfig.SkipVariableDoesNotExistFilter" }, }, "handlers": { @@ -106,7 +106,7 @@ LOGGING = { "level": "ERROR", "propagate": True, }, - "evibes": { + "schon": { "handlers": ["console"], "level": "DEBUG" if DEBUG else "INFO", "propagate": True, diff --git a/evibes/settings/unfold.py b/schon/settings/unfold.py similarity index 92% rename from evibes/settings/unfold.py rename to schon/settings/unfold.py index 21ba4e1b..3e6387a9 100644 --- a/evibes/settings/unfold.py +++ b/schon/settings/unfold.py @@ -4,10 +4,10 @@ from django.templatetags.static import static from django.urls import reverse_lazy from django.utils.translation import gettext_lazy as _ -from evibes.settings.base import ( +from schon.settings.base import ( LANGUAGES as BASE_LANGUAGES, ) -from evibes.settings.base import ( +from schon.settings.base import ( LANGUAGES_FLAGS, PROJECT_NAME, STOREFRONT_DOMAIN, @@ -16,6 +16,21 @@ from evibes.settings.base import ( ) UNFOLD: dict[str, Any] = { + "COLORS": { + "primary": { + "50": "#f4f6f7", + "100": "#e2e7ea", + "200": "#c8d1d7", + "300": "#a1b0bb", + "400": "#7f909e", + "500": "#5c7182", + "600": "#4e5f6f", + "700": "#44515d", + "800": "#3c464f", + "900": "#353d44", + "950": "#22282d", + }, + }, "SITE_URL": STOREFRONT_DOMAIN, "SITE_TITLE": f"{PROJECT_NAME} Dashboard", "SITE_HEADER": PROJECT_NAME, diff --git a/evibes/signal_processors.py b/schon/signal_processors.py similarity index 100% rename from evibes/signal_processors.py rename to schon/signal_processors.py diff --git a/evibes/urls.py b/schon/urls.py similarity index 88% rename from evibes/urls.py rename to schon/urls.py index a7e0f82a..c6ef2a26 100644 --- a/evibes/urls.py +++ b/schon/urls.py @@ -1,3 +1,5 @@ +from django.conf import settings +from django.conf.urls.static import static from django.contrib import admin from django.urls import include, path from django.views.decorators.csrf import csrf_exempt @@ -11,7 +13,7 @@ from engine.core.views import ( favicon_view, index, ) -from evibes.i18n import set_language +from schon.i18n import set_language urlpatterns = [ ### COMMON URLS ### @@ -31,10 +33,6 @@ urlpatterns = [ "django_prometheus.urls", ), ), - path( - "summernote/", - include("django_summernote.urls"), - ), path( r"i18n/setlang/", set_language, @@ -57,7 +55,7 @@ urlpatterns = [ ### DOCUMENTATION URLS ### path( r"docs/", - CustomSpectacularAPIView.as_view(urlconf="evibes.urls"), + CustomSpectacularAPIView.as_view(urlconf="schon.urls"), name="schema-platform", ), path( @@ -101,3 +99,6 @@ urlpatterns = [ admin.site.urls, ), ] + +if settings.DEBUG: + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/evibes/utils/__init__.py b/schon/utils/__init__.py similarity index 63% rename from evibes/utils/__init__.py rename to schon/utils/__init__.py index 3b87e0bb..e9818c3e 100644 --- a/evibes/utils/__init__.py +++ b/schon/utils/__init__.py @@ -1,9 +1,4 @@ -import os -import uuid -from datetime import datetime -from typing import Any - -from evibes.settings.base import LANGUAGE_CODE, LANGUAGES +from schon.settings.base import LANGUAGE_CODE, LANGUAGES def get_language_from_header(accept_language: str | None = None) -> str: @@ -30,18 +25,8 @@ def get_language_from_header(accept_language: str | None = None) -> str: return LANGUAGE_CODE.lower() -def evibes_summernote_upload_to_func(instance: Any, filename: str) -> str: - ext = filename.split(".")[-1] - filename = f"{uuid.uuid4()}.{ext}" - today = datetime.now().strftime("%Y-%m-%d") - if instance: - return os.path.join("evibes-summernote", today, filename) - return os.path.join("evibes-summernote", today) - - __all__ = [ "get_language_from_header", - "evibes_summernote_upload_to_func", "renderers", "parsers", "misc", diff --git a/evibes/utils/misc.py b/schon/utils/misc.py similarity index 100% rename from evibes/utils/misc.py rename to schon/utils/misc.py diff --git a/evibes/utils/parsers.py b/schon/utils/parsers.py similarity index 100% rename from evibes/utils/parsers.py rename to schon/utils/parsers.py diff --git a/evibes/utils/renderers.py b/schon/utils/renderers.py similarity index 94% rename from evibes/utils/renderers.py rename to schon/utils/renderers.py index af26e05b..ef357e2e 100644 --- a/evibes/utils/renderers.py +++ b/schon/utils/renderers.py @@ -4,8 +4,8 @@ from typing import Any, Collection, MutableMapping from django.utils.module_loading import import_string from drf_orjson_renderer.renderers import ORJSONRenderer -from evibes.settings.base import MIDDLEWARE -from evibes.settings.drf import JSON_UNDERSCOREIZE +from schon.settings.base import MIDDLEWARE +from schon.settings.drf import JSON_UNDERSCOREIZE camelize_re = re.compile(r"[a-z0-9]?_[a-z0-9]") @@ -48,7 +48,7 @@ def camelize_serializer_fields(result, generator, request, public): def has_middleware_installed(): try: - from evibes.middleware import CamelCaseMiddleWare + from schon.middleware import CamelCaseMiddleWare except ImportError: return False @@ -104,7 +104,7 @@ def camelize_serializer_fields(result, generator, request, public): class CamelCaseRenderer(ORJSONRenderer): def render( self, data: Any, media_type: str | None = None, renderer_context: Any = None - ) -> bytes: # ty:ignore[invalid-method-override] + ) -> bytes: if data is None: return b"" diff --git a/evibes/wsgi.py b/schon/wsgi.py similarity index 73% rename from evibes/wsgi.py rename to schon/wsgi.py index dc47d3ed..ed51a3e0 100644 --- a/evibes/wsgi.py +++ b/schon/wsgi.py @@ -1,5 +1,5 @@ """ -WSGI config for the eVibes project. +WSGI config for the Schon project. It exposes the WSGI callable as a module-level variable named ``application``. @@ -11,6 +11,6 @@ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "evibes.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "schon.settings") application = get_wsgi_application() diff --git a/scripts/ASCII_ART_EVIBES b/scripts/ASCII_ART_EVIBES deleted file mode 100644 index 5c849d69..00000000 --- a/scripts/ASCII_ART_EVIBES +++ /dev/null @@ -1,12 +0,0 @@ - - .=== ==. === - ==== ==: *=* === - ==== ==: === - ==== ==: === - =. ==== ==: .=. === .====. .=====. .===. - .=.= == = ===: ==: === ====. :===. ==== === .==: - .=::=== -= ===. ==: === === === ====::::::==. ===- - :== === ==: === === === === ====. - .. === ==: === === === === ==== - = ====: === === === .===. . :=== - .= == ==. .=. =:========. :========. ======. diff --git a/scripts/ASCII_ART_SCHON b/scripts/ASCII_ART_SCHON new file mode 100644 index 00000000..14168d25 --- /dev/null +++ b/scripts/ASCII_ART_SCHON @@ -0,0 +1,10 @@ +╔══════════════════════════════════════════════════╗ +║ ║ +║ ███████╗ ██████╗██╗ ██╗ ██████╗ ███╗ ██╗ ║ +║ ██╔════╝██╔════╝██║ ██║██╔═══██╗████╗ ██║ ║ +║ ███████╗██║ ███████║██║ ██║██╔██╗ ██║ ║ +║ ╚════██║██║ ██╔══██║██║ ██║██║╚██╗██║ ║ +║ ███████║╚██████╗██║ ██║╚██████╔╝██║ ╚████║ ║ +║ ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ║ +║ by WISELESS TEAM ║ +╚══════════════════════════════════════════════════╝ \ No newline at end of file diff --git a/scripts/Docker/app-entrypoint.sh b/scripts/Docker/app-entrypoint.sh index f4bd28fe..07a8c203 100644 --- a/scripts/Docker/app-entrypoint.sh +++ b/scripts/Docker/app-entrypoint.sh @@ -4,8 +4,8 @@ set -e uv run manage.py await_services if [ "${DEBUG:-0}" = "1" ]; then - uv run uvicorn --host 0.0.0.0 --port 8000 --reload --log-level debug --ws-ping-interval 20 --ws-ping-timeout 20 evibes.asgi:application + uv run uvicorn --host 0.0.0.0 --port 8000 --reload --log-level debug --ws-ping-interval 20 --ws-ping-timeout 20 schon.asgi:application else UVICORN_WORKERS=${UVICORN_WORKERS:-4} - uv run uvicorn --host 0.0.0.0 --port 8000 --workers "$UVICORN_WORKERS" --proxy-headers --forwarded-allow-ips='*' --ws-ping-interval 20 --ws-ping-timeout 20 evibes.asgi:application + uv run uvicorn --host 0.0.0.0 --port 8000 --workers "$UVICORN_WORKERS" --proxy-headers --forwarded-allow-ips='*' --ws-ping-interval 20 --ws-ping-timeout 20 schon.asgi:application fi diff --git a/scripts/Docker/beat-entrypoint.sh b/scripts/Docker/beat-entrypoint.sh index 5dbfd4e7..626174ba 100644 --- a/scripts/Docker/beat-entrypoint.sh +++ b/scripts/Docker/beat-entrypoint.sh @@ -3,4 +3,4 @@ set -e uv run manage.py await_services -uv run celery -A evibes beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler +uv run celery -A schon beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler diff --git a/scripts/Docker/stock-updater-entrypoint.sh b/scripts/Docker/stock-updater-entrypoint.sh index 942ccbf7..a4b4dcff 100644 --- a/scripts/Docker/stock-updater-entrypoint.sh +++ b/scripts/Docker/stock-updater-entrypoint.sh @@ -3,4 +3,4 @@ set -e uv run manage.py await_services -uv run celery -A evibes worker --pool=prefork --concurrency=1 --queues=stock_updater --prefetch-multiplier=1 --max-tasks-per-child=5 --max-memory-per-child=1024000 -E +uv run celery -A schon worker --pool=prefork --concurrency=1 --queues=stock_updater --prefetch-multiplier=1 --max-tasks-per-child=5 --max-memory-per-child=1024000 -E diff --git a/scripts/Docker/worker-entrypoint.sh b/scripts/Docker/worker-entrypoint.sh index 6edf6d5b..6b323b06 100644 --- a/scripts/Docker/worker-entrypoint.sh +++ b/scripts/Docker/worker-entrypoint.sh @@ -3,4 +3,4 @@ set -e uv run manage.py await_services -uv run celery -A evibes worker --pool=prefork --concurrency=8 --queues=default --prefetch-multiplier=2 --max-tasks-per-child=100 --max-memory-per-child=512000 -E & /opt/evibes-python/bin/celery-prometheus-exporter +uv run celery -A schon worker --pool=prefork --concurrency=8 --queues=default --prefetch-multiplier=2 --max-tasks-per-child=100 --max-memory-per-child=512000 -E diff --git a/scripts/Unix/generate-environment-file.sh b/scripts/Unix/generate-environment-file.sh index fafc8dcb..f907e9d7 100755 --- a/scripts/Unix/generate-environment-file.sh +++ b/scripts/Unix/generate-environment-file.sh @@ -43,9 +43,9 @@ if [ -f .env ]; then fi fi -EVIBES_PROJECT_NAME=$(prompt_default EVIBES_PROJECT_NAME eVibes) -EVIBES_STOREFRONT_DOMAIN=$(prompt_default EVIBES_STOREFRONT_DOMAIN evibes.com) -EVIBES_BASE_DOMAIN=$(prompt_default EVIBES_BASE_DOMAIN evibes.com) +SCHON_PROJECT_NAME=$(prompt_default SCHON_PROJECT_NAME Schon) +SCHON_STOREFRONT_DOMAIN=$(prompt_default SCHON_STOREFRONT_DOMAIN schon.fureunoir.com) +SCHON_BASE_DOMAIN=$(prompt_default SCHON_BASE_DOMAIN schon.fureunoir.com) SENTRY_DSN=$(prompt_default SENTRY_DSN "") DEBUG=$(prompt_default DEBUG 1) TIME_ZONE=$(prompt_default TIME_ZONE "Europe/London") @@ -53,12 +53,12 @@ TIME_ZONE=$(prompt_default TIME_ZONE "Europe/London") SECRET_KEY=$(prompt_autogen SECRET_KEY 32) JWT_SIGNING_KEY=$(prompt_autogen JWT_SIGNING_KEY 64) -ALLOWED_HOSTS=$(prompt_default ALLOWED_HOSTS "evibes.com api.evibes.com") -CSRF_TRUSTED_ORIGINS=$(prompt_default CSRF_TRUSTED_ORIGINS "https://evibes.com https://api.evibes.com https://www.evibes.com") +ALLOWED_HOSTS=$(prompt_default ALLOWED_HOSTS "schon.fureunoir.com api.schon.fureunoir.com") +CSRF_TRUSTED_ORIGINS=$(prompt_default CSRF_TRUSTED_ORIGINS "https://schon.fureunoir.com https://api.schon.fureunoir.com https://www.schon.fureunoir.com") CORS_ALLOWED_ORIGINS=$(prompt_default CORS_ALLOWED_ORIGINS "$CSRF_TRUSTED_ORIGINS") -POSTGRES_DB=$(prompt_default POSTGRES_DB evibes) -POSTGRES_USER=$(prompt_default POSTGRES_USER evibes_user) +POSTGRES_DB=$(prompt_default POSTGRES_DB schon) +POSTGRES_USER=$(prompt_default POSTGRES_USER schon_user) POSTGRES_PASSWORD=$(prompt_autogen POSTGRES_PASSWORD 16) DBBACKUP_TYPE=$(prompt_default DBBACKUP_TYPE "Your backup connection type") @@ -69,19 +69,19 @@ DBBACKUP_PASS=$(prompt_default DBBACKUP_PASS "The password to use to log in to t ELASTIC_PASSWORD=$(prompt_autogen ELASTIC_PASSWORD 16) REDIS_PASSWORD=$(prompt_autogen REDIS_PASSWORD 16) -PROMETHEUS_USER=$(prompt_default PROMETHEUS_USER evibes) +PROMETHEUS_USER=$(prompt_default PROMETHEUS_USER schon) PROMETHEUS_PASSWORD=$(prompt_autogen PROMETHEUS_PASSWORD 16) EMAIL_BACKEND=$(prompt_default EMAIL_BACKEND django.core.mail.backends.smtp.EmailBackend) -EMAIL_HOST=$(prompt_default EMAIL_HOST smtp.whatever.evibes.com) +EMAIL_HOST=$(prompt_default EMAIL_HOST smtp.whatever.schon.fureunoir.com) EMAIL_PORT=$(prompt_default EMAIL_PORT 465) EMAIL_USE_TLS=$(prompt_default EMAIL_USE_TLS 0) EMAIL_USE_SSL=$(prompt_default EMAIL_USE_SSL 1) -EMAIL_HOST_USER=$(prompt_default EMAIL_HOST_USER your-email-user@whatever.evibes.com) +EMAIL_HOST_USER=$(prompt_default EMAIL_HOST_USER your-email-user@whatever.schon.fureunoir.com) EMAIL_FROM=$EMAIL_HOST_USER EMAIL_HOST_PASSWORD=$(prompt_default EMAIL_HOST_PASSWORD SUPERSECRETEMAILHOSTPASSWORD) -COMPANY_NAME=$(prompt_default COMPANY_NAME "eVibes, Inc.") +COMPANY_NAME=$(prompt_default COMPANY_NAME "Schon, Inc.") COMPANY_PHONE_NUMBER=$(prompt_default COMPANY_PHONE_NUMBER "+888888888888") COMPANY_ADDRESS=$(prompt_default COMPANY_ADDRESS "The place that does not exist") @@ -90,9 +90,9 @@ ABSTRACT_API_KEY=$(prompt_default ABSTRACT_API_KEY "Haha, really? x2") DEEPL_AUTH_KEY=$(prompt_default DEEPL_AUTH_KEY "Haha, really? x3") cat > .env </dev/null; then + log_info "User '$SCHON_USER' already exists" +else + useradd --system --shell /usr/sbin/nologin --home-dir "$INSTALL_DIR" "$SCHON_USER" + log_success "Created system user '$SCHON_USER'" +fi + +# ───────────────────────────────────────────────────────────────────────────── +# Check for .env file +# ───────────────────────────────────────────────────────────────────────────── +if [ ! -f "$INSTALL_DIR/.env" ]; then + log_error ".env file not found" + log_info "Run 'make generate-env' first, then configure your .env file" + exit 1 +fi + +# ───────────────────────────────────────────────────────────────────────────── +# Install Python dependencies +# ───────────────────────────────────────────────────────────────────────────── +log_step "Installing Python dependencies with uv..." + +cd "$INSTALL_DIR" + +# Create virtual environment if it doesn't exist +if [ ! -d "$INSTALL_DIR/.venv" ]; then + uv venv "$INSTALL_DIR/.venv" + log_success "Created virtual environment" +fi + +# Sync dependencies +uv sync --extra worker --extra openai +log_success "Dependencies installed" + +# ───────────────────────────────────────────────────────────────────────────── +# Set ownership +# ───────────────────────────────────────────────────────────────────────────── +log_step "Setting file ownership..." + +chown -R "$SCHON_USER:$SCHON_GROUP" "$INSTALL_DIR" +log_success "Ownership set to $SCHON_USER:$SCHON_GROUP" + +# ───────────────────────────────────────────────────────────────────────────── +# Install systemd services +# ───────────────────────────────────────────────────────────────────────────── +log_step "Installing systemd services..." + +SYSTEMD_DIR="/etc/systemd/system" +SERVICES=("schon-web" "schon-worker" "schon-beat" "schon-stock-updater") + +for service in "${SERVICES[@]}"; do + src="$INSTALL_DIR/systemd/${service}.service" + dst="$SYSTEMD_DIR/${service}.service" + + if [ -f "$src" ]; then + ln -sf "$src" "$dst" + log_info " Linked ${service}.service" + else + log_warning " Service file not found: $src" + fi +done + +# Reload systemd +systemctl daemon-reload +log_success "Systemd services installed" + +# ───────────────────────────────────────────────────────────────────────────── +# Enable services +# ───────────────────────────────────────────────────────────────────────────── +log_step "Enabling services..." + +for service in "${SERVICES[@]}"; do + systemctl enable "$service" 2>/dev/null || true + log_info " Enabled ${service}" +done + +log_success "Services enabled" + +# ───────────────────────────────────────────────────────────────────────────── +# Summary +# ───────────────────────────────────────────────────────────────────────────── +echo +log_result "Installation complete!" +echo +log_info "Next steps:" +log_info " 1. Configure your .env file: nano $INSTALL_DIR/.env" +log_info " 2. Ensure PostgreSQL, Redis, and Elasticsearch are running" +log_info " 3. Run migrations: sudo -u $SCHON_USER $INSTALL_DIR/.venv/bin/python manage.py migrate" +log_info " 4. Create superuser: sudo -u $SCHON_USER $INSTALL_DIR/.venv/bin/python manage.py createsuperuser" +log_info " 5. Start services: systemctl start schon-web schon-worker schon-beat schon-stock-updater" +log_info " 6. Configure nginx with nginx.example.conf" +echo +log_info "View service status: systemctl status schon-web" +log_info "View logs: journalctl -u schon-web -f" diff --git a/scripts/Unix/install.sh b/scripts/Unix/install.sh index c9fb9025..7ef3e258 100755 --- a/scripts/Unix/install.sh +++ b/scripts/Unix/install.sh @@ -4,30 +4,85 @@ set -euo pipefail source ./scripts/Unix/starter.sh if [ ! -f .env ]; then - log_warning ".env file not found. Exiting without running Docker steps." + log_warning ".env file not found." + log_info "Run 'make generate-env' first to create your environment file." exit 0 fi -# Check system requirements -if ! check_system_requirements 4 6 20; then - exit 1 -fi - -# Pull Docker images -log_step "Pulling images..." -if ! docker compose pull; then - log_error "Failed to pull Docker images" - exit 1 -fi -log_success "Images pulled successfully" - -# Build Docker images -log_step "Building images..." -if ! docker compose build; then - log_error "Failed to build Docker images" - exit 1 -fi -log_success "Images built successfully" - +# ───────────────────────────────────────────────────────────────────────────── +# Installation type selection +# ───────────────────────────────────────────────────────────────────────────── echo -log_result "You can now use run.sh script or run: ./lessy.py run" +log_info "Select installation type:" +echo +echo " 1) Docker (recommended for development)" +echo " - Uses Docker Compose to run all services" +echo " - Includes database, Redis, Elasticsearch" +echo +echo " 2) Native Linux (production with systemd)" +echo " - Installs directly on your system" +echo " - Requires existing PostgreSQL, Redis, Elasticsearch" +echo " - Configures systemd services" +echo + +if is_interactive; then + read -r -p "Choice [1/2]: " install_choice +else + # Non-interactive mode defaults to Docker + install_choice="1" + log_info "Non-interactive mode: defaulting to Docker installation" +fi + +case "$install_choice" in + 2) + log_step "Starting native Linux installation..." + source ./scripts/Unix/install-native.sh + ;; + 1|*) + # ───────────────────────────────────────────────────────────────────────── + # Docker installation (original behavior) + # ───────────────────────────────────────────────────────────────────────── + log_step "Starting Docker installation..." + + # Check system requirements + if ! check_system_requirements 4 6 20; then + exit 1 + fi + + # Check Docker is available + if ! command_exists docker; then + log_error "Docker is not installed. Please install Docker first." + log_info "Visit: https://docs.docker.com/get-docker/" + exit 1 + fi + + if ! docker info >/dev/null 2>&1; then + log_error "Docker daemon is not running or you don't have permission." + log_info "Try: sudo systemctl start docker" + log_info "Or add yourself to the docker group: sudo usermod -aG docker \$USER" + exit 1 + fi + + # Pull Docker images + log_step "Pulling images..." + if ! output=$(docker compose pull --quiet 2>&1); then + log_error "Failed to pull Docker images" + echo "$output" + exit 1 + fi + log_success "Images pulled successfully" + + # Build Docker images + log_step "Building images..." + if ! output=$(docker compose build 2>&1); then + log_error "Failed to build Docker images" + echo "$output" + exit 1 + fi + log_success "Images built successfully" + + echo + log_result "Docker installation complete!" + log_info "You can now use: make run" + ;; +esac diff --git a/scripts/Unix/make-messages.sh b/scripts/Unix/make-messages.sh index 3303ac67..8c2d1f56 100755 --- a/scripts/Unix/make-messages.sh +++ b/scripts/Unix/make-messages.sh @@ -41,4 +41,4 @@ fi log_success "Translated successfully!" echo -log_result "You can now use compile-messages.sh script or run: ./lessy.py compile-messages" +log_result "You can now use compile-messages.sh script or run: make compile-messages" diff --git a/scripts/Unix/make-migrations.sh b/scripts/Unix/make-migrations.sh new file mode 100644 index 00000000..b015f9f7 --- /dev/null +++ b/scripts/Unix/make-migrations.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash +set -euo pipefail + +source ./scripts/Unix/starter.sh + +# Detect environment: Docker or native +use_docker=false +use_native=false + +if [ -f .env ]; then + use_docker=true +fi + +if [ -d .venv ]; then + use_native=true +fi + +if [ "$use_docker" = false ] && [ "$use_native" = false ]; then + log_error "Neither .env (Docker) nor .venv (native) found. Please set up your environment first." + exit 1 +fi + +log_step "Generating migration files..." + +if [ "$use_docker" = true ]; then + if ! docker compose exec app uv run manage.py makemigrations; then + log_error "Failed to generate migration files" + exit 1 + fi +elif [ "$use_native" = true ]; then + if ! .venv/bin/python manage.py makemigrations; then + log_error "Failed to generate migration files" + exit 1 + fi +fi + +log_success "Migration files created successfully!" + +echo +log_result "You can now use migrate.sh script or run: make migrate" diff --git a/scripts/Unix/migrate.sh b/scripts/Unix/migrate.sh new file mode 100644 index 00000000..f69a8689 --- /dev/null +++ b/scripts/Unix/migrate.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash +set -euo pipefail + +source ./scripts/Unix/starter.sh + +# Detect environment: Docker or native +use_docker=false +use_native=false + +if [ -f .env ]; then + use_docker=true +fi + +if [ -d .venv ]; then + use_native=true +fi + +if [ "$use_docker" = false ] && [ "$use_native" = false ]; then + log_error "Neither .env (Docker) nor .venv (native) found. Please set up your environment first." + exit 1 +fi + +log_step "Applying migration files..." + +if [ "$use_docker" = true ]; then + if ! docker compose exec app uv run manage.py migrate; then + log_error "Failed to apply migration files" + exit 1 + fi +elif [ "$use_native" = true ]; then + if ! .venv/bin/python manage.py migrate; then + log_error "Failed to apply migration files" + exit 1 + fi +fi + +log_success "Migration files applied successfully!" + +echo +log_result "Database is now up to date" diff --git a/scripts/Unix/restart.sh b/scripts/Unix/restart.sh index 1fa17c97..5c5b94dc 100755 --- a/scripts/Unix/restart.sh +++ b/scripts/Unix/restart.sh @@ -5,16 +5,18 @@ source ./scripts/Unix/starter.sh # Shutdown services log_step "Shutting down..." -if ! docker compose down; then +if ! output=$(docker compose down 2>&1); then log_error "Failed to shut down services" + echo "$output" exit 1 fi log_success "Services were shut down successfully!" # Rebuild and start services log_step "Spinning services up with rebuild..." -if ! docker compose up -d --build --wait; then +if ! output=$(docker compose up -d --build --wait 2>&1); then log_error "Failed to start services" + echo "$output" exit 1 fi log_success "Services are up and healthy!" @@ -23,32 +25,37 @@ log_success "Services are up and healthy!" log_step "Completing pre-run tasks..." log_info " → Running migrations..." -if ! docker compose exec app uv run manage.py migrate --no-input --verbosity 0; then +if ! output=$(docker compose exec -T app uv run manage.py migrate --no-input --verbosity 0 2>&1); then log_error "Migrations failed" + echo "$output" exit 1 fi log_info " → Initializing..." -if ! docker compose exec app uv run manage.py initialize; then +if ! output=$(docker compose exec -T app uv run manage.py initialize 2>&1); then log_error "Initialization failed" + echo "$output" exit 1 fi log_info " → Setting default caches..." -if ! docker compose exec app uv run manage.py set_default_caches; then +if ! output=$(docker compose exec -T app uv run manage.py set_default_caches 2>&1); then log_error "Cache setup failed" + echo "$output" exit 1 fi log_info " → Rebuilding search index..." -if ! docker compose exec app uv run manage.py search_index --rebuild -f; then +if ! output=$(docker compose exec -T app uv run manage.py search_index --rebuild -f 2>&1); then log_error "Search index rebuild failed" + echo "$output" exit 1 fi log_info " → Collecting static files..." -if ! docker compose exec app uv run manage.py collectstatic --clear --no-input --verbosity 0; then +if ! output=$(docker compose exec -T app uv run manage.py collectstatic --clear --no-input --verbosity 0 2>&1); then log_error "Static files collection failed" + echo "$output" exit 1 fi @@ -56,10 +63,8 @@ log_success "Pre-run tasks completed successfully!" # Cleanup log_step "Cleaning up unused Docker data..." -if ! docker system prune -f; then - log_warning "Docker cleanup had issues, but continuing..." -fi +docker system prune -f >/dev/null 2>&1 || log_warning "Docker cleanup had issues, but continuing..." log_success "Unused Docker data cleaned successfully!" echo -log_result "All done! eVibes is up and running!" +log_result "All done! Schon is up and running!" diff --git a/scripts/Unix/run.sh b/scripts/Unix/run.sh index 358e2d3a..26cc9161 100755 --- a/scripts/Unix/run.sh +++ b/scripts/Unix/run.sh @@ -22,8 +22,9 @@ fi # Start services log_step "Spinning services up..." -if ! docker compose up --no-build --detach --wait; then +if ! output=$(docker compose up --no-build --detach --wait 2>&1); then log_error "Failed to start services" + echo "$output" exit 1 fi log_success "Services are up and healthy!" @@ -32,32 +33,37 @@ log_success "Services are up and healthy!" log_step "Completing pre-run tasks..." log_info " → Running migrations..." -if ! docker compose exec app uv run manage.py migrate --no-input --verbosity 0; then +if ! output=$(docker compose exec -T app uv run manage.py migrate --no-input --verbosity 0 2>&1); then log_error "Migrations failed" + echo "$output" exit 1 fi log_info " → Initializing..." -if ! docker compose exec app uv run manage.py initialize; then +if ! output=$(docker compose exec -T app uv run manage.py initialize 2>&1); then log_error "Initialization failed" + echo "$output" exit 1 fi log_info " → Setting default caches..." -if ! docker compose exec app uv run manage.py set_default_caches; then +if ! output=$(docker compose exec -T app uv run manage.py set_default_caches 2>&1); then log_error "Cache setup failed" + echo "$output" exit 1 fi log_info " → Rebuilding search index..." -if ! docker compose exec app uv run manage.py search_index --rebuild -f; then +if ! output=$(docker compose exec -T app uv run manage.py search_index --rebuild -f 2>&1); then log_error "Search index rebuild failed" + echo "$output" exit 1 fi log_info " → Collecting static files..." -if ! docker compose exec app uv run manage.py collectstatic --clear --no-input --verbosity 0; then +if ! output=$(docker compose exec -T app uv run manage.py collectstatic --clear --no-input --verbosity 0 2>&1); then log_error "Static files collection failed" + echo "$output" exit 1 fi @@ -65,10 +71,8 @@ log_success "Pre-run tasks completed successfully!" # Cleanup log_step "Cleaning unused Docker data..." -if ! docker system prune -f; then - log_warning "Docker cleanup had issues, but continuing..." -fi +docker system prune -f >/dev/null 2>&1 || log_warning "Docker cleanup had issues, but continuing..." log_success "Unused Docker data cleaned successfully!" echo -log_result "All done! eVibes is up and running!" +log_result "All done! Schon is up and running!" diff --git a/scripts/Unix/starter.sh b/scripts/Unix/starter.sh index 840bc2ac..4e2520e1 100644 --- a/scripts/Unix/starter.sh +++ b/scripts/Unix/starter.sh @@ -11,26 +11,28 @@ script_dir="$(cd "$(dirname "$script_path")" && pwd -P)" # shellcheck source=../lib/utils.sh source "$script_dir/../lib/utils.sh" -if [ ! -d "./evibes" ]; then - log_error "❌ Please run this script from the project's root (where the 'evibes' directory lives)." +if [ ! -d "./schon" ]; then + log_error "❌ Please run this script from the project's root (where the 'schon' directory lives)." exit 1 fi -art_path="$script_dir/../ASCII_ART_EVIBES" +art_path="$script_dir/../ASCII_ART_SCHON" if [ ! -f "$art_path" ]; then log_error "❌ Could not find ASCII art at $art_path" exit 1 fi +if is_interactive && [ -n "${TERM:-}" ]; then + clear +fi + if is_interactive; then # In interactive mode, show colorful banner - purple='\033[38;2;121;101;209m' + royal_grey='\033[38;2;127;144;158m' reset='\033[0m' - echo -e "${purple}$(cat "$art_path")${reset}" - echo - echo -e "${COLOR_GRAY} by WISELESS TEAM${COLOR_RESET}" + echo -e "${royal_grey}$(cat "$art_path")${reset}" echo else # In non-interactive mode, show simple banner - echo "eVibes by WISELESS TEAM" + echo "Schon by WISELESS TEAM" fi diff --git a/scripts/Unix/test.sh b/scripts/Unix/test.sh index f029c08a..08128ae5 100644 --- a/scripts/Unix/test.sh +++ b/scripts/Unix/test.sh @@ -4,7 +4,7 @@ set -euo pipefail source ./scripts/Unix/starter.sh report="" -omit_pattern='storefront/*,monitoring/*,Dockerfiles/*,*/__init__.py,*/tests/*,*/migrations/*,manage.py,evibes/*' +omit_pattern='storefront/*,monitoring/*,Dockerfiles/*,*/__init__.py,*/tests/*,*/migrations/*,manage.py,schon/*' while [ "$#" -gt 0 ]; do case "$1" in diff --git a/scripts/Unix/uninstall.sh b/scripts/Unix/uninstall.sh index 8e57da6c..125b8e41 100644 --- a/scripts/Unix/uninstall.sh +++ b/scripts/Unix/uninstall.sh @@ -13,8 +13,8 @@ log_success "Services were shut down successfully!" # Remove volumes log_step "Removing volumes..." -docker volume rm -f evibes_prometheus-data || log_warning "Failed to remove prometheus-data volume" -docker volume rm -f evibes_es-data || log_warning "Failed to remove es-data volume" +docker volume rm -f schon_prometheus-data || log_warning "Failed to remove prometheus-data volume" +docker volume rm -f schon_es-data || log_warning "Failed to remove es-data volume" log_success "Volumes were removed successfully!" # Cleanup Docker diff --git a/scripts/Windows/generate-environment-file.ps1 b/scripts/Windows/generate-environment-file.ps1 index 10921e9b..ed128720 100644 --- a/scripts/Windows/generate-environment-file.ps1 +++ b/scripts/Windows/generate-environment-file.ps1 @@ -49,9 +49,9 @@ if (Test-Path '.env') Read-Host "Press Enter to continue or Ctrl+C to abort" } -$EVIBES_PROJECT_NAME = Prompt-Default 'EVIBES_PROJECT_NAME' 'eVibes' -$EVIBES_STOREFRONT_DOMAIN = Prompt-Default 'EVIBES_STOREFRONT_DOMAIN' 'evibes.com' -$EVIBES_BASE_DOMAIN = Prompt-Default 'EVIBES_BASE_DOMAIN' 'evibes.com' +$SCHON_PROJECT_NAME = Prompt-Default 'SCHON_PROJECT_NAME' 'Schon' +$SCHON_STOREFRONT_DOMAIN = Prompt-Default 'SCHON_STOREFRONT_DOMAIN' 'schon.fureunoir.com' +$SCHON_BASE_DOMAIN = Prompt-Default 'SCHON_BASE_DOMAIN' 'schon.fureunoir.com' $SENTRY_DSN = Prompt-Default 'SENTRY_DSN' '' $DEBUG = Prompt-Default 'DEBUG' '1' $TIME_ZONE = Prompt-Default 'TIME_ZONE' 'Europe/London' @@ -59,12 +59,12 @@ $TIME_ZONE = Prompt-Default 'TIME_ZONE' 'Europe/London' $SECRET_KEY = Prompt-AutoGen 'SECRET_KEY' 32 $JWT_SIGNING_KEY = Prompt-AutoGen 'JWT_SIGNING_KEY' 64 -$ALLOWED_HOSTS = Prompt-Default 'ALLOWED_HOSTS' 'evibes.com api.evibes.com' -$CSRF_TRUSTED_ORIGINS = Prompt-Default 'CSRF_TRUSTED_ORIGINS' 'https://evibes.com https://api.evibes.com https://www.evibes.com' +$ALLOWED_HOSTS = Prompt-Default 'ALLOWED_HOSTS' 'schon.fureunoir.com api.schon.fureunoir.com' +$CSRF_TRUSTED_ORIGINS = Prompt-Default 'CSRF_TRUSTED_ORIGINS' 'https://schon.fureunoir.com https://api.schon.fureunoir.com https://www.schon.fureunoir.com' $CORS_ALLOWED_ORIGINS = Prompt-Default 'CORS_ALLOWED_ORIGINS' $CSRF_TRUSTED_ORIGINS -$POSTGRES_DB = Prompt-Default 'POSTGRES_DB' 'evibes' -$POSTGRES_USER = Prompt-Default 'POSTGRES_USER' 'evibes_user' +$POSTGRES_DB = Prompt-Default 'POSTGRES_DB' 'schon' +$POSTGRES_USER = Prompt-Default 'POSTGRES_USER' 'schon_user' $POSTGRES_PASSWORD = Prompt-AutoGen 'POSTGRES_PASSWORD' 16 $DBBACKUP_TYPE = Prompt-Default 'DBBACKUP_TYPE' 'Your backup connection type' @@ -76,19 +76,19 @@ $ELASTIC_PASSWORD = Prompt-AutoGen 'ELASTIC_PASSWORD' 16 $REDIS_PASSWORD = Prompt-AutoGen 'REDIS_PASSWORD' 16 -$PROMETHEUS_USER = Prompt-Default 'PROMETHEUS_USER' 'evibes' +$PROMETHEUS_USER = Prompt-Default 'PROMETHEUS_USER' 'schon' $PROMETHEUS_PASSWORD = Prompt-AutoGen 'PROMETHEUS_PASSWORD' 16 $EMAIL_BACKEND = Prompt-Default 'EMAIL_BACKEND' 'django.core.mail.backends.smtp.EmailBackend' -$EMAIL_HOST = Prompt-Default 'EMAIL_HOST' 'smtp.whatever.evibes.com' +$EMAIL_HOST = Prompt-Default 'EMAIL_HOST' 'smtp.whatever.schon.fureunoir.com' $EMAIL_PORT = Prompt-Default 'EMAIL_PORT' '465' $EMAIL_USE_TLS = Prompt-Default 'EMAIL_USE_TLS' '0' $EMAIL_USE_SSL = Prompt-Default 'EMAIL_USE_SSL' '1' -$EMAIL_HOST_USER = Prompt-Default 'EMAIL_HOST_USER' 'your-email-user@whatever.evibes.com' +$EMAIL_HOST_USER = Prompt-Default 'EMAIL_HOST_USER' 'your-email-user@whatever.schon.fureunoir.com' $EMAIL_FROM = Prompt-Default 'EMAIL_FROM' $EMAIL_HOST_USER $EMAIL_HOST_PASSWORD = Prompt-Default 'EMAIL_HOST_PASSWORD' 'SUPERSECRETEMAILHOSTPASSWORD' -$COMPANY_NAME = Prompt-Default 'COMPANY_NAME' 'eVibes, Inc.' +$COMPANY_NAME = Prompt-Default 'COMPANY_NAME' 'Schon, Inc.' $COMPANY_PHONE_NUMBER = Prompt-Default 'COMPANY_PHONE_NUMBER' '+888888888888' $COMPANY_ADDRESS = Prompt-Default 'COMPANY_ADDRESS' 'The place that does not exist' @@ -97,9 +97,9 @@ $ABSTRACT_API_KEY = Prompt-Default 'ABSTRACT_API_KEY' 'Haha, really? x2 $DEEPL_AUTH_KEY = Prompt-Default 'DEEPL_AUTH_KEY' 'Haha, really? x3' $lines = @( - "EVIBES_PROJECT_NAME=""$EVIBES_PROJECT_NAME""" - "EVIBES_STOREFRONT_DOMAIN=""$EVIBES_STOREFRONT_DOMAIN""" - "EVIBES_BASE_DOMAIN=""$EVIBES_BASE_DOMAIN""" + "SCHON_PROJECT_NAME=""$SCHON_PROJECT_NAME""" + "SCHON_STOREFRONT_DOMAIN=""$SCHON_STOREFRONT_DOMAIN""" + "SCHON_BASE_DOMAIN=""$SCHON_BASE_DOMAIN""" "SENTRY_DSN=""$SENTRY_DSN""" "DEBUG=$DEBUG" "" diff --git a/scripts/Windows/install.ps1 b/scripts/Windows/install.ps1 index fae13ba5..12a59948 100644 --- a/scripts/Windows/install.ps1 +++ b/scripts/Windows/install.ps1 @@ -24,21 +24,23 @@ if (-not (Test-SystemRequirements -MinCpu 4 -MinRamGB 6 -MinDiskGB 20)) # Pull Docker images Write-Step "Pulling images..." -docker compose pull +$output = docker compose pull --quiet 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Failed to pull Docker images" + Write-Host $output exit $LASTEXITCODE } Write-Success "Images pulled successfully" # Build Docker images Write-Step "Building images..." -docker compose build +$output = docker compose build 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Failed to build Docker images" + Write-Host $output exit $LASTEXITCODE } Write-Success "Images built successfully" Write-Result "" -Write-Result "You can now use run.ps1 script or run: lessy.py run" +Write-Result "You can now use run.ps1 script or run: make run" diff --git a/scripts/Windows/make-messages.ps1 b/scripts/Windows/make-messages.ps1 index 4249ad42..f3ff2026 100644 --- a/scripts/Windows/make-messages.ps1 +++ b/scripts/Windows/make-messages.ps1 @@ -53,4 +53,4 @@ if ($LASTEXITCODE -ne 0) { Write-Success "Translated successfully!" Write-Result "" -Write-Result "You can now use compile-messages.ps1 script or run: lessy.py compile-messages" +Write-Result "You can now use compile-messages.ps1 script or run: make compile-messages" diff --git a/scripts/Windows/make-migrations.ps1 b/scripts/Windows/make-migrations.ps1 new file mode 100644 index 00000000..ff6aa2ab --- /dev/null +++ b/scripts/Windows/make-migrations.ps1 @@ -0,0 +1,36 @@ +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +# Load shared utilities +$utilsPath = Join-Path $PSScriptRoot '..\lib\utils.ps1' +. $utilsPath + +$starterPath = Join-Path $PSScriptRoot 'starter.ps1' +. $starterPath +if ($LASTEXITCODE -ne 0) { + exit $LASTEXITCODE +} + +$useDocker = Test-Path '.env' +$useNative = Test-Path '.venv' + +if (-not $useDocker -and -not $useNative) { + Write-Warning-Custom "Neither .env (Docker) nor .venv (native) found. Please set up your environment first." + exit 1 +} + +Write-Step "Generating migration files..." + +if ($useDocker) { + docker compose exec app uv run manage.py makemigrations +} elseif ($useNative) { + & .\.venv\Scripts\python.exe manage.py makemigrations +} + +if ($LASTEXITCODE -ne 0) { + Write-Error-Custom "Failed to generate migration files" + exit $LASTEXITCODE +} +Write-Success "Migration files created successfully!" + +Write-Result "You can now use migrate.ps1 script or run: make migrate" diff --git a/scripts/Windows/migrate.ps1 b/scripts/Windows/migrate.ps1 new file mode 100644 index 00000000..eb84e3a5 --- /dev/null +++ b/scripts/Windows/migrate.ps1 @@ -0,0 +1,36 @@ +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +# Load shared utilities +$utilsPath = Join-Path $PSScriptRoot '..\lib\utils.ps1' +. $utilsPath + +$starterPath = Join-Path $PSScriptRoot 'starter.ps1' +. $starterPath +if ($LASTEXITCODE -ne 0) { + exit $LASTEXITCODE +} + +$useDocker = Test-Path '.env' +$useNative = Test-Path '.venv' + +if (-not $useDocker -and -not $useNative) { + Write-Warning-Custom "Neither .env (Docker) nor .venv (native) found. Please set up your environment first." + exit 1 +} + +Write-Step "Applying migration files..." + +if ($useDocker) { + docker compose exec app uv run manage.py migrate +} elseif ($useNative) { + & .\.venv\Scripts\python.exe manage.py migrate +} + +if ($LASTEXITCODE -ne 0) { + Write-Error-Custom "Failed to apply migration files" + exit $LASTEXITCODE +} +Write-Success "Migration files applied successfully!" + +Write-Result "Database is now up to date" diff --git a/scripts/Windows/restart.ps1 b/scripts/Windows/restart.ps1 index 420a6d44..b16493f7 100644 --- a/scripts/Windows/restart.ps1 +++ b/scripts/Windows/restart.ps1 @@ -12,18 +12,20 @@ if ($LASTEXITCODE -ne 0) { # Shutdown services Write-Step "Shutting down..." -docker compose down +$output = docker compose down 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Failed to shut down services" + Write-Host $output exit $LASTEXITCODE } Write-Success "Services were shut down successfully!" # Rebuild and start services Write-Step "Spinning services up with rebuild..." -docker compose up -d --build --wait +$output = docker compose up -d --build --wait 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Failed to start services" + Write-Host $output exit $LASTEXITCODE } Write-Success "Services are up and healthy!" @@ -31,38 +33,43 @@ Write-Success "Services are up and healthy!" # Run pre-run tasks Write-Step "Completing pre-run tasks..." -Write-Info " → Running migrations..." -docker compose exec app uv run manage.py migrate --no-input +Write-Info " Running migrations..." +$output = docker compose exec -T app uv run manage.py migrate --no-input --verbosity 0 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Migrations failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Initializing..." -docker compose exec app uv run manage.py initialize +Write-Info " Initializing..." +$output = docker compose exec -T app uv run manage.py initialize 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Initialization failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Setting default caches..." -docker compose exec app uv run manage.py set_default_caches +Write-Info " Setting default caches..." +$output = docker compose exec -T app uv run manage.py set_default_caches 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Cache setup failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Rebuilding search index..." -docker compose exec app uv run manage.py search_index --rebuild -f +Write-Info " Rebuilding search index..." +$output = docker compose exec -T app uv run manage.py search_index --rebuild -f 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Search index rebuild failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Collecting static files..." -docker compose exec app uv run manage.py collectstatic --clear --no-input +Write-Info " Collecting static files..." +$output = docker compose exec -T app uv run manage.py collectstatic --clear --no-input --verbosity 0 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Static files collection failed" + Write-Host $output exit $LASTEXITCODE } @@ -70,11 +77,11 @@ Write-Success "Pre-run tasks completed successfully!" # Cleanup Write-Step "Cleaning up unused Docker data..." -docker system prune -f +docker system prune -f *>$null if ($LASTEXITCODE -ne 0) { Write-Warning-Custom "Docker cleanup had issues, but continuing..." } Write-Success "Unused Docker data cleaned successfully!" Write-Result "" -Write-Result "All done! eVibes is up and running!" +Write-Result "All done! Schon is up and running!" diff --git a/scripts/Windows/run.ps1 b/scripts/Windows/run.ps1 index b5d310a0..53e08b91 100644 --- a/scripts/Windows/run.ps1 +++ b/scripts/Windows/run.ps1 @@ -11,9 +11,9 @@ if ($LASTEXITCODE -ne 0) { } # Verify Docker images -Write-Step "Verifying all images are present…" +Write-Step "Verifying all images are present..." -$config = docker compose config --format json | ConvertFrom-Json +$config = docker compose config --format json 2>$null | ConvertFrom-Json foreach ($prop in $config.services.PSObject.Properties) { @@ -32,14 +32,15 @@ foreach ($prop in $config.services.PSObject.Properties) exit 1 } - Write-Info " • Found image: $image" + Write-Info " Found image: $image" } # Start services Write-Step "Spinning services up..." -docker compose up --no-build --detach --wait +$output = docker compose up --no-build --detach --wait 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Failed to start services" + Write-Host $output exit $LASTEXITCODE } Write-Success "Services are up and healthy!" @@ -47,38 +48,43 @@ Write-Success "Services are up and healthy!" # Run pre-run tasks Write-Step "Completing pre-run tasks..." -Write-Info " → Running migrations..." -docker compose exec app uv run manage.py migrate --no-input +Write-Info " Running migrations..." +$output = docker compose exec -T app uv run manage.py migrate --no-input --verbosity 0 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Migrations failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Initializing..." -docker compose exec app uv run manage.py initialize +Write-Info " Initializing..." +$output = docker compose exec -T app uv run manage.py initialize 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Initialization failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Setting default caches..." -docker compose exec app uv run manage.py set_default_caches +Write-Info " Setting default caches..." +$output = docker compose exec -T app uv run manage.py set_default_caches 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Cache setup failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Rebuilding search index..." -docker compose exec app uv run manage.py search_index --rebuild -f +Write-Info " Rebuilding search index..." +$output = docker compose exec -T app uv run manage.py search_index --rebuild -f 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Search index rebuild failed" + Write-Host $output exit $LASTEXITCODE } -Write-Info " → Collecting static files..." -docker compose exec app uv run manage.py collectstatic --clear --no-input +Write-Info " Collecting static files..." +$output = docker compose exec -T app uv run manage.py collectstatic --clear --no-input --verbosity 0 2>&1 if ($LASTEXITCODE -ne 0) { Write-Error-Custom "Static files collection failed" + Write-Host $output exit $LASTEXITCODE } @@ -86,11 +92,11 @@ Write-Success "Pre-run tasks completed successfully!" # Cleanup Write-Step "Cleaning unused Docker data..." -docker system prune -f +docker system prune -f *>$null if ($LASTEXITCODE -ne 0) { Write-Warning-Custom "Docker cleanup had issues, but continuing..." } Write-Success "Unused Docker data cleaned successfully!" Write-Result "" -Write-Result "All done! eVibes is up and running!" +Write-Result "All done! Schon is up and running!" diff --git a/scripts/Windows/starter.ps1 b/scripts/Windows/starter.ps1 index 01a517ba..3712c7a5 100644 --- a/scripts/Windows/starter.ps1 +++ b/scripts/Windows/starter.ps1 @@ -5,13 +5,13 @@ $ErrorActionPreference = 'Stop' $utilsPath = Join-Path (Split-Path -Parent $MyInvocation.MyCommand.Definition) '..\lib\utils.ps1' . $utilsPath -if (-not (Test-Path -Path ".\evibes" -PathType Container)) +if (-not (Test-Path -Path ".\schon" -PathType Container)) { - Write-Error-Custom "❌ Please run this script from the project's root (where the 'evibes' directory lives)." + Write-Error-Custom "❌ Please run this script from the project's root (where the 'schon' directory lives)." exit 1 } -$artPath = Join-Path (Split-Path -Parent $MyInvocation.MyCommand.Definition) '..\ASCII_ART_EVIBES' +$artPath = Join-Path (Split-Path -Parent $MyInvocation.MyCommand.Definition) '..\ASCII_ART_SCHON' if (-not (Test-Path $artPath)) { @@ -19,17 +19,18 @@ if (-not (Test-Path $artPath)) exit 1 } +clear + if (Test-Interactive) { - $purple = "`e[38;2;121;101;209m" + $royal_grey = "`e[38;2;127;144;158m" $reset = "`e[0m" - Get-Content -Raw -Path $artPath | ForEach-Object { Write-Host "$purple$_$reset" } - Write-Host "`n by WISELESS TEAM`n" -ForegroundColor Gray + Get-Content -Raw -Path $artPath | ForEach-Object { Write-Host "$royal_grey$_$reset" } } else { # In non-interactive mode, just show simple banner - Write-Output "eVibes by WISELESS TEAM" + Write-Output "Schon by WISELESS TEAM" } exit 0 \ No newline at end of file diff --git a/scripts/Windows/test.ps1 b/scripts/Windows/test.ps1 index 19f96791..e8897524 100644 --- a/scripts/Windows/test.ps1 +++ b/scripts/Windows/test.ps1 @@ -15,7 +15,7 @@ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } -$omitPattern = 'storefront/*,monitoring/*,Dockerfiles/*,*/__init__.py,*/tests/*,*/migrations/*,manage.py,evibes/*' +$omitPattern = 'storefront/*,monitoring/*,Dockerfiles/*,*/__init__.py,*/tests/*,*/migrations/*,manage.py,schon/*' if (-not $PSBoundParameters.ContainsKey('Report') -or [string]::IsNullOrWhiteSpace($Report)) { Write-Step "Running tests with coverage..." diff --git a/scripts/Windows/uninstall.ps1 b/scripts/Windows/uninstall.ps1 index 645060a1..db1658e6 100644 --- a/scripts/Windows/uninstall.ps1 +++ b/scripts/Windows/uninstall.ps1 @@ -21,11 +21,11 @@ Write-Success "Services were shut down successfully!" # Remove volumes Write-Step "Removing volumes..." -docker volume remove -f evibes_prometheus-data +docker volume remove -f schon_prometheus-data if ($LASTEXITCODE -ne 0) { Write-Warning-Custom "Failed to remove prometheus-data volume" } -docker volume remove -f evibes_es-data +docker volume remove -f schon_es-data if ($LASTEXITCODE -ne 0) { Write-Warning-Custom "Failed to remove es-data volume" } diff --git a/scripts/lib/utils.ps1 b/scripts/lib/utils.ps1 index b0923bc0..bc332c52 100644 --- a/scripts/lib/utils.ps1 +++ b/scripts/lib/utils.ps1 @@ -293,6 +293,8 @@ function Confirm-Action } # Ensure spinner cleanup on exit -$MyInvocation.MyCommand.ScriptBlock.Module.OnRemove = { - Stop-Spinner +if ($MyInvocation.MyCommand.ScriptBlock.Module) { + $MyInvocation.MyCommand.ScriptBlock.Module.OnRemove = { + Stop-Spinner + } } diff --git a/storefront/public/robots.txt b/storefront/public/robots.txt index ddd16e59..b823f243 100644 --- a/storefront/public/robots.txt +++ b/storefront/public/robots.txt @@ -7,5 +7,5 @@ Disallow: /*/auth/sign-up/ Allow: / -Sitemap: https://evibes.com/sitemap.xml -Host: evibes.com \ No newline at end of file +Sitemap: https://schon.fureunoir.com/sitemap.xml +Host: schon.fureunoir.com \ No newline at end of file diff --git a/systemd/schon-beat.service b/systemd/schon-beat.service new file mode 100644 index 00000000..09ff705f --- /dev/null +++ b/systemd/schon-beat.service @@ -0,0 +1,23 @@ +[Unit] +Description=Schon Celery Beat Scheduler +Documentation=https://git.wiseless.xyz/fureunoir/schon +After=network.target postgresql.service redis.service schon-worker.service +Wants=postgresql.service redis.service schon-worker.service + +[Service] +Type=simple +User=schon +Group=schon +WorkingDirectory=/opt/schon +EnvironmentFile=/opt/schon/.env +ExecStart=/opt/schon/.venv/bin/celery \ + -A schon beat \ + -l info \ + --scheduler django_celery_beat.schedulers:DatabaseScheduler +Restart=always +RestartSec=5 +StandardOutput=journal +StandardError=journal + +[Install] +WantedBy=multi-user.target diff --git a/systemd/schon-stock-updater.service b/systemd/schon-stock-updater.service new file mode 100644 index 00000000..d72bb8f4 --- /dev/null +++ b/systemd/schon-stock-updater.service @@ -0,0 +1,28 @@ +[Unit] +Description=Schon Celery Worker (Stock Updater Queue) +Documentation=https://git.wiseless.xyz/fureunoir/schon +After=network.target postgresql.service redis.service elasticsearch.service +Wants=postgresql.service redis.service + +[Service] +Type=simple +User=schon +Group=schon +WorkingDirectory=/opt/schon +EnvironmentFile=/opt/schon/.env +ExecStart=/opt/schon/.venv/bin/celery \ + -A schon worker \ + --pool=prefork \ + --concurrency=1 \ + --queues=stock_updater \ + --prefetch-multiplier=1 \ + --max-tasks-per-child=5 \ + --max-memory-per-child=1024000 \ + -E +Restart=always +RestartSec=5 +StandardOutput=journal +StandardError=journal + +[Install] +WantedBy=multi-user.target diff --git a/systemd/schon-web.service b/systemd/schon-web.service new file mode 100644 index 00000000..ca756e03 --- /dev/null +++ b/systemd/schon-web.service @@ -0,0 +1,28 @@ +[Unit] +Description=Schon Web Server (Uvicorn) +Documentation=https://git.wiseless.xyz/fureunoir/schon +After=network.target postgresql.service redis.service elasticsearch.service +Wants=postgresql.service redis.service + +[Service] +Type=simple +User=schon +Group=schon +WorkingDirectory=/opt/schon +EnvironmentFile=/opt/schon/.env +ExecStart=/opt/schon/.venv/bin/uvicorn \ + --host 127.0.0.1 \ + --port 8000 \ + --workers 4 \ + --proxy-headers \ + --forwarded-allow-ips='*' \ + --ws-ping-interval 20 \ + --ws-ping-timeout 20 \ + schon.asgi:application +Restart=always +RestartSec=5 +StandardOutput=journal +StandardError=journal + +[Install] +WantedBy=multi-user.target diff --git a/systemd/schon-worker.service b/systemd/schon-worker.service new file mode 100644 index 00000000..d1dfe975 --- /dev/null +++ b/systemd/schon-worker.service @@ -0,0 +1,28 @@ +[Unit] +Description=Schon Celery Worker (Default Queue) +Documentation=https://git.wiseless.xyz/fureunoir/schon +After=network.target postgresql.service redis.service elasticsearch.service +Wants=postgresql.service redis.service + +[Service] +Type=simple +User=schon +Group=schon +WorkingDirectory=/opt/schon +EnvironmentFile=/opt/schon/.env +ExecStart=/opt/schon/.venv/bin/celery \ + -A schon worker \ + --pool=prefork \ + --concurrency=8 \ + --queues=default \ + --prefetch-multiplier=2 \ + --max-tasks-per-child=100 \ + --max-memory-per-child=512000 \ + -E +Restart=always +RestartSec=5 +StandardOutput=journal +StandardError=journal + +[Install] +WantedBy=multi-user.target diff --git a/uv.lock b/uv.lock index 9b7b9bf9..d1f02e1d 100644 --- a/uv.lock +++ b/uv.lock @@ -1,6 +1,11 @@ version = 1 revision = 3 requires-python = ">=3.12, <=3.13" +resolution-markers = [ + "sys_platform == 'win32'", + "sys_platform == 'emscripten'", + "sys_platform != 'emscripten' and sys_platform != 'win32'", +] [[package]] name = "aiofiles" @@ -13,7 +18,7 @@ wheels = [ [[package]] name = "aiogram" -version = "3.23.0" +version = "3.24.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiofiles" }, @@ -23,9 +28,9 @@ dependencies = [ { name = "pydantic" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d9/9f/72d11c2d53be81afed597c49759cdf05a2eff6512b52d3d897a891829024/aiogram-3.23.0.tar.gz", hash = "sha256:bb48c0bc1e567b6e9e9d7cfd448f2b3d142d2a405c58ab217596b62f64968f1a", size = 1520457, upload-time = "2025-12-06T23:31:55.121Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fd/2f/04f47e81def8f2168679b1551e665e7ee02cf063e7bddace9fb5d1ce2f35/aiogram-3.24.0.tar.gz", hash = "sha256:ec547ede5bfa8a7a4f5fb02c75391333fc43b6f3de6a6d3f00a32e27628df5f6", size = 1713321, upload-time = "2026-01-02T00:56:55.3Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/60/54/41cb6b3f3b904097aad4d4229063c1536c13d2343a2d193e3ecd0d9983c7/aiogram-3.23.0-py3-none-any.whl", hash = "sha256:62de64edf7f3e9c8ec86351e0ace6a53a6e073cc81cfd762cb5a0401565d80ad", size = 698365, upload-time = "2025-12-06T23:31:52.971Z" }, + { url = "https://files.pythonhosted.org/packages/22/a5/7ba5f75b56f87a956b9e5a3e823bcbb5b55fc968914a16f3c7aa659cfc89/aiogram-3.24.0-py3-none-any.whl", hash = "sha256:eb3cc05b0ec53c7e24d7eada5c069aee2f431332e2e7bc2c8adf30d13b02f715", size = 706866, upload-time = "2026-01-02T00:56:53.115Z" }, ] [[package]] @@ -137,15 +142,15 @@ wheels = [ [[package]] name = "anyio" -version = "4.12.0" +version = "4.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/16/ce/8a777047513153587e5434fd752e89334ac33e379aa3497db860eeb60377/anyio-4.12.0.tar.gz", hash = "sha256:73c693b567b0c55130c104d0b43a9baf3aa6a31fc6110116509f27bf75e21ec0", size = 228266, upload-time = "2025-11-28T23:37:38.911Z" } +sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7f/9c/36c5c37947ebfb8c7f22e0eb6e4d188ee2d53aa3880f3f2744fb894f0cb1/anyio-4.12.0-py3-none-any.whl", hash = "sha256:dad2376a628f98eeca4881fc56cd06affd18f659b17a747d3ff0307ced94b1bb", size = 113362, upload-time = "2025-11-28T23:36:57.897Z" }, + { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" }, ] [[package]] @@ -223,11 +228,11 @@ wheels = [ [[package]] name = "async-lru" -version = "2.0.5" +version = "2.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b2/4d/71ec4d3939dc755264f680f6c2b4906423a304c3d18e96853f0a595dfe97/async_lru-2.0.5.tar.gz", hash = "sha256:481d52ccdd27275f42c43a928b4a50c3bfb2d67af4e78b170e3e0bb39c66e5bb", size = 10380, upload-time = "2025-03-16T17:25:36.919Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/c3/bbf34f15ea88dfb649ab2c40f9d75081784a50573a9ea431563cab64adb8/async_lru-2.1.0.tar.gz", hash = "sha256:9eeb2fecd3fe42cc8a787fc32ead53a3a7158cc43d039c3c55ab3e4e5b2a80ed", size = 12041, upload-time = "2026-01-17T22:52:18.931Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/03/49/d10027df9fce941cb8184e78a02857af36360d33e1721df81c5ed2179a1a/async_lru-2.0.5-py3-none-any.whl", hash = "sha256:ab95404d8d2605310d345932697371a5f40def0487c03d6d0ad9138de52c9943", size = 6069, upload-time = "2025-03-16T17:25:35.422Z" }, + { url = "https://files.pythonhosted.org/packages/2e/e9/eb6a5db5ac505d5d45715388e92bced7a5bb556facc4d0865d192823f2d2/async_lru-2.1.0-py3-none-any.whl", hash = "sha256:fa12dcf99a42ac1280bc16c634bbaf06883809790f6304d85cdab3f666f33a7e", size = 6933, upload-time = "2026-01-17T22:52:17.389Z" }, ] [[package]] @@ -351,7 +356,7 @@ css = [ [[package]] name = "celery" -version = "5.6.0" +version = "5.6.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "billiard" }, @@ -359,27 +364,16 @@ dependencies = [ { name = "click-didyoumean" }, { name = "click-plugins" }, { name = "click-repl" }, - { name = "exceptiongroup" }, { name = "kombu" }, { name = "python-dateutil" }, { name = "tzlocal" }, { name = "vine" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ad/5f/b681ae3c89290d2ea6562ea96b40f5af6f6fc5f7743e2cd1a19e47721548/celery-5.6.0.tar.gz", hash = "sha256:641405206042d52ae460e4e9751a2e31b06cf80ab836fcf92e0b9311d7ea8113", size = 1712522, upload-time = "2025-11-30T17:39:46.282Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8f/9d/3d13596519cfa7207a6f9834f4b082554845eb3cd2684b5f8535d50c7c44/celery-5.6.2.tar.gz", hash = "sha256:4a8921c3fcf2ad76317d3b29020772103581ed2454c4c042cc55dcc43585009b", size = 1718802, upload-time = "2026-01-04T12:35:58.012Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/01/4e/53a125038d6a814491a0ae3457435c13cf8821eb602292cf9db37ce35f62/celery-5.6.0-py3-none-any.whl", hash = "sha256:33cf01477b175017fc8f22c5ee8a65157591043ba8ca78a443fe703aa910f581", size = 444561, upload-time = "2025-11-30T17:39:44.314Z" }, + { url = "https://files.pythonhosted.org/packages/dd/bd/9ecd619e456ae4ba73b6583cc313f26152afae13e9a82ac4fe7f8856bfd1/celery-5.6.2-py3-none-any.whl", hash = "sha256:3ffafacbe056951b629c7abcf9064c4a2366de0bdfc9fdba421b97ebb68619a5", size = 445502, upload-time = "2026-01-04T12:35:55.894Z" }, ] -[[package]] -name = "celery-prometheus-exporter" -version = "1.7.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "celery" }, - { name = "prometheus-client" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c5/3f/c7ae53ad33c736c48067730d184f27d58cbd0e60031f321d5787534751d7/celery-prometheus-exporter-1.7.0.tar.gz", hash = "sha256:8fc2d5909921c44f01c8c1b7d956d92e6966f2e14eec196bf60735e39a0e0991", size = 11369, upload-time = "2019-05-04T16:24:20.06Z" } - [[package]] name = "celery-types" version = "0.24.0" @@ -586,50 +580,50 @@ wheels = [ [[package]] name = "coverage" -version = "7.13.1" +version = "7.13.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/23/f9/e92df5e07f3fc8d4c7f9a0f146ef75446bf870351cd37b788cf5897f8079/coverage-7.13.1.tar.gz", hash = "sha256:b7593fe7eb5feaa3fbb461ac79aac9f9fc0387a5ca8080b0c6fe2ca27b091afd", size = 825862, upload-time = "2025-12-28T15:42:56.969Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ad/49/349848445b0e53660e258acbcc9b0d014895b6739237920886672240f84b/coverage-7.13.2.tar.gz", hash = "sha256:044c6951ec37146b72a50cc81ef02217d27d4c3640efd2640311393cbbf143d3", size = 826523, upload-time = "2026-01-25T13:00:04.889Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/8a/87af46cccdfa78f53db747b09f5f9a21d5fc38d796834adac09b30a8ce74/coverage-7.13.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6f34591000f06e62085b1865c9bc5f7858df748834662a51edadfd2c3bfe0dd3", size = 218927, upload-time = "2025-12-28T15:40:52.814Z" }, - { url = "https://files.pythonhosted.org/packages/82/a8/6e22fdc67242a4a5a153f9438d05944553121c8f4ba70cb072af4c41362e/coverage-7.13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b67e47c5595b9224599016e333f5ec25392597a89d5744658f837d204e16c63e", size = 219288, upload-time = "2025-12-28T15:40:54.262Z" }, - { url = "https://files.pythonhosted.org/packages/d0/0a/853a76e03b0f7c4375e2ca025df45c918beb367f3e20a0a8e91967f6e96c/coverage-7.13.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3e7b8bd70c48ffb28461ebe092c2345536fb18bbbf19d287c8913699735f505c", size = 250786, upload-time = "2025-12-28T15:40:56.059Z" }, - { url = "https://files.pythonhosted.org/packages/ea/b4/694159c15c52b9f7ec7adf49d50e5f8ee71d3e9ef38adb4445d13dd56c20/coverage-7.13.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:c223d078112e90dc0e5c4e35b98b9584164bea9fbbd221c0b21c5241f6d51b62", size = 253543, upload-time = "2025-12-28T15:40:57.585Z" }, - { url = "https://files.pythonhosted.org/packages/96/b2/7f1f0437a5c855f87e17cf5d0dc35920b6440ff2b58b1ba9788c059c26c8/coverage-7.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:794f7c05af0763b1bbd1b9e6eff0e52ad068be3b12cd96c87de037b01390c968", size = 254635, upload-time = "2025-12-28T15:40:59.443Z" }, - { url = "https://files.pythonhosted.org/packages/e9/d1/73c3fdb8d7d3bddd9473c9c6a2e0682f09fc3dfbcb9c3f36412a7368bcab/coverage-7.13.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0642eae483cc8c2902e4af7298bf886d605e80f26382124cddc3967c2a3df09e", size = 251202, upload-time = "2025-12-28T15:41:01.328Z" }, - { url = "https://files.pythonhosted.org/packages/66/3c/f0edf75dcc152f145d5598329e864bbbe04ab78660fe3e8e395f9fff010f/coverage-7.13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9f5e772ed5fef25b3de9f2008fe67b92d46831bd2bc5bdc5dd6bfd06b83b316f", size = 252566, upload-time = "2025-12-28T15:41:03.319Z" }, - { url = "https://files.pythonhosted.org/packages/17/b3/e64206d3c5f7dcbceafd14941345a754d3dbc78a823a6ed526e23b9cdaab/coverage-7.13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:45980ea19277dc0a579e432aef6a504fe098ef3a9032ead15e446eb0f1191aee", size = 250711, upload-time = "2025-12-28T15:41:06.411Z" }, - { url = "https://files.pythonhosted.org/packages/dc/ad/28a3eb970a8ef5b479ee7f0c484a19c34e277479a5b70269dc652b730733/coverage-7.13.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e4f18eca6028ffa62adbd185a8f1e1dd242f2e68164dba5c2b74a5204850b4cf", size = 250278, upload-time = "2025-12-28T15:41:08.285Z" }, - { url = "https://files.pythonhosted.org/packages/54/e3/c8f0f1a93133e3e1291ca76cbb63565bd4b5c5df63b141f539d747fff348/coverage-7.13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8dca5590fec7a89ed6826fce625595279e586ead52e9e958d3237821fbc750c", size = 252154, upload-time = "2025-12-28T15:41:09.969Z" }, - { url = "https://files.pythonhosted.org/packages/d0/bf/9939c5d6859c380e405b19e736321f1c7d402728792f4c752ad1adcce005/coverage-7.13.1-cp312-cp312-win32.whl", hash = "sha256:ff86d4e85188bba72cfb876df3e11fa243439882c55957184af44a35bd5880b7", size = 221487, upload-time = "2025-12-28T15:41:11.468Z" }, - { url = "https://files.pythonhosted.org/packages/fa/dc/7282856a407c621c2aad74021680a01b23010bb8ebf427cf5eacda2e876f/coverage-7.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:16cc1da46c04fb0fb128b4dc430b78fa2aba8a6c0c9f8eb391fd5103409a6ac6", size = 222299, upload-time = "2025-12-28T15:41:13.386Z" }, - { url = "https://files.pythonhosted.org/packages/10/79/176a11203412c350b3e9578620013af35bcdb79b651eb976f4a4b32044fa/coverage-7.13.1-cp312-cp312-win_arm64.whl", hash = "sha256:8d9bc218650022a768f3775dd7fdac1886437325d8d295d923ebcfef4892ad5c", size = 220941, upload-time = "2025-12-28T15:41:14.975Z" }, - { url = "https://files.pythonhosted.org/packages/a3/a4/e98e689347a1ff1a7f67932ab535cef82eb5e78f32a9e4132e114bbb3a0a/coverage-7.13.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cb237bfd0ef4d5eb6a19e29f9e528ac67ac3be932ea6b44fb6cc09b9f3ecff78", size = 218951, upload-time = "2025-12-28T15:41:16.653Z" }, - { url = "https://files.pythonhosted.org/packages/32/33/7cbfe2bdc6e2f03d6b240d23dc45fdaf3fd270aaf2d640be77b7f16989ab/coverage-7.13.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1dcb645d7e34dcbcc96cd7c132b1fc55c39263ca62eb961c064eb3928997363b", size = 219325, upload-time = "2025-12-28T15:41:18.609Z" }, - { url = "https://files.pythonhosted.org/packages/59/f6/efdabdb4929487baeb7cb2a9f7dac457d9356f6ad1b255be283d58b16316/coverage-7.13.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3d42df8201e00384736f0df9be2ced39324c3907607d17d50d50116c989d84cd", size = 250309, upload-time = "2025-12-28T15:41:20.629Z" }, - { url = "https://files.pythonhosted.org/packages/12/da/91a52516e9d5aea87d32d1523f9cdcf7a35a3b298e6be05d6509ba3cfab2/coverage-7.13.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fa3edde1aa8807de1d05934982416cb3ec46d1d4d91e280bcce7cca01c507992", size = 252907, upload-time = "2025-12-28T15:41:22.257Z" }, - { url = "https://files.pythonhosted.org/packages/75/38/f1ea837e3dc1231e086db1638947e00d264e7e8c41aa8ecacf6e1e0c05f4/coverage-7.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9edd0e01a343766add6817bc448408858ba6b489039eaaa2018474e4001651a4", size = 254148, upload-time = "2025-12-28T15:41:23.87Z" }, - { url = "https://files.pythonhosted.org/packages/7f/43/f4f16b881aaa34954ba446318dea6b9ed5405dd725dd8daac2358eda869a/coverage-7.13.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:985b7836931d033570b94c94713c6dba5f9d3ff26045f72c3e5dbc5fe3361e5a", size = 250515, upload-time = "2025-12-28T15:41:25.437Z" }, - { url = "https://files.pythonhosted.org/packages/84/34/8cba7f00078bd468ea914134e0144263194ce849ec3baad187ffb6203d1c/coverage-7.13.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ffed1e4980889765c84a5d1a566159e363b71d6b6fbaf0bebc9d3c30bc016766", size = 252292, upload-time = "2025-12-28T15:41:28.459Z" }, - { url = "https://files.pythonhosted.org/packages/8c/a4/cffac66c7652d84ee4ac52d3ccb94c015687d3b513f9db04bfcac2ac800d/coverage-7.13.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8842af7f175078456b8b17f1b73a0d16a65dcbdc653ecefeb00a56b3c8c298c4", size = 250242, upload-time = "2025-12-28T15:41:30.02Z" }, - { url = "https://files.pythonhosted.org/packages/f4/78/9a64d462263dde416f3c0067efade7b52b52796f489b1037a95b0dc389c9/coverage-7.13.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:ccd7a6fca48ca9c131d9b0a2972a581e28b13416fc313fb98b6d24a03ce9a398", size = 250068, upload-time = "2025-12-28T15:41:32.007Z" }, - { url = "https://files.pythonhosted.org/packages/69/c8/a8994f5fece06db7c4a97c8fc1973684e178599b42e66280dded0524ef00/coverage-7.13.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0403f647055de2609be776965108447deb8e384fe4a553c119e3ff6bfbab4784", size = 251846, upload-time = "2025-12-28T15:41:33.946Z" }, - { url = "https://files.pythonhosted.org/packages/cc/f7/91fa73c4b80305c86598a2d4e54ba22df6bf7d0d97500944af7ef155d9f7/coverage-7.13.1-cp313-cp313-win32.whl", hash = "sha256:549d195116a1ba1e1ae2f5ca143f9777800f6636eab917d4f02b5310d6d73461", size = 221512, upload-time = "2025-12-28T15:41:35.519Z" }, - { url = "https://files.pythonhosted.org/packages/45/0b/0768b4231d5a044da8f75e097a8714ae1041246bb765d6b5563bab456735/coverage-7.13.1-cp313-cp313-win_amd64.whl", hash = "sha256:5899d28b5276f536fcf840b18b61a9fce23cc3aec1d114c44c07fe94ebeaa500", size = 222321, upload-time = "2025-12-28T15:41:37.371Z" }, - { url = "https://files.pythonhosted.org/packages/9b/b8/bdcb7253b7e85157282450262008f1366aa04663f3e3e4c30436f596c3e2/coverage-7.13.1-cp313-cp313-win_arm64.whl", hash = "sha256:868a2fae76dfb06e87291bcbd4dcbcc778a8500510b618d50496e520bd94d9b9", size = 220949, upload-time = "2025-12-28T15:41:39.553Z" }, - { url = "https://files.pythonhosted.org/packages/70/52/f2be52cc445ff75ea8397948c96c1b4ee14f7f9086ea62fc929c5ae7b717/coverage-7.13.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:67170979de0dacac3f3097d02b0ad188d8edcea44ccc44aaa0550af49150c7dc", size = 219643, upload-time = "2025-12-28T15:41:41.567Z" }, - { url = "https://files.pythonhosted.org/packages/47/79/c85e378eaa239e2edec0c5523f71542c7793fe3340954eafb0bc3904d32d/coverage-7.13.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f80e2bb21bfab56ed7405c2d79d34b5dc0bc96c2c1d2a067b643a09fb756c43a", size = 219997, upload-time = "2025-12-28T15:41:43.418Z" }, - { url = "https://files.pythonhosted.org/packages/fe/9b/b1ade8bfb653c0bbce2d6d6e90cc6c254cbb99b7248531cc76253cb4da6d/coverage-7.13.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f83351e0f7dcdb14d7326c3d8d8c4e915fa685cbfdc6281f9470d97a04e9dfe4", size = 261296, upload-time = "2025-12-28T15:41:45.207Z" }, - { url = "https://files.pythonhosted.org/packages/1f/af/ebf91e3e1a2473d523e87e87fd8581e0aa08741b96265730e2d79ce78d8d/coverage-7.13.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:bb3f6562e89bad0110afbe64e485aac2462efdce6232cdec7862a095dc3412f6", size = 263363, upload-time = "2025-12-28T15:41:47.163Z" }, - { url = "https://files.pythonhosted.org/packages/c4/8b/fb2423526d446596624ac7fde12ea4262e66f86f5120114c3cfd0bb2befa/coverage-7.13.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:77545b5dcda13b70f872c3b5974ac64c21d05e65b1590b441c8560115dc3a0d1", size = 265783, upload-time = "2025-12-28T15:41:49.03Z" }, - { url = "https://files.pythonhosted.org/packages/9b/26/ef2adb1e22674913b89f0fe7490ecadcef4a71fa96f5ced90c60ec358789/coverage-7.13.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a4d240d260a1aed814790bbe1f10a5ff31ce6c21bc78f0da4a1e8268d6c80dbd", size = 260508, upload-time = "2025-12-28T15:41:51.035Z" }, - { url = "https://files.pythonhosted.org/packages/ce/7d/f0f59b3404caf662e7b5346247883887687c074ce67ba453ea08c612b1d5/coverage-7.13.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d2287ac9360dec3837bfdad969963a5d073a09a85d898bd86bea82aa8876ef3c", size = 263357, upload-time = "2025-12-28T15:41:52.631Z" }, - { url = "https://files.pythonhosted.org/packages/1a/b1/29896492b0b1a047604d35d6fa804f12818fa30cdad660763a5f3159e158/coverage-7.13.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:0d2c11f3ea4db66b5cbded23b20185c35066892c67d80ec4be4bab257b9ad1e0", size = 260978, upload-time = "2025-12-28T15:41:54.589Z" }, - { url = "https://files.pythonhosted.org/packages/48/f2/971de1238a62e6f0a4128d37adadc8bb882ee96afbe03ff1570291754629/coverage-7.13.1-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:3fc6a169517ca0d7ca6846c3c5392ef2b9e38896f61d615cb75b9e7134d4ee1e", size = 259877, upload-time = "2025-12-28T15:41:56.263Z" }, - { url = "https://files.pythonhosted.org/packages/6a/fc/0474efcbb590ff8628830e9aaec5f1831594874360e3251f1fdec31d07a3/coverage-7.13.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d10a2ed46386e850bb3de503a54f9fe8192e5917fcbb143bfef653a9355e9a53", size = 262069, upload-time = "2025-12-28T15:41:58.093Z" }, - { url = "https://files.pythonhosted.org/packages/88/4f/3c159b7953db37a7b44c0eab8a95c37d1aa4257c47b4602c04022d5cb975/coverage-7.13.1-cp313-cp313t-win32.whl", hash = "sha256:75a6f4aa904301dab8022397a22c0039edc1f51e90b83dbd4464b8a38dc87842", size = 222184, upload-time = "2025-12-28T15:41:59.763Z" }, - { url = "https://files.pythonhosted.org/packages/58/a5/6b57d28f81417f9335774f20679d9d13b9a8fb90cd6160957aa3b54a2379/coverage-7.13.1-cp313-cp313t-win_amd64.whl", hash = "sha256:309ef5706e95e62578cda256b97f5e097916a2c26247c287bbe74794e7150df2", size = 223250, upload-time = "2025-12-28T15:42:01.52Z" }, - { url = "https://files.pythonhosted.org/packages/81/7c/160796f3b035acfbb58be80e02e484548595aa67e16a6345e7910ace0a38/coverage-7.13.1-cp313-cp313t-win_arm64.whl", hash = "sha256:92f980729e79b5d16d221038dbf2e8f9a9136afa072f9d5d6ed4cb984b126a09", size = 221521, upload-time = "2025-12-28T15:42:03.275Z" }, - { url = "https://files.pythonhosted.org/packages/cc/48/d9f421cb8da5afaa1a64570d9989e00fb7955e6acddc5a12979f7666ef60/coverage-7.13.1-py3-none-any.whl", hash = "sha256:2016745cb3ba554469d02819d78958b571792bb68e31302610e898f80dd3a573", size = 210722, upload-time = "2025-12-28T15:42:54.901Z" }, + { url = "https://files.pythonhosted.org/packages/46/39/e92a35f7800222d3f7b2cbb7bbc3b65672ae8d501cb31801b2d2bd7acdf1/coverage-7.13.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f106b2af193f965d0d3234f3f83fc35278c7fb935dfbde56ae2da3dd2c03b84d", size = 219142, upload-time = "2026-01-25T12:58:00.448Z" }, + { url = "https://files.pythonhosted.org/packages/45/7a/8bf9e9309c4c996e65c52a7c5a112707ecdd9fbaf49e10b5a705a402bbb4/coverage-7.13.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78f45d21dc4d5d6bd29323f0320089ef7eae16e4bef712dff79d184fa7330af3", size = 219503, upload-time = "2026-01-25T12:58:02.451Z" }, + { url = "https://files.pythonhosted.org/packages/87/93/17661e06b7b37580923f3f12406ac91d78aeed293fb6da0b69cc7957582f/coverage-7.13.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:fae91dfecd816444c74531a9c3d6ded17a504767e97aa674d44f638107265b99", size = 251006, upload-time = "2026-01-25T12:58:04.059Z" }, + { url = "https://files.pythonhosted.org/packages/12/f0/f9e59fb8c310171497f379e25db060abef9fa605e09d63157eebec102676/coverage-7.13.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:264657171406c114787b441484de620e03d8f7202f113d62fcd3d9688baa3e6f", size = 253750, upload-time = "2026-01-25T12:58:05.574Z" }, + { url = "https://files.pythonhosted.org/packages/e5/b1/1935e31add2232663cf7edd8269548b122a7d100047ff93475dbaaae673e/coverage-7.13.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ae47d8dcd3ded0155afbb59c62bd8ab07ea0fd4902e1c40567439e6db9dcaf2f", size = 254862, upload-time = "2026-01-25T12:58:07.647Z" }, + { url = "https://files.pythonhosted.org/packages/af/59/b5e97071ec13df5f45da2b3391b6cdbec78ba20757bc92580a5b3d5fa53c/coverage-7.13.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8a0b33e9fd838220b007ce8f299114d406c1e8edb21336af4c97a26ecfd185aa", size = 251420, upload-time = "2026-01-25T12:58:09.309Z" }, + { url = "https://files.pythonhosted.org/packages/3f/75/9495932f87469d013dc515fb0ce1aac5fa97766f38f6b1a1deb1ee7b7f3a/coverage-7.13.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b3becbea7f3ce9a2d4d430f223ec15888e4deb31395840a79e916368d6004cce", size = 252786, upload-time = "2026-01-25T12:58:10.909Z" }, + { url = "https://files.pythonhosted.org/packages/6a/59/af550721f0eb62f46f7b8cb7e6f1860592189267b1c411a4e3a057caacee/coverage-7.13.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f819c727a6e6eeb8711e4ce63d78c620f69630a2e9d53bc95ca5379f57b6ba94", size = 250928, upload-time = "2026-01-25T12:58:12.449Z" }, + { url = "https://files.pythonhosted.org/packages/9b/b1/21b4445709aae500be4ab43bbcfb4e53dc0811c3396dcb11bf9f23fd0226/coverage-7.13.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:4f7b71757a3ab19f7ba286e04c181004c1d61be921795ee8ba6970fd0ec91da5", size = 250496, upload-time = "2026-01-25T12:58:14.047Z" }, + { url = "https://files.pythonhosted.org/packages/ba/b1/0f5d89dfe0392990e4f3980adbde3eb34885bc1effb2dc369e0bf385e389/coverage-7.13.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b7fc50d2afd2e6b4f6f2f403b70103d280a8e0cb35320cbbe6debcda02a1030b", size = 252373, upload-time = "2026-01-25T12:58:15.976Z" }, + { url = "https://files.pythonhosted.org/packages/01/c9/0cf1a6a57a9968cc049a6b896693faa523c638a5314b1fc374eb2b2ac904/coverage-7.13.2-cp312-cp312-win32.whl", hash = "sha256:292250282cf9bcf206b543d7608bda17ca6fc151f4cbae949fc7e115112fbd41", size = 221696, upload-time = "2026-01-25T12:58:17.517Z" }, + { url = "https://files.pythonhosted.org/packages/4d/05/d7540bf983f09d32803911afed135524570f8c47bb394bf6206c1dc3a786/coverage-7.13.2-cp312-cp312-win_amd64.whl", hash = "sha256:eeea10169fac01549a7921d27a3e517194ae254b542102267bef7a93ed38c40e", size = 222504, upload-time = "2026-01-25T12:58:19.115Z" }, + { url = "https://files.pythonhosted.org/packages/15/8b/1a9f037a736ced0a12aacf6330cdaad5008081142a7070bc58b0f7930cbc/coverage-7.13.2-cp312-cp312-win_arm64.whl", hash = "sha256:2a5b567f0b635b592c917f96b9a9cb3dbd4c320d03f4bf94e9084e494f2e8894", size = 221120, upload-time = "2026-01-25T12:58:21.334Z" }, + { url = "https://files.pythonhosted.org/packages/a7/f0/3d3eac7568ab6096ff23791a526b0048a1ff3f49d0e236b2af6fb6558e88/coverage-7.13.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ed75de7d1217cf3b99365d110975f83af0528c849ef5180a12fd91b5064df9d6", size = 219168, upload-time = "2026-01-25T12:58:23.376Z" }, + { url = "https://files.pythonhosted.org/packages/a3/a6/f8b5cfeddbab95fdef4dcd682d82e5dcff7a112ced57a959f89537ee9995/coverage-7.13.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:97e596de8fa9bada4d88fde64a3f4d37f1b6131e4faa32bad7808abc79887ddc", size = 219537, upload-time = "2026-01-25T12:58:24.932Z" }, + { url = "https://files.pythonhosted.org/packages/7b/e6/8d8e6e0c516c838229d1e41cadcec91745f4b1031d4db17ce0043a0423b4/coverage-7.13.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:68c86173562ed4413345410c9480a8d64864ac5e54a5cda236748031e094229f", size = 250528, upload-time = "2026-01-25T12:58:26.567Z" }, + { url = "https://files.pythonhosted.org/packages/8e/78/befa6640f74092b86961f957f26504c8fba3d7da57cc2ab7407391870495/coverage-7.13.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7be4d613638d678b2b3773b8f687537b284d7074695a43fe2fbbfc0e31ceaed1", size = 253132, upload-time = "2026-01-25T12:58:28.251Z" }, + { url = "https://files.pythonhosted.org/packages/9d/10/1630db1edd8ce675124a2ee0f7becc603d2bb7b345c2387b4b95c6907094/coverage-7.13.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d7f63ce526a96acd0e16c4af8b50b64334239550402fb1607ce6a584a6d62ce9", size = 254374, upload-time = "2026-01-25T12:58:30.294Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1d/0d9381647b1e8e6d310ac4140be9c428a0277330991e0c35bdd751e338a4/coverage-7.13.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:406821f37f864f968e29ac14c3fccae0fec9fdeba48327f0341decf4daf92d7c", size = 250762, upload-time = "2026-01-25T12:58:32.036Z" }, + { url = "https://files.pythonhosted.org/packages/43/e4/5636dfc9a7c871ee8776af83ee33b4c26bc508ad6cee1e89b6419a366582/coverage-7.13.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ee68e5a4e3e5443623406b905db447dceddffee0dceb39f4e0cd9ec2a35004b5", size = 252502, upload-time = "2026-01-25T12:58:33.961Z" }, + { url = "https://files.pythonhosted.org/packages/02/2a/7ff2884d79d420cbb2d12fed6fff727b6d0ef27253140d3cdbbd03187ee0/coverage-7.13.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2ee0e58cca0c17dd9c6c1cdde02bb705c7b3fbfa5f3b0b5afeda20d4ebff8ef4", size = 250463, upload-time = "2026-01-25T12:58:35.529Z" }, + { url = "https://files.pythonhosted.org/packages/91/c0/ba51087db645b6c7261570400fc62c89a16278763f36ba618dc8657a187b/coverage-7.13.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:6e5bbb5018bf76a56aabdb64246b5288d5ae1b7d0dd4d0534fe86df2c2992d1c", size = 250288, upload-time = "2026-01-25T12:58:37.226Z" }, + { url = "https://files.pythonhosted.org/packages/03/07/44e6f428551c4d9faf63ebcefe49b30e5c89d1be96f6a3abd86a52da9d15/coverage-7.13.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a55516c68ef3e08e134e818d5e308ffa6b1337cc8b092b69b24287bf07d38e31", size = 252063, upload-time = "2026-01-25T12:58:38.821Z" }, + { url = "https://files.pythonhosted.org/packages/c2/67/35b730ad7e1859dd57e834d1bc06080d22d2f87457d53f692fce3f24a5a9/coverage-7.13.2-cp313-cp313-win32.whl", hash = "sha256:5b20211c47a8abf4abc3319d8ce2464864fa9f30c5fcaf958a3eed92f4f1fef8", size = 221716, upload-time = "2026-01-25T12:58:40.484Z" }, + { url = "https://files.pythonhosted.org/packages/0d/82/e5fcf5a97c72f45fc14829237a6550bf49d0ab882ac90e04b12a69db76b4/coverage-7.13.2-cp313-cp313-win_amd64.whl", hash = "sha256:14f500232e521201cf031549fb1ebdfc0a40f401cf519157f76c397e586c3beb", size = 222522, upload-time = "2026-01-25T12:58:43.247Z" }, + { url = "https://files.pythonhosted.org/packages/b1/f1/25d7b2f946d239dd2d6644ca2cc060d24f97551e2af13b6c24c722ae5f97/coverage-7.13.2-cp313-cp313-win_arm64.whl", hash = "sha256:9779310cb5a9778a60c899f075a8514c89fa6d10131445c2207fc893e0b14557", size = 221145, upload-time = "2026-01-25T12:58:45Z" }, + { url = "https://files.pythonhosted.org/packages/9e/f7/080376c029c8f76fadfe43911d0daffa0cbdc9f9418a0eead70c56fb7f4b/coverage-7.13.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:e64fa5a1e41ce5df6b547cbc3d3699381c9e2c2c369c67837e716ed0f549d48e", size = 219861, upload-time = "2026-01-25T12:58:46.586Z" }, + { url = "https://files.pythonhosted.org/packages/42/11/0b5e315af5ab35f4c4a70e64d3314e4eec25eefc6dec13be3a7d5ffe8ac5/coverage-7.13.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b01899e82a04085b6561eb233fd688474f57455e8ad35cd82286463ba06332b7", size = 220207, upload-time = "2026-01-25T12:58:48.277Z" }, + { url = "https://files.pythonhosted.org/packages/b2/0c/0874d0318fb1062117acbef06a09cf8b63f3060c22265adaad24b36306b7/coverage-7.13.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:838943bea48be0e2768b0cf7819544cdedc1bbb2f28427eabb6eb8c9eb2285d3", size = 261504, upload-time = "2026-01-25T12:58:49.904Z" }, + { url = "https://files.pythonhosted.org/packages/83/5e/1cd72c22ecb30751e43a72f40ba50fcef1b7e93e3ea823bd9feda8e51f9a/coverage-7.13.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:93d1d25ec2b27e90bcfef7012992d1f5121b51161b8bffcda756a816cf13c2c3", size = 263582, upload-time = "2026-01-25T12:58:51.582Z" }, + { url = "https://files.pythonhosted.org/packages/9b/da/8acf356707c7a42df4d0657020308e23e5a07397e81492640c186268497c/coverage-7.13.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93b57142f9621b0d12349c43fc7741fe578e4bc914c1e5a54142856cfc0bf421", size = 266008, upload-time = "2026-01-25T12:58:53.234Z" }, + { url = "https://files.pythonhosted.org/packages/41/41/ea1730af99960309423c6ea8d6a4f1fa5564b2d97bd1d29dda4b42611f04/coverage-7.13.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f06799ae1bdfff7ccb8665d75f8291c69110ba9585253de254688aa8a1ccc6c5", size = 260762, upload-time = "2026-01-25T12:58:55.372Z" }, + { url = "https://files.pythonhosted.org/packages/22/fa/02884d2080ba71db64fdc127b311db60e01fe6ba797d9c8363725e39f4d5/coverage-7.13.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:7f9405ab4f81d490811b1d91c7a20361135a2df4c170e7f0b747a794da5b7f23", size = 263571, upload-time = "2026-01-25T12:58:57.52Z" }, + { url = "https://files.pythonhosted.org/packages/d2/6b/4083aaaeba9b3112f55ac57c2ce7001dc4d8fa3fcc228a39f09cc84ede27/coverage-7.13.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:f9ab1d5b86f8fbc97a5b3cd6280a3fd85fef3b028689d8a2c00918f0d82c728c", size = 261200, upload-time = "2026-01-25T12:58:59.255Z" }, + { url = "https://files.pythonhosted.org/packages/e9/d2/aea92fa36d61955e8c416ede9cf9bf142aa196f3aea214bb67f85235a050/coverage-7.13.2-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:f674f59712d67e841525b99e5e2b595250e39b529c3bda14764e4f625a3fa01f", size = 260095, upload-time = "2026-01-25T12:59:01.066Z" }, + { url = "https://files.pythonhosted.org/packages/0d/ae/04ffe96a80f107ea21b22b2367175c621da920063260a1c22f9452fd7866/coverage-7.13.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c6cadac7b8ace1ba9144feb1ae3cb787a6065ba6d23ffc59a934b16406c26573", size = 262284, upload-time = "2026-01-25T12:59:02.802Z" }, + { url = "https://files.pythonhosted.org/packages/1c/7a/6f354dcd7dfc41297791d6fb4e0d618acb55810bde2c1fd14b3939e05c2b/coverage-7.13.2-cp313-cp313t-win32.whl", hash = "sha256:14ae4146465f8e6e6253eba0cccd57423e598a4cb925958b240c805300918343", size = 222389, upload-time = "2026-01-25T12:59:04.563Z" }, + { url = "https://files.pythonhosted.org/packages/8d/d5/080ad292a4a3d3daf411574be0a1f56d6dee2c4fdf6b005342be9fac807f/coverage-7.13.2-cp313-cp313t-win_amd64.whl", hash = "sha256:9074896edd705a05769e3de0eac0a8388484b503b68863dd06d5e473f874fd47", size = 223450, upload-time = "2026-01-25T12:59:06.677Z" }, + { url = "https://files.pythonhosted.org/packages/88/96/df576fbacc522e9fb8d1c4b7a7fc62eb734be56e2cba1d88d2eabe08ea3f/coverage-7.13.2-cp313-cp313t-win_arm64.whl", hash = "sha256:69e526e14f3f854eda573d3cf40cffd29a1a91c684743d904c33dbdcd0e0f3e7", size = 221707, upload-time = "2026-01-25T12:59:08.363Z" }, + { url = "https://files.pythonhosted.org/packages/d2/db/d291e30fdf7ea617a335531e72294e0c723356d7fdde8fba00610a76bda9/coverage-7.13.2-py3-none-any.whl", hash = "sha256:40ce1ea1e25125556d8e76bd0b61500839a07944cc287ac21d5626f3e620cad5", size = 210943, upload-time = "2026-01-25T13:00:02.388Z" }, ] [[package]] @@ -820,14 +814,14 @@ wheels = [ [[package]] name = "django-dbbackup" -version = "5.1.0" +version = "5.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1c/97/0504a820ea4a3550386fdfb73d7808d3458e4882d33f0b7cef23439d3b4a/django_dbbackup-5.1.0.tar.gz", hash = "sha256:66c236bbfa0c9bda33a61d30be8c5961d70fa73fed2fe7f829559ac216354130", size = 26361, upload-time = "2025-12-17T13:23:12.072Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/19/7f75d5e1ee70d61e1fdb68ff148681f74e7900f24b7b1e8e2d1506c808d2/django_dbbackup-5.1.2.tar.gz", hash = "sha256:792b646633e46622ee79536556a9e42d469758b8591dec06f99a9175c11f8e51", size = 26393, upload-time = "2026-01-15T00:37:11.491Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/da/a3/62fc9ecb4222fffdb1a56f187888c4e237edb763dbafc64677115d0788d7/django_dbbackup-5.1.0-py3-none-any.whl", hash = "sha256:611291606bf6a80903733a99235963e65236c23bca26c2edca453b928b504c67", size = 34612, upload-time = "2025-12-17T13:23:10.538Z" }, + { url = "https://files.pythonhosted.org/packages/d2/24/b2d523c8e2599b75bcf2955e62b05b13280fab20244cff2364c728810f60/django_dbbackup-5.1.2-py3-none-any.whl", hash = "sha256:4ebc0e3a8de73811393f401099dc35b4f3aca39044ca430ab6ab307df32849a1", size = 34667, upload-time = "2026-01-15T00:37:10.041Z" }, ] [[package]] @@ -881,16 +875,16 @@ wheels = [ [[package]] name = "django-import-export" -version = "4.3.14" +version = "4.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "diff-match-patch" }, { name = "django" }, { name = "tablib" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b3/d7/0d7b0c26b1c665c6f462a418620d853328aeabbfe8b8d2a4decbcb58a398/django_import_export-4.3.14.tar.gz", hash = "sha256:224c7d909fec607378bc58271db38b9c6065982306aa644d26a529fcde64869e", size = 2234935, upload-time = "2025-11-13T10:06:45.793Z" } +sdist = { url = "https://files.pythonhosted.org/packages/22/26/279bc8e6cb2c83d1b5dcdca07e932207c3352af11c6d305d6964a2d03ccc/django_import_export-4.4.0.tar.gz", hash = "sha256:9900e99c89027594941074fb4cd63a5f2964975e239021765c0f066003fcd412", size = 2237714, upload-time = "2026-01-10T20:57:35.128Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fa/11/cfd39f4c920a22c1f5954323e6d31834d11f097632c28e963f17d47a8d60/django_import_export-4.3.14-py3-none-any.whl", hash = "sha256:ce6484fa082a1cdb2bf4e0b60276d3e2a7f39f74c20ae663b2f8eebb54141a58", size = 156085, upload-time = "2025-11-13T10:06:43.903Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e0/f4aa6d2374cc6b53b23f36bd0d5814e1db2769b25931b9908723fa295bb0/django_import_export-4.4.0-py3-none-any.whl", hash = "sha256:2d9b234c0f024d3377167f4d9c5a506e095c5bad98e06d30700e1d0752829e3d", size = 157449, upload-time = "2026-01-10T20:57:33.141Z" }, ] [package.optional-dependencies] @@ -919,12 +913,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/19/6a/bdbcc079d11d312e463565819089fe83ae6c7f17f274effa4777ca069f64/django_json_widget-2.1.1-py2.py3-none-any.whl", hash = "sha256:2fa3d6fb6dba9436a29ad2cee23fa794381f54a6678ec7d74e990ae081d9800b", size = 293721, upload-time = "2025-12-12T11:22:04.195Z" }, ] -[[package]] -name = "django-mailbox" -version = "4.10.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/50/c2/a5037a5179e7754013c099d1d397a04447b1d950081564c252580ced629d/django-mailbox-4.10.1.tar.gz", hash = "sha256:9060a4ddc81d16aa699e266649c12eaf4f29671b5266352e2fad3043a6832b52", size = 2976905, upload-time = "2024-04-21T00:23:28.792Z" } - [[package]] name = "django-md-field" version = "0.1.0" @@ -1023,7 +1011,7 @@ wheels = [ [[package]] name = "django-stubs" -version = "5.2.8" +version = "5.2.9" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django" }, @@ -1031,34 +1019,24 @@ dependencies = [ { name = "types-pyyaml" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/6c/75/97626224fd8f1787bb6f7f06944efcfddd5da7764bf741cf7f59d102f4a0/django_stubs-5.2.8.tar.gz", hash = "sha256:9bba597c9a8ed8c025cae4696803d5c8be1cf55bfc7648a084cbf864187e2f8b", size = 257709, upload-time = "2025-12-01T08:13:09.569Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/01/86c921e0e19c9fa7e705bf795998dbf55eb183e7be0342a3027dc1bcbc9f/django_stubs-5.2.9.tar.gz", hash = "sha256:c192257120b08785cfe6f2f1c91f1797aceae8e9daa689c336e52c91e8f6a493", size = 257970, upload-time = "2026-01-20T23:59:27.018Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7d/3f/7c9543ad5ade5ce1d33d187a3abd82164570314ebee72c6206ab5c044ebf/django_stubs-5.2.8-py3-none-any.whl", hash = "sha256:a3c63119fd7062ac63d58869698d07c9e5ec0561295c4e700317c54e8d26716c", size = 508136, upload-time = "2025-12-01T08:13:07.963Z" }, + { url = "https://files.pythonhosted.org/packages/0d/05/4c9c419b7051eb4b350100b086be6df487f968ab672d3d370f8ccf7c3746/django_stubs-5.2.9-py3-none-any.whl", hash = "sha256:2317a7130afdaa76f6ff7f623650d7f3bf1b6c86a60f95840e14e6ec6de1a7cd", size = 508656, upload-time = "2026-01-20T23:59:25.12Z" }, ] [[package]] name = "django-stubs-ext" -version = "5.2.8" +version = "5.2.9" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/14/a2/d67f4a5200ff7626b104eddceaf529761cba4ed318a73ffdb0677551be73/django_stubs_ext-5.2.8.tar.gz", hash = "sha256:b39938c46d7a547cd84e4a6378dbe51a3dd64d70300459087229e5fee27e5c6b", size = 6487, upload-time = "2025-12-01T08:12:37.486Z" } +sdist = { url = "https://files.pythonhosted.org/packages/55/03/9c2be939490d2282328db4611bc5956899f5ff7eabc3e88bd4b964a87373/django_stubs_ext-5.2.9.tar.gz", hash = "sha256:6db4054d1580657b979b7d391474719f1a978773e66c7070a5e246cd445a25a9", size = 6497, upload-time = "2026-01-20T23:58:59.462Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/da/2d/cb0151b780c3730cf0f2c0fcb1b065a5e88f877cf7a9217483c375353af1/django_stubs_ext-5.2.8-py3-none-any.whl", hash = "sha256:1dd5470c9675591362c78a157a3cf8aec45d0e7a7f0cf32f227a1363e54e0652", size = 9949, upload-time = "2025-12-01T08:12:36.397Z" }, + { url = "https://files.pythonhosted.org/packages/9b/f7/0d5f7d7e76fe972d9f560f687fdc0cab4db9e1624fd90728ca29b4ed7a63/django_stubs_ext-5.2.9-py3-none-any.whl", hash = "sha256:230c51575551b0165be40177f0f6805f1e3ebf799b835c85f5d64c371ca6cf71", size = 9974, upload-time = "2026-01-20T23:58:58.438Z" }, ] -[[package]] -name = "django-summernote" -version = "0.8.20.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "bleach" }, - { name = "django" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/0e/20/d184fd9566c263f474e2fe964fdbcf50f277746f2d3efb0881208abbb658/django-summernote-0.8.20.0.tar.gz", hash = "sha256:52e9b12438ed9eac0d77729f758f2aae06e468b5cbce133e24100d58ae4e43a8", size = 288500, upload-time = "2021-10-14T21:54:58.75Z" } - [[package]] name = "django-timezone-field" version = "7.2.1" @@ -1073,36 +1051,26 @@ wheels = [ [[package]] name = "django-unfold" -version = "0.74.1" +version = "0.76.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/78/88/d98c21ed315e5cb025f45aaea1e95d35c0fd11fb9123cb4c1278c33e70ad/django_unfold-0.74.1.tar.gz", hash = "sha256:573f793f975b9dbe324859121a179ae3f4d600d580e28e038736d7a2696e86dc", size = 1103394, upload-time = "2025-12-15T17:06:36Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/dc/041d8144fb4503dea02bd73059c842395dfc8b6e7e14e9c7e16b65a43696/django_unfold-0.76.0.tar.gz", hash = "sha256:26d556aaf0f14980f102ea680af27887ac8508085a56c5c797da28c7ca165ec8", size = 1103435, upload-time = "2026-01-12T12:10:11.943Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2d/21/1c5482019bf2b454ac3e67cf0de456eb3dccc2f478a865a2f8a4fba28ef7/django_unfold-0.74.1-py3-none-any.whl", hash = "sha256:0b0a4b13c568309f3bb0a14d5bd7353b47b676d97695954d9631245df84e18f3", size = 1217338, upload-time = "2025-12-15T17:06:34.418Z" }, -] - -[[package]] -name = "django-unfold-markdown" -version = "0.1.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "django" }, - { name = "django-unfold" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/fb/c5/3d1e9d43fce9a0b646bf4f40fdce056af45cda39ede35a2d1cdebfb25ddc/django_unfold_markdown-0.1.2.tar.gz", hash = "sha256:6b4d8c627c08901fc6088a4aa85c357510fa4c9e55fcb2e81f2bdf10628076ec", size = 117597, upload-time = "2025-11-30T19:40:02.159Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/da/6d/c4ded7b49db7e4c8daddafb28b6ec377a5e435879e370e048537342e65c3/django_unfold_markdown-0.1.2-py3-none-any.whl", hash = "sha256:a9614d7eac13c0b6be1288dfe7750987cbb99810372803a880b90b07ee014ce0", size = 119709, upload-time = "2025-11-30T19:40:00.864Z" }, + { url = "https://files.pythonhosted.org/packages/b1/17/9da3c6fd822dfe9bd1ef3e2486d4994df1456cf21de91594b79b982511a6/django_unfold-0.76.0-py3-none-any.whl", hash = "sha256:4323222ec06c73f9210196646447e90d4bc7464c2c5fd16bcf722fdc9c8ed4a7", size = 1219446, upload-time = "2026-01-12T12:10:10.118Z" }, ] [[package]] name = "django-widget-tweaks" -version = "1.5.0" +version = "1.5.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a5/fe/26eb92fba83844e71bbec0ced7fc2e843e5990020e3cc676925204031654/django-widget-tweaks-1.5.0.tar.gz", hash = "sha256:1c2180681ebb994e922c754804c7ffebbe1245014777ac47897a81f57cc629c7", size = 14767, upload-time = "2023-08-25T15:29:12.778Z" } +dependencies = [ + { name = "django" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/6d/d1b5a3ae3bccfee96e10315373298cea51e5e0d6853d022181b7b0861a4d/django_widget_tweaks-1.5.1.tar.gz", hash = "sha256:084acc9eeb5a3208f2670522de6284287973e54d54488ce6d402f4b99bc5f452", size = 16233, upload-time = "2026-01-02T12:46:28.907Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/46/6a/6cb6deb5c38b785c77c3ba66f53051eada49205979c407323eb666930915/django_widget_tweaks-1.5.0-py3-none-any.whl", hash = "sha256:a41b7b2f05bd44d673d11ebd6c09a96f1d013ee98121cb98c384fe84e33b881e", size = 8960, upload-time = "2023-08-25T15:29:05.644Z" }, + { url = "https://files.pythonhosted.org/packages/64/6a/ad176284371005426b9a1c424e6cd77a9018ab1b17dc23948bfbeb2f6a21/django_widget_tweaks-1.5.1-py3-none-any.whl", hash = "sha256:3f5080f8365740fc1c14607498c975cbfed896dd0c40e1b563095716ee31e3b5", size = 9634, upload-time = "2026-01-02T12:46:02.18Z" }, ] [[package]] @@ -1162,18 +1130,17 @@ crypto = [ [[package]] name = "djangorestframework-stubs" -version = "3.16.6" +version = "3.16.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django-stubs" }, - { name = "requests" }, { name = "types-pyyaml" }, { name = "types-requests" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/38/ed/6e16dbe8e79af9d2cdbcbd89553e59d18ecab7e9820ebb751085fc29fc0e/djangorestframework_stubs-3.16.6.tar.gz", hash = "sha256:b8d3e73604280f69c628ff7900f0e84703d9ff47cd050fccb5f751438e4c5813", size = 32274, upload-time = "2025-12-03T22:26:23.238Z" } +sdist = { url = "https://files.pythonhosted.org/packages/35/50/889b1121dc0831aa9f6ece8409d41a5f4667da2a963172516841f343fd35/djangorestframework_stubs-3.16.7.tar.gz", hash = "sha256:e53bc346e9950ebdd1bb2bbc19d7e5c8b7acc894e381df55da69248f47ab78ff", size = 32296, upload-time = "2026-01-13T11:42:48.3Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/93/e3/d75f9e06d13d7fe8ed25473627c277992b7fad80747a4eaa1c7faa97e09e/djangorestframework_stubs-3.16.6-py3-none-any.whl", hash = "sha256:9bf2e5c83478edca3b8eb5ffd673737243ade16ce4b47b633a4ea62fe6924331", size = 56506, upload-time = "2025-12-03T22:26:21.88Z" }, + { url = "https://files.pythonhosted.org/packages/9e/99/7c969728d66388e22fdaba94e1a9c56490954e2f12f598416e380a53b26d/djangorestframework_stubs-3.16.7-py3-none-any.whl", hash = "sha256:70f80050144875f80ce8ac823ff8628f6e3eb7336495394bb9803251721d9358", size = 56522, upload-time = "2026-01-13T11:42:46.118Z" }, ] [[package]] @@ -1324,218 +1291,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c1/8b/5fe2cc11fee489817272089c4203e679c63b570a5aaeb18d852ae3cbba6a/et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa", size = 18059, upload-time = "2024-10-25T17:25:39.051Z" }, ] -[[package]] -name = "evibes" -version = "2026.1" -source = { virtual = "." } -dependencies = [ - { name = "aiogram" }, - { name = "aiosmtpd" }, - { name = "channels" }, - { name = "channels-redis" }, - { name = "click" }, - { name = "colorlog" }, - { name = "coverage" }, - { name = "cryptography" }, - { name = "django" }, - { name = "django-cacheops" }, - { name = "django-constance" }, - { name = "django-cors-headers" }, - { name = "django-dbbackup" }, - { name = "django-elasticsearch-dsl" }, - { name = "django-extensions" }, - { name = "django-filter" }, - { name = "django-health-check" }, - { name = "django-import-export", extra = ["all"] }, - { name = "django-json-widget" }, - { name = "django-mailbox" }, - { name = "django-md-field" }, - { name = "django-model-utils" }, - { name = "django-modeltranslation" }, - { name = "django-mptt" }, - { name = "django-prometheus" }, - { name = "django-ratelimit" }, - { name = "django-redis" }, - { name = "django-storages" }, - { name = "django-summernote" }, - { name = "django-unfold" }, - { name = "django-unfold-markdown" }, - { name = "django-widget-tweaks" }, - { name = "djangoql" }, - { name = "djangorestframework" }, - { name = "djangorestframework-recursive" }, - { name = "djangorestframework-simplejwt", extra = ["crypto"] }, - { name = "djangorestframework-xml" }, - { name = "djangorestframework-yaml" }, - { name = "docutils" }, - { name = "drf-orjson-renderer" }, - { name = "drf-spectacular", extra = ["sidecar"] }, - { name = "drf-spectacular-websocket" }, - { name = "elasticsearch-dsl" }, - { name = "filelock" }, - { name = "filetype" }, - { name = "graphene-django" }, - { name = "graphene-file-upload" }, - { name = "gunicorn" }, - { name = "httpx" }, - { name = "paramiko" }, - { name = "pillow" }, - { name = "pip" }, - { name = "polib" }, - { name = "psutil" }, - { name = "psycopg2-binary" }, - { name = "pyjwt" }, - { name = "pymdown-extensions" }, - { name = "pytest" }, - { name = "pytest-django" }, - { name = "python-slugify" }, - { name = "redis" }, - { name = "requests" }, - { name = "sentry-sdk", extra = ["celery", "django", "opentelemetry"] }, - { name = "six" }, - { name = "swapper" }, - { name = "uvicorn" }, - { name = "websockets" }, - { name = "whitenoise" }, - { name = "zeep" }, -] - -[package.optional-dependencies] -graph = [ - { name = "pygraphviz", marker = "sys_platform != 'win32'" }, -] -jupyter = [ - { name = "jupyter" }, -] -linting = [ - { name = "celery-types" }, - { name = "django-stubs" }, - { name = "djangorestframework-stubs" }, - { name = "ruff" }, - { name = "ty" }, - { name = "types-docutils" }, - { name = "types-paramiko" }, - { name = "types-pillow" }, - { name = "types-psutil" }, - { name = "types-redis" }, - { name = "types-requests" }, - { name = "types-six" }, -] -openai = [ - { name = "openai" }, -] -worker = [ - { name = "celery" }, - { name = "celery-prometheus-exporter" }, - { name = "django-celery-beat" }, - { name = "django-celery-results" }, -] - -[package.metadata] -requires-dist = [ - { name = "aiogram", specifier = "==3.23.0" }, - { name = "aiosmtpd", specifier = "==1.4.6" }, - { name = "celery", marker = "extra == 'worker'", specifier = "==5.6.0" }, - { name = "celery-prometheus-exporter", marker = "extra == 'worker'", specifier = "==1.7.0" }, - { name = "celery-types", marker = "extra == 'linting'", specifier = "==0.24.0" }, - { name = "channels", specifier = "==4.3.2" }, - { name = "channels-redis", specifier = "==4.3.0" }, - { name = "click", specifier = "==8.3.1" }, - { name = "colorlog", specifier = "==6.10.1" }, - { name = "coverage", specifier = "==7.13.1" }, - { name = "cryptography", specifier = "==46.0.3" }, - { name = "django", specifier = "==5.2.9" }, - { name = "django-cacheops", specifier = "==7.2" }, - { name = "django-celery-beat", marker = "extra == 'worker'", specifier = "==2.8.1" }, - { name = "django-celery-results", marker = "extra == 'worker'", specifier = "==2.6.0" }, - { name = "django-constance", specifier = "==4.3.4" }, - { name = "django-cors-headers", specifier = "==4.9.0" }, - { name = "django-dbbackup", specifier = "==5.1.0" }, - { name = "django-elasticsearch-dsl", specifier = "==8.2" }, - { name = "django-extensions", specifier = "==4.1" }, - { name = "django-filter", specifier = "==25.2" }, - { name = "django-health-check", specifier = "==3.20.8" }, - { name = "django-import-export", extras = ["all"], specifier = "==4.3.14" }, - { name = "django-json-widget", specifier = "==2.1.1" }, - { name = "django-mailbox", specifier = "==4.10.1" }, - { name = "django-md-field", specifier = "==0.1.0" }, - { name = "django-model-utils", specifier = "==5.0.0" }, - { name = "django-modeltranslation", specifier = "==0.19.19" }, - { name = "django-mptt", specifier = "==0.18.0" }, - { name = "django-prometheus", specifier = "==2.4.1" }, - { name = "django-ratelimit", specifier = "==4.1.0" }, - { name = "django-redis", specifier = "==6.0.0" }, - { name = "django-storages", specifier = "==1.14.6" }, - { name = "django-stubs", marker = "extra == 'linting'", specifier = "==5.2.8" }, - { name = "django-summernote", specifier = "==0.8.20.0" }, - { name = "django-unfold", specifier = "==0.74.1" }, - { name = "django-unfold-markdown", specifier = "==0.1.2" }, - { name = "django-widget-tweaks", specifier = "==1.5.0" }, - { name = "djangoql", specifier = "==0.18.1" }, - { name = "djangorestframework", specifier = "==3.16.1" }, - { name = "djangorestframework-recursive", specifier = "==0.1.2" }, - { name = "djangorestframework-simplejwt", extras = ["crypto"], specifier = "==5.5.1" }, - { name = "djangorestframework-stubs", marker = "extra == 'linting'", specifier = "==3.16.6" }, - { name = "djangorestframework-xml", specifier = "==2.0.0" }, - { name = "djangorestframework-yaml", specifier = "==2.0.0" }, - { name = "docutils", specifier = "==0.22.4" }, - { name = "drf-orjson-renderer", specifier = "==1.8.0" }, - { name = "drf-spectacular", extras = ["sidecar"], specifier = "==0.29.0" }, - { name = "drf-spectacular-websocket", specifier = "==1.3.1" }, - { name = "elasticsearch-dsl", specifier = "==8.18.0" }, - { name = "filelock", specifier = "==3.20.1" }, - { name = "filetype", specifier = "==1.2.0" }, - { name = "graphene-django", specifier = "==3.2.3" }, - { name = "graphene-file-upload", specifier = "==1.3.0" }, - { name = "gunicorn", specifier = "==23.0.0" }, - { name = "httpx", specifier = "==0.28.1" }, - { name = "jupyter", marker = "extra == 'jupyter'", specifier = "==1.1.1" }, - { name = "openai", marker = "extra == 'openai'", specifier = "==2.14.0" }, - { name = "paramiko", specifier = "==4.0.0" }, - { name = "pillow", specifier = "==12.0.0" }, - { name = "pip", specifier = "==25.3" }, - { name = "polib", specifier = "==1.2.0" }, - { name = "psutil", specifier = "==7.2.1" }, - { name = "psycopg2-binary", specifier = "==2.9.11" }, - { name = "pygraphviz", marker = "sys_platform != 'win32' and extra == 'graph'", specifier = "==1.14" }, - { name = "pyjwt", specifier = "==2.10.1" }, - { name = "pymdown-extensions", specifier = "==10.19.1" }, - { name = "pytest", specifier = "==9.0.2" }, - { name = "pytest-django", specifier = "==4.11.1" }, - { name = "python-slugify", specifier = "==8.0.4" }, - { name = "redis", specifier = "==7.1.0" }, - { name = "requests", specifier = "==2.32.5" }, - { name = "ruff", marker = "extra == 'linting'", specifier = "==0.14.10" }, - { name = "sentry-sdk", extras = ["django", "celery", "opentelemetry"], specifier = "==2.48.0" }, - { name = "six", specifier = "==1.17.0" }, - { name = "swapper", specifier = "==1.4.0" }, - { name = "ty", marker = "extra == 'linting'", specifier = "==0.0.7" }, - { name = "types-docutils", marker = "extra == 'linting'", specifier = "==0.22.3.20251115" }, - { name = "types-paramiko", marker = "extra == 'linting'", specifier = "==4.0.0.20250822" }, - { name = "types-pillow", marker = "extra == 'linting'", specifier = "==10.2.0.20240822" }, - { name = "types-psutil", marker = "extra == 'linting'", specifier = "==7.2.0.20251228" }, - { name = "types-redis", marker = "extra == 'linting'", specifier = "==4.6.0.20241004" }, - { name = "types-requests", marker = "extra == 'linting'", specifier = "==2.32.4.20250913" }, - { name = "types-six", marker = "extra == 'linting'", specifier = "==1.17.0.20251009" }, - { name = "uvicorn", specifier = "==0.40.0" }, - { name = "websockets", specifier = "==15.0.1" }, - { name = "whitenoise", specifier = "==6.11.0" }, - { name = "zeep", specifier = "==4.3.2" }, -] -provides-extras = ["graph", "worker", "linting", "openai", "jupyter"] - -[[package]] -name = "exceptiongroup" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, -] - [[package]] name = "executing" version = "2.2.1" @@ -1556,11 +1311,11 @@ wheels = [ [[package]] name = "filelock" -version = "3.20.1" +version = "3.20.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a7/23/ce7a1126827cedeb958fc043d61745754464eb56c5937c35bbf2b8e26f34/filelock-3.20.1.tar.gz", hash = "sha256:b8360948b351b80f420878d8516519a2204b07aefcdcfd24912a5d33127f188c", size = 19476, upload-time = "2025-12-15T23:54:28.027Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/65/ce7f1b70157833bf3cb851b556a37d4547ceafc158aa9b34b36782f23696/filelock-3.20.3.tar.gz", hash = "sha256:18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1", size = 19485, upload-time = "2026-01-09T17:55:05.421Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e3/7f/a1a97644e39e7316d850784c642093c99df1290a460df4ede27659056834/filelock-3.20.1-py3-none-any.whl", hash = "sha256:15d9e9a67306188a44baa72f569d2bfd803076269365fdea0934385da4dc361a", size = 16666, upload-time = "2025-12-15T23:54:26.874Z" }, + { url = "https://files.pythonhosted.org/packages/b5/36/7fb70f04bf00bc646cd5bb45aa9eddb15e19437a28b8fb2b4a5249fac770/filelock-3.20.3-py3-none-any.whl", hash = "sha256:4b0dda527ee31078689fc205ec4f1c1bf7d56cf88b6dc9426c4f230e46c2dce1", size = 16701, upload-time = "2026-01-09T17:55:04.334Z" }, ] [[package]] @@ -1712,18 +1467,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/74/16/a4cf06adbc711bd364a73ce043b0b08d8fa5aae3df11b6ee4248bcdad2e0/graphql_relay-3.2.0-py3-none-any.whl", hash = "sha256:c9b22bd28b170ba1fe674c74384a8ff30a76c8e26f88ac3aa1584dd3179953e5", size = 16940, upload-time = "2022-04-16T11:03:43.895Z" }, ] -[[package]] -name = "gunicorn" -version = "23.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "packaging" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/34/72/9614c465dc206155d93eff0ca20d42e1e35afc533971379482de953521a4/gunicorn-23.0.0.tar.gz", hash = "sha256:f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec", size = 375031, upload-time = "2024-08-10T20:25:27.378Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cb/7d/6dac2a6e1eba33ee43f318edbed4ff29151a49b5d37f080aad1e6469bca4/gunicorn-23.0.0-py3-none-any.whl", hash = "sha256:ec400d38950de4dfd418cff8328b2c8faed0edb0d517d3394e457c317908ca4d", size = 85029, upload-time = "2024-08-10T20:25:24.996Z" }, -] - [[package]] name = "h11" version = "0.16.0" @@ -1835,7 +1578,7 @@ wheels = [ [[package]] name = "ipython" -version = "9.8.0" +version = "9.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, @@ -1849,9 +1592,9 @@ dependencies = [ { name = "stack-data" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/12/51/a703c030f4928646d390b4971af4938a1b10c9dfce694f0d99a0bb073cb2/ipython-9.8.0.tar.gz", hash = "sha256:8e4ce129a627eb9dd221c41b1d2cdaed4ef7c9da8c17c63f6f578fe231141f83", size = 4424940, upload-time = "2025-12-03T10:18:24.353Z" } +sdist = { url = "https://files.pythonhosted.org/packages/46/dd/fb08d22ec0c27e73c8bc8f71810709870d51cadaf27b7ddd3f011236c100/ipython-9.9.0.tar.gz", hash = "sha256:48fbed1b2de5e2c7177eefa144aba7fcb82dac514f09b57e2ac9da34ddb54220", size = 4425043, upload-time = "2026-01-05T12:36:46.233Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f1/df/8ee1c5dd1e3308b5d5b2f2dfea323bb2f3827da8d654abb6642051199049/ipython-9.8.0-py3-none-any.whl", hash = "sha256:ebe6d1d58d7d988fbf23ff8ff6d8e1622cfdb194daf4b7b73b792c4ec3b85385", size = 621374, upload-time = "2025-12-03T10:18:22.335Z" }, + { url = "https://files.pythonhosted.org/packages/86/92/162cfaee4ccf370465c5af1ce36a9eacec1becb552f2033bb3584e6f640a/ipython-9.9.0-py3-none-any.whl", hash = "sha256:b457fe9165df2b84e8ec909a97abcf2ed88f565970efba16b1f7229c283d252b", size = 621431, upload-time = "2026-01-05T12:36:44.669Z" }, ] [[package]] @@ -1990,7 +1733,7 @@ wheels = [ [[package]] name = "jsonschema" -version = "4.25.1" +version = "4.26.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, @@ -1998,9 +1741,9 @@ dependencies = [ { name = "referencing" }, { name = "rpds-py" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336/jsonschema-4.25.1.tar.gz", hash = "sha256:e4a9655ce0da0c0b67a085847e00a3a51449e1157f4f75e9fb5aa545e122eb85", size = 357342, upload-time = "2025-08-18T17:03:50.038Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/9c/8c95d856233c1f82500c2450b8c68576b4cf1c871db3afac5c34ff84e6fd/jsonschema-4.25.1-py3-none-any.whl", hash = "sha256:3fba0169e345c7175110351d456342c364814cfcf3b964ba4587f22915230a63", size = 90040, upload-time = "2025-08-18T17:03:48.373Z" }, + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, ] [package.optional-dependencies] @@ -2047,7 +1790,7 @@ wheels = [ [[package]] name = "jupyter-client" -version = "8.7.0" +version = "8.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jupyter-core" }, @@ -2056,9 +1799,9 @@ dependencies = [ { name = "tornado" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a6/27/d10de45e8ad4ce872372c4a3a37b7b35b6b064f6f023a5c14ffcced4d59d/jupyter_client-8.7.0.tar.gz", hash = "sha256:3357212d9cbe01209e59190f67a3a7e1f387a4f4e88d1e0433ad84d7b262531d", size = 344691, upload-time = "2025-12-09T18:37:01.953Z" } +sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bb/f5/fddaec430367be9d62a7ed125530e133bfd4a1c0350fe221149ee0f2b526/jupyter_client-8.7.0-py3-none-any.whl", hash = "sha256:3671a94fd25e62f5f2f554f5e95389c2294d89822378a5f2dd24353e1494a9e0", size = 106215, upload-time = "2025-12-09T18:37:00.024Z" }, + { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, ] [[package]] @@ -2155,20 +1898,20 @@ wheels = [ [[package]] name = "jupyter-server-terminals" -version = "0.5.3" +version = "0.5.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pywinpty", marker = "os_name == 'nt'" }, { name = "terminado" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fc/d5/562469734f476159e99a55426d697cbf8e7eb5efe89fb0e0b4f83a3d3459/jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269", size = 31430, upload-time = "2024-03-12T14:37:03.049Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa", size = 13656, upload-time = "2024-03-12T14:37:00.708Z" }, + { url = "https://files.pythonhosted.org/packages/d1/2d/6674563f71c6320841fc300911a55143925112a72a883e2ca71fba4c618d/jupyter_server_terminals-0.5.4-py3-none-any.whl", hash = "sha256:55be353fc74a80bc7f3b20e6be50a55a61cd525626f578dcb66a5708e2007d14", size = 13704, upload-time = "2026-01-14T16:53:18.738Z" }, ] [[package]] name = "jupyterlab" -version = "4.5.1" +version = "4.5.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "async-lru" }, @@ -2185,9 +1928,9 @@ dependencies = [ { name = "tornado" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/09/21/413d142686a4e8f4268d985becbdb4daf060524726248e73be4773786987/jupyterlab-4.5.1.tar.gz", hash = "sha256:09da1ddfbd9eec18b5101dbb8515612aa1e47443321fb99503725a88e93d20d9", size = 23992251, upload-time = "2025-12-15T16:58:59.361Z" } +sdist = { url = "https://files.pythonhosted.org/packages/3e/76/393eae3349f9a39bf21f8f5406e5244d36e2bfc932049b6070c271f92764/jupyterlab-4.5.3.tar.gz", hash = "sha256:4a159f71067cb38e4a82e86a42de8e7e926f384d7f2291964f282282096d27e8", size = 23939231, upload-time = "2026-01-23T15:04:25.768Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/c3/acced767eecc11a70c65c45295db5396c4f0c1937874937d5a76d7b177b6/jupyterlab-4.5.1-py3-none-any.whl", hash = "sha256:31b059de96de0754ff1f2ce6279774b6aab8c34d7082e9752db58207c99bd514", size = 12384821, upload-time = "2025-12-15T16:58:55.563Z" }, + { url = "https://files.pythonhosted.org/packages/9e/9a/0bf9a7a45f0006d7ff4fdc4fc313de4255acab02bf4db1887c65f0472c01/jupyterlab-4.5.3-py3-none-any.whl", hash = "sha256:63c9f3a48de72ba00df766ad6eed416394f5bb883829f11eeff0872302520ba7", size = 12391761, upload-time = "2026-01-23T15:04:21.214Z" }, ] [[package]] @@ -2305,11 +2048,11 @@ wheels = [ [[package]] name = "markdown" -version = "3.10" +version = "3.10.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/7dd27d9d863b3376fcf23a5a13cb5d024aed1db46f963f1b5735ae43b3be/markdown-3.10.tar.gz", hash = "sha256:37062d4f2aa4b2b6b32aefb80faa300f82cc790cb949a35b8caede34f2b68c0e", size = 364931, upload-time = "2025-11-03T19:51:15.007Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/b1/af95bcae8549f1f3fd70faacb29075826a0d689a27f232e8cee315efa053/markdown-3.10.1.tar.gz", hash = "sha256:1c19c10bd5c14ac948c53d0d762a04e2fa35a6d58a6b7b1e6bfcbe6fefc0001a", size = 365402, upload-time = "2026-01-21T18:09:28.206Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/70/81/54e3ce63502cd085a0c556652a4e1b919c45a446bd1e5300e10c44c8c521/markdown-3.10-py3-none-any.whl", hash = "sha256:b5b99d6951e2e4948d939255596523444c0e677c669700b1d17aa4a8a464cb7c", size = 107678, upload-time = "2025-11-03T19:51:13.887Z" }, + { url = "https://files.pythonhosted.org/packages/59/1b/6ef961f543593969d25b2afe57a3564200280528caa9bd1082eecdd7b3bc/markdown-3.10.1-py3-none-any.whl", hash = "sha256:867d788939fe33e4b736426f5b9f651ad0c0ae0ecf89df0ca5d1176c70812fe3", size = 107684, upload-time = "2026-01-21T18:09:27.203Z" }, ] [[package]] @@ -2402,65 +2145,65 @@ wheels = [ [[package]] name = "multidict" -version = "6.7.0" +version = "6.7.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/80/1e/5492c365f222f907de1039b91f922b93fa4f764c713ee858d235495d8f50/multidict-6.7.0.tar.gz", hash = "sha256:c6e99d9a65ca282e578dfea819cfa9c0a62b2499d8677392e09feaf305e9e6f5", size = 101834, upload-time = "2025-10-06T14:52:30.657Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/9e/9f61ac18d9c8b475889f32ccfa91c9f59363480613fc807b6e3023d6f60b/multidict-6.7.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8a3862568a36d26e650a19bb5cbbba14b71789032aebc0423f8cc5f150730184", size = 76877, upload-time = "2025-10-06T14:49:20.884Z" }, - { url = "https://files.pythonhosted.org/packages/38/6f/614f09a04e6184f8824268fce4bc925e9849edfa654ddd59f0b64508c595/multidict-6.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:960c60b5849b9b4f9dcc9bea6e3626143c252c74113df2c1540aebce70209b45", size = 45467, upload-time = "2025-10-06T14:49:22.054Z" }, - { url = "https://files.pythonhosted.org/packages/b3/93/c4f67a436dd026f2e780c433277fff72be79152894d9fc36f44569cab1a6/multidict-6.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2049be98fb57a31b4ccf870bf377af2504d4ae35646a19037ec271e4c07998aa", size = 43834, upload-time = "2025-10-06T14:49:23.566Z" }, - { url = "https://files.pythonhosted.org/packages/7f/f5/013798161ca665e4a422afbc5e2d9e4070142a9ff8905e482139cd09e4d0/multidict-6.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:0934f3843a1860dd465d38895c17fce1f1cb37295149ab05cd1b9a03afacb2a7", size = 250545, upload-time = "2025-10-06T14:49:24.882Z" }, - { url = "https://files.pythonhosted.org/packages/71/2f/91dbac13e0ba94669ea5119ba267c9a832f0cb65419aca75549fcf09a3dc/multidict-6.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b3e34f3a1b8131ba06f1a73adab24f30934d148afcd5f5de9a73565a4404384e", size = 258305, upload-time = "2025-10-06T14:49:26.778Z" }, - { url = "https://files.pythonhosted.org/packages/ef/b0/754038b26f6e04488b48ac621f779c341338d78503fb45403755af2df477/multidict-6.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:efbb54e98446892590dc2458c19c10344ee9a883a79b5cec4bc34d6656e8d546", size = 242363, upload-time = "2025-10-06T14:49:28.562Z" }, - { url = "https://files.pythonhosted.org/packages/87/15/9da40b9336a7c9fa606c4cf2ed80a649dffeb42b905d4f63a1d7eb17d746/multidict-6.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a35c5fc61d4f51eb045061e7967cfe3123d622cd500e8868e7c0c592a09fedc4", size = 268375, upload-time = "2025-10-06T14:49:29.96Z" }, - { url = "https://files.pythonhosted.org/packages/82/72/c53fcade0cc94dfaad583105fd92b3a783af2091eddcb41a6d5a52474000/multidict-6.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29fe6740ebccba4175af1b9b87bf553e9c15cd5868ee967e010efcf94e4fd0f1", size = 269346, upload-time = "2025-10-06T14:49:31.404Z" }, - { url = "https://files.pythonhosted.org/packages/0d/e2/9baffdae21a76f77ef8447f1a05a96ec4bc0a24dae08767abc0a2fe680b8/multidict-6.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:123e2a72e20537add2f33a79e605f6191fba2afda4cbb876e35c1a7074298a7d", size = 256107, upload-time = "2025-10-06T14:49:32.974Z" }, - { url = "https://files.pythonhosted.org/packages/3c/06/3f06f611087dc60d65ef775f1fb5aca7c6d61c6db4990e7cda0cef9b1651/multidict-6.7.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b284e319754366c1aee2267a2036248b24eeb17ecd5dc16022095e747f2f4304", size = 253592, upload-time = "2025-10-06T14:49:34.52Z" }, - { url = "https://files.pythonhosted.org/packages/20/24/54e804ec7945b6023b340c412ce9c3f81e91b3bf5fa5ce65558740141bee/multidict-6.7.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:803d685de7be4303b5a657b76e2f6d1240e7e0a8aa2968ad5811fa2285553a12", size = 251024, upload-time = "2025-10-06T14:49:35.956Z" }, - { url = "https://files.pythonhosted.org/packages/14/48/011cba467ea0b17ceb938315d219391d3e421dfd35928e5dbdc3f4ae76ef/multidict-6.7.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c04a328260dfd5db8c39538f999f02779012268f54614902d0afc775d44e0a62", size = 251484, upload-time = "2025-10-06T14:49:37.631Z" }, - { url = "https://files.pythonhosted.org/packages/0d/2f/919258b43bb35b99fa127435cfb2d91798eb3a943396631ef43e3720dcf4/multidict-6.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8a19cdb57cd3df4cd865849d93ee14920fb97224300c88501f16ecfa2604b4e0", size = 263579, upload-time = "2025-10-06T14:49:39.502Z" }, - { url = "https://files.pythonhosted.org/packages/31/22/a0e884d86b5242b5a74cf08e876bdf299e413016b66e55511f7a804a366e/multidict-6.7.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b2fd74c52accced7e75de26023b7dccee62511a600e62311b918ec5c168fc2a", size = 259654, upload-time = "2025-10-06T14:49:41.32Z" }, - { url = "https://files.pythonhosted.org/packages/b2/e5/17e10e1b5c5f5a40f2fcbb45953c9b215f8a4098003915e46a93f5fcaa8f/multidict-6.7.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3e8bfdd0e487acf992407a140d2589fe598238eaeffa3da8448d63a63cd363f8", size = 251511, upload-time = "2025-10-06T14:49:46.021Z" }, - { url = "https://files.pythonhosted.org/packages/e3/9a/201bb1e17e7af53139597069c375e7b0dcbd47594604f65c2d5359508566/multidict-6.7.0-cp312-cp312-win32.whl", hash = "sha256:dd32a49400a2c3d52088e120ee00c1e3576cbff7e10b98467962c74fdb762ed4", size = 41895, upload-time = "2025-10-06T14:49:48.718Z" }, - { url = "https://files.pythonhosted.org/packages/46/e2/348cd32faad84eaf1d20cce80e2bb0ef8d312c55bca1f7fa9865e7770aaf/multidict-6.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:92abb658ef2d7ef22ac9f8bb88e8b6c3e571671534e029359b6d9e845923eb1b", size = 46073, upload-time = "2025-10-06T14:49:50.28Z" }, - { url = "https://files.pythonhosted.org/packages/25/ec/aad2613c1910dce907480e0c3aa306905830f25df2e54ccc9dea450cb5aa/multidict-6.7.0-cp312-cp312-win_arm64.whl", hash = "sha256:490dab541a6a642ce1a9d61a4781656b346a55c13038f0b1244653828e3a83ec", size = 43226, upload-time = "2025-10-06T14:49:52.304Z" }, - { url = "https://files.pythonhosted.org/packages/d2/86/33272a544eeb36d66e4d9a920602d1a2f57d4ebea4ef3cdfe5a912574c95/multidict-6.7.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:bee7c0588aa0076ce77c0ea5d19a68d76ad81fcd9fe8501003b9a24f9d4000f6", size = 76135, upload-time = "2025-10-06T14:49:54.26Z" }, - { url = "https://files.pythonhosted.org/packages/91/1c/eb97db117a1ebe46d457a3d235a7b9d2e6dcab174f42d1b67663dd9e5371/multidict-6.7.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7ef6b61cad77091056ce0e7ce69814ef72afacb150b7ac6a3e9470def2198159", size = 45117, upload-time = "2025-10-06T14:49:55.82Z" }, - { url = "https://files.pythonhosted.org/packages/f1/d8/6c3442322e41fb1dd4de8bd67bfd11cd72352ac131f6368315617de752f1/multidict-6.7.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c0359b1ec12b1d6849c59f9d319610b7f20ef990a6d454ab151aa0e3b9f78ca", size = 43472, upload-time = "2025-10-06T14:49:57.048Z" }, - { url = "https://files.pythonhosted.org/packages/75/3f/e2639e80325af0b6c6febdf8e57cc07043ff15f57fa1ef808f4ccb5ac4cd/multidict-6.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cd240939f71c64bd658f186330603aac1a9a81bf6273f523fca63673cb7378a8", size = 249342, upload-time = "2025-10-06T14:49:58.368Z" }, - { url = "https://files.pythonhosted.org/packages/5d/cc/84e0585f805cbeaa9cbdaa95f9a3d6aed745b9d25700623ac89a6ecff400/multidict-6.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a60a4d75718a5efa473ebd5ab685786ba0c67b8381f781d1be14da49f1a2dc60", size = 257082, upload-time = "2025-10-06T14:49:59.89Z" }, - { url = "https://files.pythonhosted.org/packages/b0/9c/ac851c107c92289acbbf5cfb485694084690c1b17e555f44952c26ddc5bd/multidict-6.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:53a42d364f323275126aff81fb67c5ca1b7a04fda0546245730a55c8c5f24bc4", size = 240704, upload-time = "2025-10-06T14:50:01.485Z" }, - { url = "https://files.pythonhosted.org/packages/50/cc/5f93e99427248c09da95b62d64b25748a5f5c98c7c2ab09825a1d6af0e15/multidict-6.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3b29b980d0ddbecb736735ee5bef69bb2ddca56eff603c86f3f29a1128299b4f", size = 266355, upload-time = "2025-10-06T14:50:02.955Z" }, - { url = "https://files.pythonhosted.org/packages/ec/0c/2ec1d883ceb79c6f7f6d7ad90c919c898f5d1c6ea96d322751420211e072/multidict-6.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f8a93b1c0ed2d04b97a5e9336fd2d33371b9a6e29ab7dd6503d63407c20ffbaf", size = 267259, upload-time = "2025-10-06T14:50:04.446Z" }, - { url = "https://files.pythonhosted.org/packages/c6/2d/f0b184fa88d6630aa267680bdb8623fb69cb0d024b8c6f0d23f9a0f406d3/multidict-6.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ff96e8815eecacc6645da76c413eb3b3d34cfca256c70b16b286a687d013c32", size = 254903, upload-time = "2025-10-06T14:50:05.98Z" }, - { url = "https://files.pythonhosted.org/packages/06/c9/11ea263ad0df7dfabcad404feb3c0dd40b131bc7f232d5537f2fb1356951/multidict-6.7.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7516c579652f6a6be0e266aec0acd0db80829ca305c3d771ed898538804c2036", size = 252365, upload-time = "2025-10-06T14:50:07.511Z" }, - { url = "https://files.pythonhosted.org/packages/41/88/d714b86ee2c17d6e09850c70c9d310abac3d808ab49dfa16b43aba9d53fd/multidict-6.7.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:040f393368e63fb0f3330e70c26bfd336656bed925e5cbe17c9da839a6ab13ec", size = 250062, upload-time = "2025-10-06T14:50:09.074Z" }, - { url = "https://files.pythonhosted.org/packages/15/fe/ad407bb9e818c2b31383f6131ca19ea7e35ce93cf1310fce69f12e89de75/multidict-6.7.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b3bc26a951007b1057a1c543af845f1c7e3e71cc240ed1ace7bf4484aa99196e", size = 249683, upload-time = "2025-10-06T14:50:10.714Z" }, - { url = "https://files.pythonhosted.org/packages/8c/a4/a89abdb0229e533fb925e7c6e5c40201c2873efebc9abaf14046a4536ee6/multidict-6.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7b022717c748dd1992a83e219587aabe45980d88969f01b316e78683e6285f64", size = 261254, upload-time = "2025-10-06T14:50:12.28Z" }, - { url = "https://files.pythonhosted.org/packages/8d/aa/0e2b27bd88b40a4fb8dc53dd74eecac70edaa4c1dd0707eb2164da3675b3/multidict-6.7.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:9600082733859f00d79dee64effc7aef1beb26adb297416a4ad2116fd61374bd", size = 257967, upload-time = "2025-10-06T14:50:14.16Z" }, - { url = "https://files.pythonhosted.org/packages/d0/8e/0c67b7120d5d5f6d874ed85a085f9dc770a7f9d8813e80f44a9fec820bb7/multidict-6.7.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:94218fcec4d72bc61df51c198d098ce2b378e0ccbac41ddbed5ef44092913288", size = 250085, upload-time = "2025-10-06T14:50:15.639Z" }, - { url = "https://files.pythonhosted.org/packages/ba/55/b73e1d624ea4b8fd4dd07a3bb70f6e4c7c6c5d9d640a41c6ffe5cdbd2a55/multidict-6.7.0-cp313-cp313-win32.whl", hash = "sha256:a37bd74c3fa9d00be2d7b8eca074dc56bd8077ddd2917a839bd989612671ed17", size = 41713, upload-time = "2025-10-06T14:50:17.066Z" }, - { url = "https://files.pythonhosted.org/packages/32/31/75c59e7d3b4205075b4c183fa4ca398a2daf2303ddf616b04ae6ef55cffe/multidict-6.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:30d193c6cc6d559db42b6bcec8a5d395d34d60c9877a0b71ecd7c204fcf15390", size = 45915, upload-time = "2025-10-06T14:50:18.264Z" }, - { url = "https://files.pythonhosted.org/packages/31/2a/8987831e811f1184c22bc2e45844934385363ee61c0a2dcfa8f71b87e608/multidict-6.7.0-cp313-cp313-win_arm64.whl", hash = "sha256:ea3334cabe4d41b7ccd01e4d349828678794edbc2d3ae97fc162a3312095092e", size = 43077, upload-time = "2025-10-06T14:50:19.853Z" }, - { url = "https://files.pythonhosted.org/packages/e8/68/7b3a5170a382a340147337b300b9eb25a9ddb573bcdfff19c0fa3f31ffba/multidict-6.7.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:ad9ce259f50abd98a1ca0aa6e490b58c316a0fce0617f609723e40804add2c00", size = 83114, upload-time = "2025-10-06T14:50:21.223Z" }, - { url = "https://files.pythonhosted.org/packages/55/5c/3fa2d07c84df4e302060f555bbf539310980362236ad49f50eeb0a1c1eb9/multidict-6.7.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07f5594ac6d084cbb5de2df218d78baf55ef150b91f0ff8a21cc7a2e3a5a58eb", size = 48442, upload-time = "2025-10-06T14:50:22.871Z" }, - { url = "https://files.pythonhosted.org/packages/fc/56/67212d33239797f9bd91962bb899d72bb0f4c35a8652dcdb8ed049bef878/multidict-6.7.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0591b48acf279821a579282444814a2d8d0af624ae0bc600aa4d1b920b6e924b", size = 46885, upload-time = "2025-10-06T14:50:24.258Z" }, - { url = "https://files.pythonhosted.org/packages/46/d1/908f896224290350721597a61a69cd19b89ad8ee0ae1f38b3f5cd12ea2ac/multidict-6.7.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:749a72584761531d2b9467cfbdfd29487ee21124c304c4b6cb760d8777b27f9c", size = 242588, upload-time = "2025-10-06T14:50:25.716Z" }, - { url = "https://files.pythonhosted.org/packages/ab/67/8604288bbd68680eee0ab568fdcb56171d8b23a01bcd5cb0c8fedf6e5d99/multidict-6.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b4c3d199f953acd5b446bf7c0de1fe25d94e09e79086f8dc2f48a11a129cdf1", size = 249966, upload-time = "2025-10-06T14:50:28.192Z" }, - { url = "https://files.pythonhosted.org/packages/20/33/9228d76339f1ba51e3efef7da3ebd91964d3006217aae13211653193c3ff/multidict-6.7.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9fb0211dfc3b51efea2f349ec92c114d7754dd62c01f81c3e32b765b70c45c9b", size = 228618, upload-time = "2025-10-06T14:50:29.82Z" }, - { url = "https://files.pythonhosted.org/packages/f8/2d/25d9b566d10cab1c42b3b9e5b11ef79c9111eaf4463b8c257a3bd89e0ead/multidict-6.7.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a027ec240fe73a8d6281872690b988eed307cd7d91b23998ff35ff577ca688b5", size = 257539, upload-time = "2025-10-06T14:50:31.731Z" }, - { url = "https://files.pythonhosted.org/packages/b6/b1/8d1a965e6637fc33de3c0d8f414485c2b7e4af00f42cab3d84e7b955c222/multidict-6.7.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1d964afecdf3a8288789df2f5751dc0a8261138c3768d9af117ed384e538fad", size = 256345, upload-time = "2025-10-06T14:50:33.26Z" }, - { url = "https://files.pythonhosted.org/packages/ba/0c/06b5a8adbdeedada6f4fb8d8f193d44a347223b11939b42953eeb6530b6b/multidict-6.7.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:caf53b15b1b7df9fbd0709aa01409000a2b4dd03a5f6f5cc548183c7c8f8b63c", size = 247934, upload-time = "2025-10-06T14:50:34.808Z" }, - { url = "https://files.pythonhosted.org/packages/8f/31/b2491b5fe167ca044c6eb4b8f2c9f3b8a00b24c432c365358eadac5d7625/multidict-6.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:654030da3197d927f05a536a66186070e98765aa5142794c9904555d3a9d8fb5", size = 245243, upload-time = "2025-10-06T14:50:36.436Z" }, - { url = "https://files.pythonhosted.org/packages/61/1a/982913957cb90406c8c94f53001abd9eafc271cb3e70ff6371590bec478e/multidict-6.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:2090d3718829d1e484706a2f525e50c892237b2bf9b17a79b059cb98cddc2f10", size = 235878, upload-time = "2025-10-06T14:50:37.953Z" }, - { url = "https://files.pythonhosted.org/packages/be/c0/21435d804c1a1cf7a2608593f4d19bca5bcbd7a81a70b253fdd1c12af9c0/multidict-6.7.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:2d2cfeec3f6f45651b3d408c4acec0ebf3daa9bc8a112a084206f5db5d05b754", size = 243452, upload-time = "2025-10-06T14:50:39.574Z" }, - { url = "https://files.pythonhosted.org/packages/54/0a/4349d540d4a883863191be6eb9a928846d4ec0ea007d3dcd36323bb058ac/multidict-6.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:4ef089f985b8c194d341eb2c24ae6e7408c9a0e2e5658699c92f497437d88c3c", size = 252312, upload-time = "2025-10-06T14:50:41.612Z" }, - { url = "https://files.pythonhosted.org/packages/26/64/d5416038dbda1488daf16b676e4dbfd9674dde10a0cc8f4fc2b502d8125d/multidict-6.7.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e93a0617cd16998784bf4414c7e40f17a35d2350e5c6f0bd900d3a8e02bd3762", size = 246935, upload-time = "2025-10-06T14:50:43.972Z" }, - { url = "https://files.pythonhosted.org/packages/9f/8c/8290c50d14e49f35e0bd4abc25e1bc7711149ca9588ab7d04f886cdf03d9/multidict-6.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f0feece2ef8ebc42ed9e2e8c78fc4aa3cf455733b507c09ef7406364c94376c6", size = 243385, upload-time = "2025-10-06T14:50:45.648Z" }, - { url = "https://files.pythonhosted.org/packages/ef/a0/f83ae75e42d694b3fbad3e047670e511c138be747bc713cf1b10d5096416/multidict-6.7.0-cp313-cp313t-win32.whl", hash = "sha256:19a1d55338ec1be74ef62440ca9e04a2f001a04d0cc49a4983dc320ff0f3212d", size = 47777, upload-time = "2025-10-06T14:50:47.154Z" }, - { url = "https://files.pythonhosted.org/packages/dc/80/9b174a92814a3830b7357307a792300f42c9e94664b01dee8e457551fa66/multidict-6.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:3da4fb467498df97e986af166b12d01f05d2e04f978a9c1c680ea1988e0bc4b6", size = 53104, upload-time = "2025-10-06T14:50:48.851Z" }, - { url = "https://files.pythonhosted.org/packages/cc/28/04baeaf0428d95bb7a7bea0e691ba2f31394338ba424fb0679a9ed0f4c09/multidict-6.7.0-cp313-cp313t-win_arm64.whl", hash = "sha256:b4121773c49a0776461f4a904cdf6264c88e42218aaa8407e803ca8025872792", size = 45503, upload-time = "2025-10-06T14:50:50.16Z" }, - { url = "https://files.pythonhosted.org/packages/b7/da/7d22601b625e241d4f23ef1ebff8acfc60da633c9e7e7922e24d10f592b3/multidict-6.7.0-py3-none-any.whl", hash = "sha256:394fc5c42a333c9ffc3e421a4c85e08580d990e08b99f6bf35b4132114c5dcb3", size = 12317, upload-time = "2025-10-06T14:52:29.272Z" }, + { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" }, + { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" }, + { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" }, + { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" }, + { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" }, + { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" }, + { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" }, + { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" }, + { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" }, + { url = "https://files.pythonhosted.org/packages/f2/22/929c141d6c0dba87d3e1d38fbdf1ba8baba86b7776469f2bc2d3227a1e67/multidict-6.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2b41f5fed0ed563624f1c17630cb9941cf2309d4df00e494b551b5f3e3d67a23", size = 76174, upload-time = "2026-01-26T02:44:18.509Z" }, + { url = "https://files.pythonhosted.org/packages/c7/75/bc704ae15fee974f8fccd871305e254754167dce5f9e42d88a2def741a1d/multidict-6.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84e61e3af5463c19b67ced91f6c634effb89ef8bfc5ca0267f954451ed4bb6a2", size = 45116, upload-time = "2026-01-26T02:44:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/79/76/55cd7186f498ed080a18440c9013011eb548f77ae1b297206d030eb1180a/multidict-6.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:935434b9853c7c112eee7ac891bc4cb86455aa631269ae35442cb316790c1445", size = 43524, upload-time = "2026-01-26T02:44:21.571Z" }, + { url = "https://files.pythonhosted.org/packages/e9/3c/414842ef8d5a1628d68edee29ba0e5bcf235dbfb3ccd3ea303a7fe8c72ff/multidict-6.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:432feb25a1cb67fe82a9680b4d65fb542e4635cb3166cd9c01560651ad60f177", size = 249368, upload-time = "2026-01-26T02:44:22.803Z" }, + { url = "https://files.pythonhosted.org/packages/f6/32/befed7f74c458b4a525e60519fe8d87eef72bb1e99924fa2b0f9d97a221e/multidict-6.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e82d14e3c948952a1a85503817e038cba5905a3352de76b9a465075d072fba23", size = 256952, upload-time = "2026-01-26T02:44:24.306Z" }, + { url = "https://files.pythonhosted.org/packages/03/d6/c878a44ba877f366630c860fdf74bfb203c33778f12b6ac274936853c451/multidict-6.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4cfb48c6ea66c83bcaaf7e4dfa7ec1b6bbcf751b7db85a328902796dfde4c060", size = 240317, upload-time = "2026-01-26T02:44:25.772Z" }, + { url = "https://files.pythonhosted.org/packages/68/49/57421b4d7ad2e9e60e25922b08ceb37e077b90444bde6ead629095327a6f/multidict-6.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1d540e51b7e8e170174555edecddbd5538105443754539193e3e1061864d444d", size = 267132, upload-time = "2026-01-26T02:44:27.648Z" }, + { url = "https://files.pythonhosted.org/packages/b7/fe/ec0edd52ddbcea2a2e89e174f0206444a61440b40f39704e64dc807a70bd/multidict-6.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:273d23f4b40f3dce4d6c8a821c741a86dec62cded82e1175ba3d99be128147ed", size = 268140, upload-time = "2026-01-26T02:44:29.588Z" }, + { url = "https://files.pythonhosted.org/packages/b0/73/6e1b01cbeb458807aa0831742232dbdd1fa92bfa33f52a3f176b4ff3dc11/multidict-6.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d624335fd4fa1c08a53f8b4be7676ebde19cd092b3895c421045ca87895b429", size = 254277, upload-time = "2026-01-26T02:44:30.902Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b2/5fb8c124d7561a4974c342bc8c778b471ebbeb3cc17df696f034a7e9afe7/multidict-6.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:12fad252f8b267cc75b66e8fc51b3079604e8d43a75428ffe193cd9e2195dfd6", size = 252291, upload-time = "2026-01-26T02:44:32.31Z" }, + { url = "https://files.pythonhosted.org/packages/5a/96/51d4e4e06bcce92577fcd488e22600bd38e4fd59c20cb49434d054903bd2/multidict-6.7.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:03ede2a6ffbe8ef936b92cb4529f27f42be7f56afcdab5ab739cd5f27fb1cbf9", size = 250156, upload-time = "2026-01-26T02:44:33.734Z" }, + { url = "https://files.pythonhosted.org/packages/db/6b/420e173eec5fba721a50e2a9f89eda89d9c98fded1124f8d5c675f7a0c0f/multidict-6.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:90efbcf47dbe33dcf643a1e400d67d59abeac5db07dc3f27d6bdeae497a2198c", size = 249742, upload-time = "2026-01-26T02:44:35.222Z" }, + { url = "https://files.pythonhosted.org/packages/44/a3/ec5b5bd98f306bc2aa297b8c6f11a46714a56b1e6ef5ebda50a4f5d7c5fb/multidict-6.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c4b9bfc148f5a91be9244d6264c53035c8a0dcd2f51f1c3c6e30e30ebaa1c84", size = 262221, upload-time = "2026-01-26T02:44:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/cd/f7/e8c0d0da0cd1e28d10e624604e1a36bcc3353aaebdfdc3a43c72bc683a12/multidict-6.7.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:401c5a650f3add2472d1d288c26deebc540f99e2fb83e9525007a74cd2116f1d", size = 258664, upload-time = "2026-01-26T02:44:38.008Z" }, + { url = "https://files.pythonhosted.org/packages/52/da/151a44e8016dd33feed44f730bd856a66257c1ee7aed4f44b649fb7edeb3/multidict-6.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:97891f3b1b3ffbded884e2916cacf3c6fc87b66bb0dde46f7357404750559f33", size = 249490, upload-time = "2026-01-26T02:44:39.386Z" }, + { url = "https://files.pythonhosted.org/packages/87/af/a3b86bf9630b732897f6fc3f4c4714b90aa4361983ccbdcd6c0339b21b0c/multidict-6.7.1-cp313-cp313-win32.whl", hash = "sha256:e1c5988359516095535c4301af38d8a8838534158f649c05dd1050222321bcb3", size = 41695, upload-time = "2026-01-26T02:44:41.318Z" }, + { url = "https://files.pythonhosted.org/packages/b2/35/e994121b0e90e46134673422dd564623f93304614f5d11886b1b3e06f503/multidict-6.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:960c83bf01a95b12b08fd54324a4eb1d5b52c88932b5cba5d6e712bb3ed12eb5", size = 45884, upload-time = "2026-01-26T02:44:42.488Z" }, + { url = "https://files.pythonhosted.org/packages/ca/61/42d3e5dbf661242a69c97ea363f2d7b46c567da8eadef8890022be6e2ab0/multidict-6.7.1-cp313-cp313-win_arm64.whl", hash = "sha256:563fe25c678aaba333d5399408f5ec3c383ca5b663e7f774dd179a520b8144df", size = 43122, upload-time = "2026-01-26T02:44:43.664Z" }, + { url = "https://files.pythonhosted.org/packages/6d/b3/e6b21c6c4f314bb956016b0b3ef2162590a529b84cb831c257519e7fde44/multidict-6.7.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:c76c4bec1538375dad9d452d246ca5368ad6e1c9039dadcf007ae59c70619ea1", size = 83175, upload-time = "2026-01-26T02:44:44.894Z" }, + { url = "https://files.pythonhosted.org/packages/fb/76/23ecd2abfe0957b234f6c960f4ade497f55f2c16aeb684d4ecdbf1c95791/multidict-6.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:57b46b24b5d5ebcc978da4ec23a819a9402b4228b8a90d9c656422b4bdd8a963", size = 48460, upload-time = "2026-01-26T02:44:46.106Z" }, + { url = "https://files.pythonhosted.org/packages/c4/57/a0ed92b23f3a042c36bc4227b72b97eca803f5f1801c1ab77c8a212d455e/multidict-6.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e954b24433c768ce78ab7929e84ccf3422e46deb45a4dc9f93438f8217fa2d34", size = 46930, upload-time = "2026-01-26T02:44:47.278Z" }, + { url = "https://files.pythonhosted.org/packages/b5/66/02ec7ace29162e447f6382c495dc95826bf931d3818799bbef11e8f7df1a/multidict-6.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3bd231490fa7217cc832528e1cd8752a96f0125ddd2b5749390f7c3ec8721b65", size = 242582, upload-time = "2026-01-26T02:44:48.604Z" }, + { url = "https://files.pythonhosted.org/packages/58/18/64f5a795e7677670e872673aca234162514696274597b3708b2c0d276cce/multidict-6.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:253282d70d67885a15c8a7716f3a73edf2d635793ceda8173b9ecc21f2fb8292", size = 250031, upload-time = "2026-01-26T02:44:50.544Z" }, + { url = "https://files.pythonhosted.org/packages/c8/ed/e192291dbbe51a8290c5686f482084d31bcd9d09af24f63358c3d42fd284/multidict-6.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0b4c48648d7649c9335cf1927a8b87fa692de3dcb15faa676c6a6f1f1aabda43", size = 228596, upload-time = "2026-01-26T02:44:51.951Z" }, + { url = "https://files.pythonhosted.org/packages/1e/7e/3562a15a60cf747397e7f2180b0a11dc0c38d9175a650e75fa1b4d325e15/multidict-6.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:98bc624954ec4d2c7cb074b8eefc2b5d0ce7d482e410df446414355d158fe4ca", size = 257492, upload-time = "2026-01-26T02:44:53.902Z" }, + { url = "https://files.pythonhosted.org/packages/24/02/7d0f9eae92b5249bb50ac1595b295f10e263dd0078ebb55115c31e0eaccd/multidict-6.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b99af4d9eec0b49927b4402bcbb58dea89d3e0db8806a4086117019939ad3dd", size = 255899, upload-time = "2026-01-26T02:44:55.316Z" }, + { url = "https://files.pythonhosted.org/packages/00/e3/9b60ed9e23e64c73a5cde95269ef1330678e9c6e34dd4eb6b431b85b5a10/multidict-6.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6aac4f16b472d5b7dc6f66a0d49dd57b0e0902090be16594dc9ebfd3d17c47e7", size = 247970, upload-time = "2026-01-26T02:44:56.783Z" }, + { url = "https://files.pythonhosted.org/packages/3e/06/538e58a63ed5cfb0bd4517e346b91da32fde409d839720f664e9a4ae4f9d/multidict-6.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:21f830fe223215dffd51f538e78c172ed7c7f60c9b96a2bf05c4848ad49921c3", size = 245060, upload-time = "2026-01-26T02:44:58.195Z" }, + { url = "https://files.pythonhosted.org/packages/b2/2f/d743a3045a97c895d401e9bd29aaa09b94f5cbdf1bd561609e5a6c431c70/multidict-6.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f5dd81c45b05518b9aa4da4aa74e1c93d715efa234fd3e8a179df611cc85e5f4", size = 235888, upload-time = "2026-01-26T02:44:59.57Z" }, + { url = "https://files.pythonhosted.org/packages/38/83/5a325cac191ab28b63c52f14f1131f3b0a55ba3b9aa65a6d0bf2a9b921a0/multidict-6.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:eb304767bca2bb92fb9c5bd33cedc95baee5bb5f6c88e63706533a1c06ad08c8", size = 243554, upload-time = "2026-01-26T02:45:01.054Z" }, + { url = "https://files.pythonhosted.org/packages/20/1f/9d2327086bd15da2725ef6aae624208e2ef828ed99892b17f60c344e57ed/multidict-6.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c9035dde0f916702850ef66460bc4239d89d08df4d02023a5926e7446724212c", size = 252341, upload-time = "2026-01-26T02:45:02.484Z" }, + { url = "https://files.pythonhosted.org/packages/e8/2c/2a1aa0280cf579d0f6eed8ee5211c4f1730bd7e06c636ba2ee6aafda302e/multidict-6.7.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:af959b9beeb66c822380f222f0e0a1889331597e81f1ded7f374f3ecb0fd6c52", size = 246391, upload-time = "2026-01-26T02:45:03.862Z" }, + { url = "https://files.pythonhosted.org/packages/e5/03/7ca022ffc36c5a3f6e03b179a5ceb829be9da5783e6fe395f347c0794680/multidict-6.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:41f2952231456154ee479651491e94118229844dd7226541788be783be2b5108", size = 243422, upload-time = "2026-01-26T02:45:05.296Z" }, + { url = "https://files.pythonhosted.org/packages/dc/1d/b31650eab6c5778aceed46ba735bd97f7c7d2f54b319fa916c0f96e7805b/multidict-6.7.1-cp313-cp313t-win32.whl", hash = "sha256:df9f19c28adcb40b6aae30bbaa1478c389efd50c28d541d76760199fc1037c32", size = 47770, upload-time = "2026-01-26T02:45:06.754Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5b/2d2d1d522e51285bd61b1e20df8f47ae1a9d80839db0b24ea783b3832832/multidict-6.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d54ecf9f301853f2c5e802da559604b3e95bb7a3b01a9c295c6ee591b9882de8", size = 53109, upload-time = "2026-01-26T02:45:08.044Z" }, + { url = "https://files.pythonhosted.org/packages/3d/a3/cc409ba012c83ca024a308516703cf339bdc4b696195644a7215a5164a24/multidict-6.7.1-cp313-cp313t-win_arm64.whl", hash = "sha256:5a37ca18e360377cfda1d62f5f382ff41f2b8c4ccb329ed974cc2e1643440118", size = 45573, upload-time = "2026-01-26T02:45:09.349Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, ] [[package]] @@ -2529,7 +2272,7 @@ wheels = [ [[package]] name = "notebook" -version = "7.5.1" +version = "7.5.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jupyter-server" }, @@ -2538,9 +2281,9 @@ dependencies = [ { name = "notebook-shim" }, { name = "tornado" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8a/a9/882707b0aa639e6d7d3e7df4bfbe07479d832e9a8f02d8471002a4ea6d65/notebook-7.5.1.tar.gz", hash = "sha256:b2fb4cef4d47d08c33aecce1c6c6e84be05436fbd791f88fce8df9fbca088b75", size = 14058696, upload-time = "2025-12-16T07:38:59.223Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b8/cb/cc7f4df5cee315dd126a47eb60890690a0438d5e0dd40c32d60ce16de377/notebook-7.5.3.tar.gz", hash = "sha256:393ceb269cf9fdb02a3be607a57d7bd5c2c14604f1818a17dbeb38e04f98cbfa", size = 14073140, upload-time = "2026-01-26T07:28:36.605Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/86/ca516cb58ad2cb2064124d31cf0fd8b012fca64bebeb26da2d2ddf03fc79/notebook-7.5.1-py3-none-any.whl", hash = "sha256:f4e2451c19910c33b88709b84537e11f6368c1cdff1aa0c43db701aea535dd44", size = 14468080, upload-time = "2025-12-16T07:38:55.644Z" }, + { url = "https://files.pythonhosted.org/packages/96/98/9286e7f35e5584ebb79f997f2fb0cb66745c86f6c5fccf15ba32aac5e908/notebook-7.5.3-py3-none-any.whl", hash = "sha256:c997bfa1a2a9eb58c9bbb7e77d50428befb1033dd6f02c482922e96851d67354", size = 14481744, upload-time = "2026-01-26T07:28:31.867Z" }, ] [[package]] @@ -2557,42 +2300,42 @@ wheels = [ [[package]] name = "numpy" -version = "2.4.0" +version = "2.4.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a4/7a/6a3d14e205d292b738db449d0de649b373a59edb0d0b4493821d0a3e8718/numpy-2.4.0.tar.gz", hash = "sha256:6e504f7b16118198f138ef31ba24d985b124c2c469fe8467007cf30fd992f934", size = 20685720, upload-time = "2025-12-20T16:18:19.023Z" } +sdist = { url = "https://files.pythonhosted.org/packages/24/62/ae72ff66c0f1fd959925b4c11f8c2dea61f47f6acaea75a08512cdfe3fed/numpy-2.4.1.tar.gz", hash = "sha256:a1ceafc5042451a858231588a104093474c6a5c57dcc724841f5c888d237d690", size = 20721320, upload-time = "2026-01-10T06:44:59.619Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8b/ff/f6400ffec95de41c74b8e73df32e3fff1830633193a7b1e409be7fb1bb8c/numpy-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2a8b6bb8369abefb8bd1801b054ad50e02b3275c8614dc6e5b0373c305291037", size = 16653117, upload-time = "2025-12-20T16:16:06.709Z" }, - { url = "https://files.pythonhosted.org/packages/fd/28/6c23e97450035072e8d830a3c411bf1abd1f42c611ff9d29e3d8f55c6252/numpy-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2e284ca13d5a8367e43734148622caf0b261b275673823593e3e3634a6490f83", size = 12369711, upload-time = "2025-12-20T16:16:08.758Z" }, - { url = "https://files.pythonhosted.org/packages/bc/af/acbef97b630ab1bb45e6a7d01d1452e4251aa88ce680ac36e56c272120ec/numpy-2.4.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:49ff32b09f5aa0cd30a20c2b39db3e669c845589f2b7fc910365210887e39344", size = 5198355, upload-time = "2025-12-20T16:16:10.902Z" }, - { url = "https://files.pythonhosted.org/packages/c1/c8/4e0d436b66b826f2e53330adaa6311f5cac9871a5b5c31ad773b27f25a74/numpy-2.4.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:36cbfb13c152b1c7c184ddac43765db8ad672567e7bafff2cc755a09917ed2e6", size = 6545298, upload-time = "2025-12-20T16:16:12.607Z" }, - { url = "https://files.pythonhosted.org/packages/ef/27/e1f5d144ab54eac34875e79037011d511ac57b21b220063310cb96c80fbc/numpy-2.4.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:35ddc8f4914466e6fc954c76527aa91aa763682a4f6d73249ef20b418fe6effb", size = 14398387, upload-time = "2025-12-20T16:16:14.257Z" }, - { url = "https://files.pythonhosted.org/packages/67/64/4cb909dd5ab09a9a5d086eff9586e69e827b88a5585517386879474f4cf7/numpy-2.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc578891de1db95b2a35001b695451767b580bb45753717498213c5ff3c41d63", size = 16363091, upload-time = "2025-12-20T16:16:17.32Z" }, - { url = "https://files.pythonhosted.org/packages/9d/9c/8efe24577523ec6809261859737cf117b0eb6fdb655abdfdc81b2e468ce4/numpy-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98e81648e0b36e325ab67e46b5400a7a6d4a22b8a7c8e8bbfe20e7db7906bf95", size = 16176394, upload-time = "2025-12-20T16:16:19.524Z" }, - { url = "https://files.pythonhosted.org/packages/61/f0/1687441ece7b47a62e45a1f82015352c240765c707928edd8aef875d5951/numpy-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d57b5046c120561ba8fa8e4030fbb8b822f3063910fa901ffadf16e2b7128ad6", size = 18287378, upload-time = "2025-12-20T16:16:22.866Z" }, - { url = "https://files.pythonhosted.org/packages/d3/6f/f868765d44e6fc466467ed810ba9d8d6db1add7d4a748abfa2a4c99a3194/numpy-2.4.0-cp312-cp312-win32.whl", hash = "sha256:92190db305a6f48734d3982f2c60fa30d6b5ee9bff10f2887b930d7b40119f4c", size = 5955432, upload-time = "2025-12-20T16:16:25.06Z" }, - { url = "https://files.pythonhosted.org/packages/d4/b5/94c1e79fcbab38d1ca15e13777477b2914dd2d559b410f96949d6637b085/numpy-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:680060061adb2d74ce352628cb798cfdec399068aa7f07ba9fb818b2b3305f98", size = 12306201, upload-time = "2025-12-20T16:16:26.979Z" }, - { url = "https://files.pythonhosted.org/packages/70/09/c39dadf0b13bb0768cd29d6a3aaff1fb7c6905ac40e9aaeca26b1c086e06/numpy-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:39699233bc72dd482da1415dcb06076e32f60eddc796a796c5fb6c5efce94667", size = 10308234, upload-time = "2025-12-20T16:16:29.417Z" }, - { url = "https://files.pythonhosted.org/packages/a7/0d/853fd96372eda07c824d24adf02e8bc92bb3731b43a9b2a39161c3667cc4/numpy-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a152d86a3ae00ba5f47b3acf3b827509fd0b6cb7d3259665e63dafbad22a75ea", size = 16649088, upload-time = "2025-12-20T16:16:31.421Z" }, - { url = "https://files.pythonhosted.org/packages/e3/37/cc636f1f2a9f585434e20a3e6e63422f70bfe4f7f6698e941db52ea1ac9a/numpy-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:39b19251dec4de8ff8496cd0806cbe27bf0684f765abb1f4809554de93785f2d", size = 12364065, upload-time = "2025-12-20T16:16:33.491Z" }, - { url = "https://files.pythonhosted.org/packages/ed/69/0b78f37ca3690969beee54103ce5f6021709134e8020767e93ba691a72f1/numpy-2.4.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:009bd0ea12d3c784b6639a8457537016ce5172109e585338e11334f6a7bb88ee", size = 5192640, upload-time = "2025-12-20T16:16:35.636Z" }, - { url = "https://files.pythonhosted.org/packages/1d/2a/08569f8252abf590294dbb09a430543ec8f8cc710383abfb3e75cc73aeda/numpy-2.4.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5fe44e277225fd3dff6882d86d3d447205d43532c3627313d17e754fb3905a0e", size = 6541556, upload-time = "2025-12-20T16:16:37.276Z" }, - { url = "https://files.pythonhosted.org/packages/93/e9/a949885a4e177493d61519377952186b6cbfdf1d6002764c664ba28349b5/numpy-2.4.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f935c4493eda9069851058fa0d9e39dbf6286be690066509305e52912714dbb2", size = 14396562, upload-time = "2025-12-20T16:16:38.953Z" }, - { url = "https://files.pythonhosted.org/packages/99/98/9d4ad53b0e9ef901c2ef1d550d2136f5ac42d3fd2988390a6def32e23e48/numpy-2.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8cfa5f29a695cb7438965e6c3e8d06e0416060cf0d709c1b1c1653a939bf5c2a", size = 16351719, upload-time = "2025-12-20T16:16:41.503Z" }, - { url = "https://files.pythonhosted.org/packages/28/de/5f3711a38341d6e8dd619f6353251a0cdd07f3d6d101a8fd46f4ef87f895/numpy-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ba0cb30acd3ef11c94dc27fbfba68940652492bc107075e7ffe23057f9425681", size = 16176053, upload-time = "2025-12-20T16:16:44.552Z" }, - { url = "https://files.pythonhosted.org/packages/2a/5b/2a3753dc43916501b4183532e7ace862e13211042bceafa253afb5c71272/numpy-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:60e8c196cd82cbbd4f130b5290007e13e6de3eca79f0d4d38014769d96a7c475", size = 18277859, upload-time = "2025-12-20T16:16:47.174Z" }, - { url = "https://files.pythonhosted.org/packages/2c/c5/a18bcdd07a941db3076ef489d036ab16d2bfc2eae0cf27e5a26e29189434/numpy-2.4.0-cp313-cp313-win32.whl", hash = "sha256:5f48cb3e88fbc294dc90e215d86fbaf1c852c63dbdb6c3a3e63f45c4b57f7344", size = 5953849, upload-time = "2025-12-20T16:16:49.554Z" }, - { url = "https://files.pythonhosted.org/packages/4f/f1/719010ff8061da6e8a26e1980cf090412d4f5f8060b31f0c45d77dd67a01/numpy-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:a899699294f28f7be8992853c0c60741f16ff199205e2e6cdca155762cbaa59d", size = 12302840, upload-time = "2025-12-20T16:16:51.227Z" }, - { url = "https://files.pythonhosted.org/packages/f5/5a/b3d259083ed8b4d335270c76966cb6cf14a5d1b69e1a608994ac57a659e6/numpy-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:9198f447e1dc5647d07c9a6bbe2063cc0132728cc7175b39dbc796da5b54920d", size = 10308509, upload-time = "2025-12-20T16:16:53.313Z" }, - { url = "https://files.pythonhosted.org/packages/31/01/95edcffd1bb6c0633df4e808130545c4f07383ab629ac7e316fb44fff677/numpy-2.4.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74623f2ab5cc3f7c886add4f735d1031a1d2be4a4ae63c0546cfd74e7a31ddf6", size = 12491815, upload-time = "2025-12-20T16:16:55.496Z" }, - { url = "https://files.pythonhosted.org/packages/59/ea/5644b8baa92cc1c7163b4b4458c8679852733fa74ca49c942cfa82ded4e0/numpy-2.4.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:0804a8e4ab070d1d35496e65ffd3cf8114c136a2b81f61dfab0de4b218aacfd5", size = 5320321, upload-time = "2025-12-20T16:16:57.468Z" }, - { url = "https://files.pythonhosted.org/packages/26/4e/e10938106d70bc21319bd6a86ae726da37edc802ce35a3a71ecdf1fdfe7f/numpy-2.4.0-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:02a2038eb27f9443a8b266a66911e926566b5a6ffd1a689b588f7f35b81e7dc3", size = 6641635, upload-time = "2025-12-20T16:16:59.379Z" }, - { url = "https://files.pythonhosted.org/packages/b3/8d/a8828e3eaf5c0b4ab116924df82f24ce3416fa38d0674d8f708ddc6c8aac/numpy-2.4.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1889b3a3f47a7b5bee16bc25a2145bd7cb91897f815ce3499db64c7458b6d91d", size = 14456053, upload-time = "2025-12-20T16:17:01.768Z" }, - { url = "https://files.pythonhosted.org/packages/68/a1/17d97609d87d4520aa5ae2dcfb32305654550ac6a35effb946d303e594ce/numpy-2.4.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85eef4cb5625c47ee6425c58a3502555e10f45ee973da878ac8248ad58c136f3", size = 16401702, upload-time = "2025-12-20T16:17:04.235Z" }, - { url = "https://files.pythonhosted.org/packages/18/32/0f13c1b2d22bea1118356b8b963195446f3af124ed7a5adfa8fdecb1b6ca/numpy-2.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6dc8b7e2f4eb184b37655195f421836cfae6f58197b67e3ffc501f1333d993fa", size = 16242493, upload-time = "2025-12-20T16:17:06.856Z" }, - { url = "https://files.pythonhosted.org/packages/ae/23/48f21e3d309fbc137c068a1475358cbd3a901b3987dcfc97a029ab3068e2/numpy-2.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:44aba2f0cafd287871a495fb3163408b0bd25bbce135c6f621534a07f4f7875c", size = 18324222, upload-time = "2025-12-20T16:17:09.392Z" }, - { url = "https://files.pythonhosted.org/packages/ac/52/41f3d71296a3dcaa4f456aaa3c6fc8e745b43d0552b6bde56571bb4b4a0f/numpy-2.4.0-cp313-cp313t-win32.whl", hash = "sha256:20c115517513831860c573996e395707aa9fb691eb179200125c250e895fcd93", size = 6076216, upload-time = "2025-12-20T16:17:11.437Z" }, - { url = "https://files.pythonhosted.org/packages/35/ff/46fbfe60ab0710d2a2b16995f708750307d30eccbb4c38371ea9e986866e/numpy-2.4.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b48e35f4ab6f6a7597c46e301126ceba4c44cd3280e3750f85db48b082624fa4", size = 12444263, upload-time = "2025-12-20T16:17:13.182Z" }, - { url = "https://files.pythonhosted.org/packages/a3/e3/9189ab319c01d2ed556c932ccf55064c5d75bb5850d1df7a482ce0badead/numpy-2.4.0-cp313-cp313t-win_arm64.whl", hash = "sha256:4d1cfce39e511069b11e67cd0bd78ceff31443b7c9e5c04db73c7a19f572967c", size = 10378265, upload-time = "2025-12-20T16:17:15.211Z" }, + { url = "https://files.pythonhosted.org/packages/78/7f/ec53e32bf10c813604edf07a3682616bd931d026fcde7b6d13195dfb684a/numpy-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d3703409aac693fa82c0aee023a1ae06a6e9d065dba10f5e8e80f642f1e9d0a2", size = 16656888, upload-time = "2026-01-10T06:42:40.913Z" }, + { url = "https://files.pythonhosted.org/packages/b8/e0/1f9585d7dae8f14864e948fd7fa86c6cb72dee2676ca2748e63b1c5acfe0/numpy-2.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7211b95ca365519d3596a1d8688a95874cc94219d417504d9ecb2df99fa7bfa8", size = 12373956, upload-time = "2026-01-10T06:42:43.091Z" }, + { url = "https://files.pythonhosted.org/packages/8e/43/9762e88909ff2326f5e7536fa8cb3c49fb03a7d92705f23e6e7f553d9cb3/numpy-2.4.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:5adf01965456a664fc727ed69cc71848f28d063217c63e1a0e200a118d5eec9a", size = 5202567, upload-time = "2026-01-10T06:42:45.107Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ee/34b7930eb61e79feb4478800a4b95b46566969d837546aa7c034c742ef98/numpy-2.4.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:26f0bcd9c79a00e339565b303badc74d3ea2bd6d52191eeca5f95936cad107d0", size = 6549459, upload-time = "2026-01-10T06:42:48.152Z" }, + { url = "https://files.pythonhosted.org/packages/79/e3/5f115fae982565771be994867c89bcd8d7208dbfe9469185497d70de5ddf/numpy-2.4.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0093e85df2960d7e4049664b26afc58b03236e967fb942354deef3208857a04c", size = 14404859, upload-time = "2026-01-10T06:42:49.947Z" }, + { url = "https://files.pythonhosted.org/packages/d9/7d/9c8a781c88933725445a859cac5d01b5871588a15969ee6aeb618ba99eee/numpy-2.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7ad270f438cbdd402c364980317fb6b117d9ec5e226fff5b4148dd9aa9fc6e02", size = 16371419, upload-time = "2026-01-10T06:42:52.409Z" }, + { url = "https://files.pythonhosted.org/packages/a6/d2/8aa084818554543f17cf4162c42f162acbd3bb42688aefdba6628a859f77/numpy-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:297c72b1b98100c2e8f873d5d35fb551fce7040ade83d67dd51d38c8d42a2162", size = 16182131, upload-time = "2026-01-10T06:42:54.694Z" }, + { url = "https://files.pythonhosted.org/packages/60/db/0425216684297c58a8df35f3284ef56ec4a043e6d283f8a59c53562caf1b/numpy-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:cf6470d91d34bf669f61d515499859fa7a4c2f7c36434afb70e82df7217933f9", size = 18295342, upload-time = "2026-01-10T06:42:56.991Z" }, + { url = "https://files.pythonhosted.org/packages/31/4c/14cb9d86240bd8c386c881bafbe43f001284b7cce3bc01623ac9475da163/numpy-2.4.1-cp312-cp312-win32.whl", hash = "sha256:b6bcf39112e956594b3331316d90c90c90fb961e39696bda97b89462f5f3943f", size = 5959015, upload-time = "2026-01-10T06:42:59.631Z" }, + { url = "https://files.pythonhosted.org/packages/51/cf/52a703dbeb0c65807540d29699fef5fda073434ff61846a564d5c296420f/numpy-2.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:e1a27bb1b2dee45a2a53f5ca6ff2d1a7f135287883a1689e930d44d1ff296c87", size = 12310730, upload-time = "2026-01-10T06:43:01.627Z" }, + { url = "https://files.pythonhosted.org/packages/69/80/a828b2d0ade5e74a9fe0f4e0a17c30fdc26232ad2bc8c9f8b3197cf7cf18/numpy-2.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:0e6e8f9d9ecf95399982019c01223dc130542960a12edfa8edd1122dfa66a8a8", size = 10312166, upload-time = "2026-01-10T06:43:03.673Z" }, + { url = "https://files.pythonhosted.org/packages/04/68/732d4b7811c00775f3bd522a21e8dd5a23f77eb11acdeb663e4a4ebf0ef4/numpy-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d797454e37570cfd61143b73b8debd623c3c0952959adb817dd310a483d58a1b", size = 16652495, upload-time = "2026-01-10T06:43:06.283Z" }, + { url = "https://files.pythonhosted.org/packages/20/ca/857722353421a27f1465652b2c66813eeeccea9d76d5f7b74b99f298e60e/numpy-2.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:82c55962006156aeef1629b953fd359064aa47e4d82cfc8e67f0918f7da3344f", size = 12368657, upload-time = "2026-01-10T06:43:09.094Z" }, + { url = "https://files.pythonhosted.org/packages/81/0d/2377c917513449cc6240031a79d30eb9a163d32a91e79e0da47c43f2c0c8/numpy-2.4.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:71abbea030f2cfc3092a0ff9f8c8fdefdc5e0bf7d9d9c99663538bb0ecdac0b9", size = 5197256, upload-time = "2026-01-10T06:43:13.634Z" }, + { url = "https://files.pythonhosted.org/packages/17/39/569452228de3f5de9064ac75137082c6214be1f5c532016549a7923ab4b5/numpy-2.4.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5b55aa56165b17aaf15520beb9cbd33c9039810e0d9643dd4379e44294c7303e", size = 6545212, upload-time = "2026-01-10T06:43:15.661Z" }, + { url = "https://files.pythonhosted.org/packages/8c/a4/77333f4d1e4dac4395385482557aeecf4826e6ff517e32ca48e1dafbe42a/numpy-2.4.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0faba4a331195bfa96f93dd9dfaa10b2c7aa8cda3a02b7fd635e588fe821bf5", size = 14402871, upload-time = "2026-01-10T06:43:17.324Z" }, + { url = "https://files.pythonhosted.org/packages/ba/87/d341e519956273b39d8d47969dd1eaa1af740615394fe67d06f1efa68773/numpy-2.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e3087f53e2b4428766b54932644d148613c5a595150533ae7f00dab2f319a8", size = 16359305, upload-time = "2026-01-10T06:43:19.376Z" }, + { url = "https://files.pythonhosted.org/packages/32/91/789132c6666288eaa20ae8066bb99eba1939362e8f1a534949a215246e97/numpy-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:49e792ec351315e16da54b543db06ca8a86985ab682602d90c60ef4ff4db2a9c", size = 16181909, upload-time = "2026-01-10T06:43:21.808Z" }, + { url = "https://files.pythonhosted.org/packages/cf/b8/090b8bd27b82a844bb22ff8fdf7935cb1980b48d6e439ae116f53cdc2143/numpy-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79e9e06c4c2379db47f3f6fc7a8652e7498251789bf8ff5bd43bf478ef314ca2", size = 18284380, upload-time = "2026-01-10T06:43:23.957Z" }, + { url = "https://files.pythonhosted.org/packages/67/78/722b62bd31842ff029412271556a1a27a98f45359dea78b1548a3a9996aa/numpy-2.4.1-cp313-cp313-win32.whl", hash = "sha256:3d1a100e48cb266090a031397863ff8a30050ceefd798f686ff92c67a486753d", size = 5957089, upload-time = "2026-01-10T06:43:27.535Z" }, + { url = "https://files.pythonhosted.org/packages/da/a6/cf32198b0b6e18d4fbfa9a21a992a7fca535b9bb2b0cdd217d4a3445b5ca/numpy-2.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:92a0e65272fd60bfa0d9278e0484c2f52fe03b97aedc02b357f33fe752c52ffb", size = 12307230, upload-time = "2026-01-10T06:43:29.298Z" }, + { url = "https://files.pythonhosted.org/packages/44/6c/534d692bfb7d0afe30611320c5fb713659dcb5104d7cc182aff2aea092f5/numpy-2.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:20d4649c773f66cc2fc36f663e091f57c3b7655f936a4c681b4250855d1da8f5", size = 10313125, upload-time = "2026-01-10T06:43:31.782Z" }, + { url = "https://files.pythonhosted.org/packages/da/a1/354583ac5c4caa566de6ddfbc42744409b515039e085fab6e0ff942e0df5/numpy-2.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f93bc6892fe7b0663e5ffa83b61aab510aacffd58c16e012bb9352d489d90cb7", size = 12496156, upload-time = "2026-01-10T06:43:34.237Z" }, + { url = "https://files.pythonhosted.org/packages/51/b0/42807c6e8cce58c00127b1dc24d365305189991f2a7917aa694a109c8d7d/numpy-2.4.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:178de8f87948163d98a4c9ab5bee4ce6519ca918926ec8df195af582de28544d", size = 5324663, upload-time = "2026-01-10T06:43:36.211Z" }, + { url = "https://files.pythonhosted.org/packages/fe/55/7a621694010d92375ed82f312b2f28017694ed784775269115323e37f5e2/numpy-2.4.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:98b35775e03ab7f868908b524fc0a84d38932d8daf7b7e1c3c3a1b6c7a2c9f15", size = 6645224, upload-time = "2026-01-10T06:43:37.884Z" }, + { url = "https://files.pythonhosted.org/packages/50/96/9fa8635ed9d7c847d87e30c834f7109fac5e88549d79ef3324ab5c20919f/numpy-2.4.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:941c2a93313d030f219f3a71fd3d91a728b82979a5e8034eb2e60d394a2b83f9", size = 14462352, upload-time = "2026-01-10T06:43:39.479Z" }, + { url = "https://files.pythonhosted.org/packages/03/d1/8cf62d8bb2062da4fb82dd5d49e47c923f9c0738032f054e0a75342faba7/numpy-2.4.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:529050522e983e00a6c1c6b67411083630de8b57f65e853d7b03d9281b8694d2", size = 16407279, upload-time = "2026-01-10T06:43:41.93Z" }, + { url = "https://files.pythonhosted.org/packages/86/1c/95c86e17c6b0b31ce6ef219da00f71113b220bcb14938c8d9a05cee0ff53/numpy-2.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:2302dc0224c1cbc49bb94f7064f3f923a971bfae45c33870dcbff63a2a550505", size = 16248316, upload-time = "2026-01-10T06:43:44.121Z" }, + { url = "https://files.pythonhosted.org/packages/30/b4/e7f5ff8697274c9d0fa82398b6a372a27e5cef069b37df6355ccb1f1db1a/numpy-2.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:9171a42fcad32dcf3fa86f0a4faa5e9f8facefdb276f54b8b390d90447cff4e2", size = 18329884, upload-time = "2026-01-10T06:43:46.613Z" }, + { url = "https://files.pythonhosted.org/packages/37/a4/b073f3e9d77f9aec8debe8ca7f9f6a09e888ad1ba7488f0c3b36a94c03ac/numpy-2.4.1-cp313-cp313t-win32.whl", hash = "sha256:382ad67d99ef49024f11d1ce5dcb5ad8432446e4246a4b014418ba3a1175a1f4", size = 6081138, upload-time = "2026-01-10T06:43:48.854Z" }, + { url = "https://files.pythonhosted.org/packages/16/16/af42337b53844e67752a092481ab869c0523bc95c4e5c98e4dac4e9581ac/numpy-2.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:62fea415f83ad8fdb6c20840578e5fbaf5ddd65e0ec6c3c47eda0f69da172510", size = 12447478, upload-time = "2026-01-10T06:43:50.476Z" }, + { url = "https://files.pythonhosted.org/packages/6c/f8/fa85b2eac68ec631d0b631abc448552cb17d39afd17ec53dcbcc3537681a/numpy-2.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a7870e8c5fc11aef57d6fea4b4085e537a3a60ad2cdd14322ed531fdca68d261", size = 10382981, upload-time = "2026-01-10T06:43:52.575Z" }, ] [[package]] @@ -2606,7 +2349,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/97/73/8ade73f6749177003 [[package]] name = "openai" -version = "2.14.0" +version = "2.15.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, @@ -2618,9 +2361,9 @@ dependencies = [ { name = "tqdm" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d8/b1/12fe1c196bea326261718eb037307c1c1fe1dedc2d2d4de777df822e6238/openai-2.14.0.tar.gz", hash = "sha256:419357bedde9402d23bf8f2ee372fca1985a73348debba94bddff06f19459952", size = 626938, upload-time = "2025-12-19T03:28:45.742Z" } +sdist = { url = "https://files.pythonhosted.org/packages/94/f4/4690ecb5d70023ce6bfcfeabfe717020f654bde59a775058ec6ac4692463/openai-2.15.0.tar.gz", hash = "sha256:42eb8cbb407d84770633f31bf727d4ffb4138711c670565a41663d9439174fba", size = 627383, upload-time = "2026-01-09T22:10:08.603Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/27/4b/7c1a00c2c3fbd004253937f7520f692a9650767aa73894d7a34f0d65d3f4/openai-2.14.0-py3-none-any.whl", hash = "sha256:7ea40aca4ffc4c4a776e77679021b47eec1160e341f42ae086ba949c9dcc9183", size = 1067558, upload-time = "2025-12-19T03:28:43.727Z" }, + { url = "https://files.pythonhosted.org/packages/b5/df/c306f7375d42bafb379934c2df4c2fa3964656c8c782bac75ee10c102818/openai-2.15.0-py3-none-any.whl", hash = "sha256:6ae23b932cd7230f7244e52954daa6602716d6b9bf235401a107af731baea6c3", size = 1067879, upload-time = "2026-01-09T22:10:06.446Z" }, ] [[package]] @@ -2744,45 +2487,47 @@ wheels = [ [[package]] name = "packaging" -version = "25.0" +version = "26.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" } +sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, + { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" }, ] [[package]] name = "pandas" -version = "2.3.3" +version = "3.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "python-dateutil" }, - { name = "pytz" }, - { name = "tzdata" }, + { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +sdist = { url = "https://files.pythonhosted.org/packages/de/da/b1dc0481ab8d55d0f46e343cfe67d4551a0e14fcee52bd38ca1bd73258d8/pandas-3.0.0.tar.gz", hash = "sha256:0facf7e87d38f721f0af46fe70d97373a37701b1c09f7ed7aeeb292ade5c050f", size = 4633005, upload-time = "2026-01-21T15:52:04.726Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9c/fb/231d89e8637c808b997d172b18e9d4a4bc7bf31296196c260526055d1ea0/pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53", size = 11597846, upload-time = "2025-09-29T23:19:48.856Z" }, - { url = "https://files.pythonhosted.org/packages/5c/bd/bf8064d9cfa214294356c2d6702b716d3cf3bb24be59287a6a21e24cae6b/pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35", size = 10729618, upload-time = "2025-09-29T23:39:08.659Z" }, - { url = "https://files.pythonhosted.org/packages/57/56/cf2dbe1a3f5271370669475ead12ce77c61726ffd19a35546e31aa8edf4e/pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908", size = 11737212, upload-time = "2025-09-29T23:19:59.765Z" }, - { url = "https://files.pythonhosted.org/packages/e5/63/cd7d615331b328e287d8233ba9fdf191a9c2d11b6af0c7a59cfcec23de68/pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89", size = 12362693, upload-time = "2025-09-29T23:20:14.098Z" }, - { url = "https://files.pythonhosted.org/packages/a6/de/8b1895b107277d52f2b42d3a6806e69cfef0d5cf1d0ba343470b9d8e0a04/pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98", size = 12771002, upload-time = "2025-09-29T23:20:26.76Z" }, - { url = "https://files.pythonhosted.org/packages/87/21/84072af3187a677c5893b170ba2c8fbe450a6ff911234916da889b698220/pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084", size = 13450971, upload-time = "2025-09-29T23:20:41.344Z" }, - { url = "https://files.pythonhosted.org/packages/86/41/585a168330ff063014880a80d744219dbf1dd7a1c706e75ab3425a987384/pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b", size = 10992722, upload-time = "2025-09-29T23:20:54.139Z" }, - { url = "https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713", size = 11544671, upload-time = "2025-09-29T23:21:05.024Z" }, - { url = "https://files.pythonhosted.org/packages/31/94/72fac03573102779920099bcac1c3b05975c2cb5f01eac609faf34bed1ca/pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8", size = 10680807, upload-time = "2025-09-29T23:21:15.979Z" }, - { url = "https://files.pythonhosted.org/packages/16/87/9472cf4a487d848476865321de18cc8c920b8cab98453ab79dbbc98db63a/pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d", size = 11709872, upload-time = "2025-09-29T23:21:27.165Z" }, - { url = "https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac", size = 12306371, upload-time = "2025-09-29T23:21:40.532Z" }, - { url = "https://files.pythonhosted.org/packages/33/81/a3afc88fca4aa925804a27d2676d22dcd2031c2ebe08aabd0ae55b9ff282/pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c", size = 12765333, upload-time = "2025-09-29T23:21:55.77Z" }, - { url = "https://files.pythonhosted.org/packages/8d/0f/b4d4ae743a83742f1153464cf1a8ecfafc3ac59722a0b5c8602310cb7158/pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493", size = 13418120, upload-time = "2025-09-29T23:22:10.109Z" }, - { url = "https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee", size = 10993991, upload-time = "2025-09-29T23:25:04.889Z" }, - { url = "https://files.pythonhosted.org/packages/f9/ca/3f8d4f49740799189e1395812f3bf23b5e8fc7c190827d55a610da72ce55/pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5", size = 12048227, upload-time = "2025-09-29T23:22:24.343Z" }, - { url = "https://files.pythonhosted.org/packages/0e/5a/f43efec3e8c0cc92c4663ccad372dbdff72b60bdb56b2749f04aa1d07d7e/pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21", size = 11411056, upload-time = "2025-09-29T23:22:37.762Z" }, - { url = "https://files.pythonhosted.org/packages/46/b1/85331edfc591208c9d1a63a06baa67b21d332e63b7a591a5ba42a10bb507/pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78", size = 11645189, upload-time = "2025-09-29T23:22:51.688Z" }, - { url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" }, - { url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" }, - { url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" }, + { url = "https://files.pythonhosted.org/packages/0b/38/db33686f4b5fa64d7af40d96361f6a4615b8c6c8f1b3d334eee46ae6160e/pandas-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9803b31f5039b3c3b10cc858c5e40054adb4b29b4d81cb2fd789f4121c8efbcd", size = 10334013, upload-time = "2026-01-21T15:50:34.771Z" }, + { url = "https://files.pythonhosted.org/packages/a5/7b/9254310594e9774906bacdd4e732415e1f86ab7dbb4b377ef9ede58cd8ec/pandas-3.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:14c2a4099cd38a1d18ff108168ea417909b2dea3bd1ebff2ccf28ddb6a74d740", size = 9874154, upload-time = "2026-01-21T15:50:36.67Z" }, + { url = "https://files.pythonhosted.org/packages/63/d4/726c5a67a13bc66643e66d2e9ff115cead482a44fc56991d0c4014f15aaf/pandas-3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d257699b9a9960e6125686098d5714ac59d05222bef7a5e6af7a7fd87c650801", size = 10384433, upload-time = "2026-01-21T15:50:39.132Z" }, + { url = "https://files.pythonhosted.org/packages/bf/2e/9211f09bedb04f9832122942de8b051804b31a39cfbad199a819bb88d9f3/pandas-3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:69780c98f286076dcafca38d8b8eee1676adf220199c0a39f0ecbf976b68151a", size = 10864519, upload-time = "2026-01-21T15:50:41.043Z" }, + { url = "https://files.pythonhosted.org/packages/00/8d/50858522cdc46ac88b9afdc3015e298959a70a08cd21e008a44e9520180c/pandas-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4a66384f017240f3858a4c8a7cf21b0591c3ac885cddb7758a589f0f71e87ebb", size = 11394124, upload-time = "2026-01-21T15:50:43.377Z" }, + { url = "https://files.pythonhosted.org/packages/86/3f/83b2577db02503cd93d8e95b0f794ad9d4be0ba7cb6c8bcdcac964a34a42/pandas-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:be8c515c9bc33989d97b89db66ea0cececb0f6e3c2a87fcc8b69443a6923e95f", size = 11920444, upload-time = "2026-01-21T15:50:45.932Z" }, + { url = "https://files.pythonhosted.org/packages/64/2d/4f8a2f192ed12c90a0aab47f5557ece0e56b0370c49de9454a09de7381b2/pandas-3.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:a453aad8c4f4e9f166436994a33884442ea62aa8b27d007311e87521b97246e1", size = 9730970, upload-time = "2026-01-21T15:50:47.962Z" }, + { url = "https://files.pythonhosted.org/packages/d4/64/ff571be435cf1e643ca98d0945d76732c0b4e9c37191a89c8550b105eed1/pandas-3.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:da768007b5a33057f6d9053563d6b74dd6d029c337d93c6d0d22a763a5c2ecc0", size = 9041950, upload-time = "2026-01-21T15:50:50.422Z" }, + { url = "https://files.pythonhosted.org/packages/6f/fa/7f0ac4ca8877c57537aaff2a842f8760e630d8e824b730eb2e859ffe96ca/pandas-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b78d646249b9a2bc191040988c7bb524c92fa8534fb0898a0741d7e6f2ffafa6", size = 10307129, upload-time = "2026-01-21T15:50:52.877Z" }, + { url = "https://files.pythonhosted.org/packages/6f/11/28a221815dcea4c0c9414dfc845e34a84a6a7dabc6da3194498ed5ba4361/pandas-3.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bc9cba7b355cb4162442a88ce495e01cb605f17ac1e27d6596ac963504e0305f", size = 9850201, upload-time = "2026-01-21T15:50:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/ba/da/53bbc8c5363b7e5bd10f9ae59ab250fc7a382ea6ba08e4d06d8694370354/pandas-3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c9a1a149aed3b6c9bf246033ff91e1b02d529546c5d6fb6b74a28fea0cf4c70", size = 10354031, upload-time = "2026-01-21T15:50:57.463Z" }, + { url = "https://files.pythonhosted.org/packages/f7/a3/51e02ebc2a14974170d51e2410dfdab58870ea9bcd37cda15bd553d24dc4/pandas-3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:95683af6175d884ee89471842acfca29172a85031fccdabc35e50c0984470a0e", size = 10861165, upload-time = "2026-01-21T15:50:59.32Z" }, + { url = "https://files.pythonhosted.org/packages/a5/fe/05a51e3cac11d161472b8297bd41723ea98013384dd6d76d115ce3482f9b/pandas-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1fbbb5a7288719e36b76b4f18d46ede46e7f916b6c8d9915b756b0a6c3f792b3", size = 11359359, upload-time = "2026-01-21T15:51:02.014Z" }, + { url = "https://files.pythonhosted.org/packages/ee/56/ba620583225f9b85a4d3e69c01df3e3870659cc525f67929b60e9f21dcd1/pandas-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8e8b9808590fa364416b49b2a35c1f4cf2785a6c156935879e57f826df22038e", size = 11912907, upload-time = "2026-01-21T15:51:05.175Z" }, + { url = "https://files.pythonhosted.org/packages/c9/8c/c6638d9f67e45e07656b3826405c5cc5f57f6fd07c8b2572ade328c86e22/pandas-3.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:98212a38a709feb90ae658cb6227ea3657c22ba8157d4b8f913cd4c950de5e7e", size = 9732138, upload-time = "2026-01-21T15:51:07.569Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bf/bd1335c3bf1770b6d8fed2799993b11c4971af93bb1b729b9ebbc02ca2ec/pandas-3.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:177d9df10b3f43b70307a149d7ec49a1229a653f907aa60a48f1877d0e6be3be", size = 9033568, upload-time = "2026-01-21T15:51:09.484Z" }, + { url = "https://files.pythonhosted.org/packages/8e/c6/f5e2171914d5e29b9171d495344097d54e3ffe41d2d85d8115baba4dc483/pandas-3.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2713810ad3806767b89ad3b7b69ba153e1c6ff6d9c20f9c2140379b2a98b6c98", size = 10741936, upload-time = "2026-01-21T15:51:11.693Z" }, + { url = "https://files.pythonhosted.org/packages/51/88/9a0164f99510a1acb9f548691f022c756c2314aad0d8330a24616c14c462/pandas-3.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:15d59f885ee5011daf8335dff47dcb8a912a27b4ad7826dc6cbe809fd145d327", size = 10393884, upload-time = "2026-01-21T15:51:14.197Z" }, + { url = "https://files.pythonhosted.org/packages/e0/53/b34d78084d88d8ae2b848591229da8826d1e65aacf00b3abe34023467648/pandas-3.0.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:24e6547fb64d2c92665dd2adbfa4e85fa4fd70a9c070e7cfb03b629a0bbab5eb", size = 10310740, upload-time = "2026-01-21T15:51:16.093Z" }, + { url = "https://files.pythonhosted.org/packages/5b/d3/bee792e7c3d6930b74468d990604325701412e55d7aaf47460a22311d1a5/pandas-3.0.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:48ee04b90e2505c693d3f8e8f524dab8cb8aaf7ddcab52c92afa535e717c4812", size = 10700014, upload-time = "2026-01-21T15:51:18.818Z" }, + { url = "https://files.pythonhosted.org/packages/55/db/2570bc40fb13aaed1cbc3fbd725c3a60ee162477982123c3adc8971e7ac1/pandas-3.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:66f72fb172959af42a459e27a8d8d2c7e311ff4c1f7db6deb3b643dbc382ae08", size = 11323737, upload-time = "2026-01-21T15:51:20.784Z" }, + { url = "https://files.pythonhosted.org/packages/bc/2e/297ac7f21c8181b62a4cccebad0a70caf679adf3ae5e83cb676194c8acc3/pandas-3.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4a4a400ca18230976724a5066f20878af785f36c6756e498e94c2a5e5d57779c", size = 11771558, upload-time = "2026-01-21T15:51:22.977Z" }, + { url = "https://files.pythonhosted.org/packages/0a/46/e1c6876d71c14332be70239acce9ad435975a80541086e5ffba2f249bcf6/pandas-3.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:940eebffe55528074341a5a36515f3e4c5e25e958ebbc764c9502cfc35ba3faa", size = 10473771, upload-time = "2026-01-21T15:51:25.285Z" }, ] [[package]] @@ -2823,7 +2568,7 @@ name = "pexpect" version = "4.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "ptyprocess" }, + { name = "ptyprocess", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } wheels = [ @@ -2832,46 +2577,46 @@ wheels = [ [[package]] name = "pillow" -version = "12.0.0" +version = "12.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/cace85a1b0c9775a9f8f5d5423c8261c858760e2466c79b2dd184638b056/pillow-12.0.0.tar.gz", hash = "sha256:87d4f8125c9988bfbed67af47dd7a953e2fc7b0cc1e7800ec6d2080d490bb353", size = 47008828, upload-time = "2025-10-15T18:24:14.008Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/02/d52c733a2452ef1ffcc123b68e6606d07276b0e358db70eabad7e40042b7/pillow-12.1.0.tar.gz", hash = "sha256:5c5ae0a06e9ea030ab786b0251b32c7e4ce10e58d983c0d5c56029455180b5b9", size = 46977283, upload-time = "2026-01-02T09:13:29.892Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/90/4fcce2c22caf044e660a198d740e7fbc14395619e3cb1abad12192c0826c/pillow-12.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:53561a4ddc36facb432fae7a9d8afbfaf94795414f5cdc5fc52f28c1dca90371", size = 5249377, upload-time = "2025-10-15T18:22:05.993Z" }, - { url = "https://files.pythonhosted.org/packages/fd/e0/ed960067543d080691d47d6938ebccbf3976a931c9567ab2fbfab983a5dd/pillow-12.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:71db6b4c1653045dacc1585c1b0d184004f0d7e694c7b34ac165ca70c0838082", size = 4650343, upload-time = "2025-10-15T18:22:07.718Z" }, - { url = "https://files.pythonhosted.org/packages/e7/a1/f81fdeddcb99c044bf7d6faa47e12850f13cee0849537a7d27eeab5534d4/pillow-12.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2fa5f0b6716fc88f11380b88b31fe591a06c6315e955c096c35715788b339e3f", size = 6232981, upload-time = "2025-10-15T18:22:09.287Z" }, - { url = "https://files.pythonhosted.org/packages/88/e1/9098d3ce341a8750b55b0e00c03f1630d6178f38ac191c81c97a3b047b44/pillow-12.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:82240051c6ca513c616f7f9da06e871f61bfd7805f566275841af15015b8f98d", size = 8041399, upload-time = "2025-10-15T18:22:10.872Z" }, - { url = "https://files.pythonhosted.org/packages/a7/62/a22e8d3b602ae8cc01446d0c57a54e982737f44b6f2e1e019a925143771d/pillow-12.0.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55f818bd74fe2f11d4d7cbc65880a843c4075e0ac7226bc1a23261dbea531953", size = 6347740, upload-time = "2025-10-15T18:22:12.769Z" }, - { url = "https://files.pythonhosted.org/packages/4f/87/424511bdcd02c8d7acf9f65caa09f291a519b16bd83c3fb3374b3d4ae951/pillow-12.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b87843e225e74576437fd5b6a4c2205d422754f84a06942cfaf1dc32243e45a8", size = 7040201, upload-time = "2025-10-15T18:22:14.813Z" }, - { url = "https://files.pythonhosted.org/packages/dc/4d/435c8ac688c54d11755aedfdd9f29c9eeddf68d150fe42d1d3dbd2365149/pillow-12.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c607c90ba67533e1b2355b821fef6764d1dd2cbe26b8c1005ae84f7aea25ff79", size = 6462334, upload-time = "2025-10-15T18:22:16.375Z" }, - { url = "https://files.pythonhosted.org/packages/2b/f2/ad34167a8059a59b8ad10bc5c72d4d9b35acc6b7c0877af8ac885b5f2044/pillow-12.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:21f241bdd5080a15bc86d3466a9f6074a9c2c2b314100dd896ac81ee6db2f1ba", size = 7134162, upload-time = "2025-10-15T18:22:17.996Z" }, - { url = "https://files.pythonhosted.org/packages/0c/b1/a7391df6adacf0a5c2cf6ac1cf1fcc1369e7d439d28f637a847f8803beb3/pillow-12.0.0-cp312-cp312-win32.whl", hash = "sha256:dd333073e0cacdc3089525c7df7d39b211bcdf31fc2824e49d01c6b6187b07d0", size = 6298769, upload-time = "2025-10-15T18:22:19.923Z" }, - { url = "https://files.pythonhosted.org/packages/a2/0b/d87733741526541c909bbf159e338dcace4f982daac6e5a8d6be225ca32d/pillow-12.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:9fe611163f6303d1619bbcb653540a4d60f9e55e622d60a3108be0d5b441017a", size = 7001107, upload-time = "2025-10-15T18:22:21.644Z" }, - { url = "https://files.pythonhosted.org/packages/bc/96/aaa61ce33cc98421fb6088af2a03be4157b1e7e0e87087c888e2370a7f45/pillow-12.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:7dfb439562f234f7d57b1ac6bc8fe7f838a4bd49c79230e0f6a1da93e82f1fad", size = 2436012, upload-time = "2025-10-15T18:22:23.621Z" }, - { url = "https://files.pythonhosted.org/packages/62/f2/de993bb2d21b33a98d031ecf6a978e4b61da207bef02f7b43093774c480d/pillow-12.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:0869154a2d0546545cde61d1789a6524319fc1897d9ee31218eae7a60ccc5643", size = 4045493, upload-time = "2025-10-15T18:22:25.758Z" }, - { url = "https://files.pythonhosted.org/packages/0e/b6/bc8d0c4c9f6f111a783d045310945deb769b806d7574764234ffd50bc5ea/pillow-12.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:a7921c5a6d31b3d756ec980f2f47c0cfdbce0fc48c22a39347a895f41f4a6ea4", size = 4120461, upload-time = "2025-10-15T18:22:27.286Z" }, - { url = "https://files.pythonhosted.org/packages/5d/57/d60d343709366a353dc56adb4ee1e7d8a2cc34e3fbc22905f4167cfec119/pillow-12.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:1ee80a59f6ce048ae13cda1abf7fbd2a34ab9ee7d401c46be3ca685d1999a399", size = 3576912, upload-time = "2025-10-15T18:22:28.751Z" }, - { url = "https://files.pythonhosted.org/packages/a4/a4/a0a31467e3f83b94d37568294b01d22b43ae3c5d85f2811769b9c66389dd/pillow-12.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c50f36a62a22d350c96e49ad02d0da41dbd17ddc2e29750dbdba4323f85eb4a5", size = 5249132, upload-time = "2025-10-15T18:22:30.641Z" }, - { url = "https://files.pythonhosted.org/packages/83/06/48eab21dd561de2914242711434c0c0eb992ed08ff3f6107a5f44527f5e9/pillow-12.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5193fde9a5f23c331ea26d0cf171fbf67e3f247585f50c08b3e205c7aeb4589b", size = 4650099, upload-time = "2025-10-15T18:22:32.73Z" }, - { url = "https://files.pythonhosted.org/packages/fc/bd/69ed99fd46a8dba7c1887156d3572fe4484e3f031405fcc5a92e31c04035/pillow-12.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bde737cff1a975b70652b62d626f7785e0480918dece11e8fef3c0cf057351c3", size = 6230808, upload-time = "2025-10-15T18:22:34.337Z" }, - { url = "https://files.pythonhosted.org/packages/ea/94/8fad659bcdbf86ed70099cb60ae40be6acca434bbc8c4c0d4ef356d7e0de/pillow-12.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a6597ff2b61d121172f5844b53f21467f7082f5fb385a9a29c01414463f93b07", size = 8037804, upload-time = "2025-10-15T18:22:36.402Z" }, - { url = "https://files.pythonhosted.org/packages/20/39/c685d05c06deecfd4e2d1950e9a908aa2ca8bc4e6c3b12d93b9cafbd7837/pillow-12.0.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0b817e7035ea7f6b942c13aa03bb554fc44fea70838ea21f8eb31c638326584e", size = 6345553, upload-time = "2025-10-15T18:22:38.066Z" }, - { url = "https://files.pythonhosted.org/packages/38/57/755dbd06530a27a5ed74f8cb0a7a44a21722ebf318edbe67ddbd7fb28f88/pillow-12.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f4f1231b7dec408e8670264ce63e9c71409d9583dd21d32c163e25213ee2a344", size = 7037729, upload-time = "2025-10-15T18:22:39.769Z" }, - { url = "https://files.pythonhosted.org/packages/ca/b6/7e94f4c41d238615674d06ed677c14883103dce1c52e4af16f000338cfd7/pillow-12.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6e51b71417049ad6ab14c49608b4a24d8fb3fe605e5dfabfe523b58064dc3d27", size = 6459789, upload-time = "2025-10-15T18:22:41.437Z" }, - { url = "https://files.pythonhosted.org/packages/9c/14/4448bb0b5e0f22dd865290536d20ec8a23b64e2d04280b89139f09a36bb6/pillow-12.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d120c38a42c234dc9a8c5de7ceaaf899cf33561956acb4941653f8bdc657aa79", size = 7130917, upload-time = "2025-10-15T18:22:43.152Z" }, - { url = "https://files.pythonhosted.org/packages/dd/ca/16c6926cc1c015845745d5c16c9358e24282f1e588237a4c36d2b30f182f/pillow-12.0.0-cp313-cp313-win32.whl", hash = "sha256:4cc6b3b2efff105c6a1656cfe59da4fdde2cda9af1c5e0b58529b24525d0a098", size = 6302391, upload-time = "2025-10-15T18:22:44.753Z" }, - { url = "https://files.pythonhosted.org/packages/6d/2a/dd43dcfd6dae9b6a49ee28a8eedb98c7d5ff2de94a5d834565164667b97b/pillow-12.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:4cf7fed4b4580601c4345ceb5d4cbf5a980d030fd5ad07c4d2ec589f95f09905", size = 7007477, upload-time = "2025-10-15T18:22:46.838Z" }, - { url = "https://files.pythonhosted.org/packages/77/f0/72ea067f4b5ae5ead653053212af05ce3705807906ba3f3e8f58ddf617e6/pillow-12.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:9f0b04c6b8584c2c193babcccc908b38ed29524b29dd464bc8801bf10d746a3a", size = 2435918, upload-time = "2025-10-15T18:22:48.399Z" }, - { url = "https://files.pythonhosted.org/packages/f5/5e/9046b423735c21f0487ea6cb5b10f89ea8f8dfbe32576fe052b5ba9d4e5b/pillow-12.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7fa22993bac7b77b78cae22bad1e2a987ddf0d9015c63358032f84a53f23cdc3", size = 5251406, upload-time = "2025-10-15T18:22:49.905Z" }, - { url = "https://files.pythonhosted.org/packages/12/66/982ceebcdb13c97270ef7a56c3969635b4ee7cd45227fa707c94719229c5/pillow-12.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f135c702ac42262573fe9714dfe99c944b4ba307af5eb507abef1667e2cbbced", size = 4653218, upload-time = "2025-10-15T18:22:51.587Z" }, - { url = "https://files.pythonhosted.org/packages/16/b3/81e625524688c31859450119bf12674619429cab3119eec0e30a7a1029cb/pillow-12.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c85de1136429c524e55cfa4e033b4a7940ac5c8ee4d9401cc2d1bf48154bbc7b", size = 6266564, upload-time = "2025-10-15T18:22:53.215Z" }, - { url = "https://files.pythonhosted.org/packages/98/59/dfb38f2a41240d2408096e1a76c671d0a105a4a8471b1871c6902719450c/pillow-12.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:38df9b4bfd3db902c9c2bd369bcacaf9d935b2fff73709429d95cc41554f7b3d", size = 8069260, upload-time = "2025-10-15T18:22:54.933Z" }, - { url = "https://files.pythonhosted.org/packages/dc/3d/378dbea5cd1874b94c312425ca77b0f47776c78e0df2df751b820c8c1d6c/pillow-12.0.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7d87ef5795da03d742bf49439f9ca4d027cde49c82c5371ba52464aee266699a", size = 6379248, upload-time = "2025-10-15T18:22:56.605Z" }, - { url = "https://files.pythonhosted.org/packages/84/b0/d525ef47d71590f1621510327acec75ae58c721dc071b17d8d652ca494d8/pillow-12.0.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aff9e4d82d082ff9513bdd6acd4f5bd359f5b2c870907d2b0a9c5e10d40c88fe", size = 7066043, upload-time = "2025-10-15T18:22:58.53Z" }, - { url = "https://files.pythonhosted.org/packages/61/2c/aced60e9cf9d0cde341d54bf7932c9ffc33ddb4a1595798b3a5150c7ec4e/pillow-12.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:8d8ca2b210ada074d57fcee40c30446c9562e542fc46aedc19baf758a93532ee", size = 6490915, upload-time = "2025-10-15T18:23:00.582Z" }, - { url = "https://files.pythonhosted.org/packages/ef/26/69dcb9b91f4e59f8f34b2332a4a0a951b44f547c4ed39d3e4dcfcff48f89/pillow-12.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:99a7f72fb6249302aa62245680754862a44179b545ded638cf1fef59befb57ef", size = 7157998, upload-time = "2025-10-15T18:23:02.627Z" }, - { url = "https://files.pythonhosted.org/packages/61/2b/726235842220ca95fa441ddf55dd2382b52ab5b8d9c0596fe6b3f23dafe8/pillow-12.0.0-cp313-cp313t-win32.whl", hash = "sha256:4078242472387600b2ce8d93ade8899c12bf33fa89e55ec89fe126e9d6d5d9e9", size = 6306201, upload-time = "2025-10-15T18:23:04.709Z" }, - { url = "https://files.pythonhosted.org/packages/c0/3d/2afaf4e840b2df71344ababf2f8edd75a705ce500e5dc1e7227808312ae1/pillow-12.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2c54c1a783d6d60595d3514f0efe9b37c8808746a66920315bfd34a938d7994b", size = 7013165, upload-time = "2025-10-15T18:23:06.46Z" }, - { url = "https://files.pythonhosted.org/packages/6f/75/3fa09aa5cf6ed04bee3fa575798ddf1ce0bace8edb47249c798077a81f7f/pillow-12.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:26d9f7d2b604cd23aba3e9faf795787456ac25634d82cd060556998e39c6fa47", size = 2437834, upload-time = "2025-10-15T18:23:08.194Z" }, + { url = "https://files.pythonhosted.org/packages/20/31/dc53fe21a2f2996e1b7d92bf671cdb157079385183ef7c1ae08b485db510/pillow-12.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a332ac4ccb84b6dde65dbace8431f3af08874bf9770719d32a635c4ef411b18b", size = 5262642, upload-time = "2026-01-02T09:11:10.138Z" }, + { url = "https://files.pythonhosted.org/packages/ab/c1/10e45ac9cc79419cedf5121b42dcca5a50ad2b601fa080f58c22fb27626e/pillow-12.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:907bfa8a9cb790748a9aa4513e37c88c59660da3bcfffbd24a7d9e6abf224551", size = 4657464, upload-time = "2026-01-02T09:11:12.319Z" }, + { url = "https://files.pythonhosted.org/packages/ad/26/7b82c0ab7ef40ebede7a97c72d473bda5950f609f8e0c77b04af574a0ddb/pillow-12.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:efdc140e7b63b8f739d09a99033aa430accce485ff78e6d311973a67b6bf3208", size = 6234878, upload-time = "2026-01-02T09:11:14.096Z" }, + { url = "https://files.pythonhosted.org/packages/76/25/27abc9792615b5e886ca9411ba6637b675f1b77af3104710ac7353fe5605/pillow-12.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bef9768cab184e7ae6e559c032e95ba8d07b3023c289f79a2bd36e8bf85605a5", size = 8044868, upload-time = "2026-01-02T09:11:15.903Z" }, + { url = "https://files.pythonhosted.org/packages/0a/ea/f200a4c36d836100e7bc738fc48cd963d3ba6372ebc8298a889e0cfc3359/pillow-12.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:742aea052cf5ab5034a53c3846165bc3ce88d7c38e954120db0ab867ca242661", size = 6349468, upload-time = "2026-01-02T09:11:17.631Z" }, + { url = "https://files.pythonhosted.org/packages/11/8f/48d0b77ab2200374c66d344459b8958c86693be99526450e7aee714e03e4/pillow-12.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a6dfc2af5b082b635af6e08e0d1f9f1c4e04d17d4e2ca0ef96131e85eda6eb17", size = 7041518, upload-time = "2026-01-02T09:11:19.389Z" }, + { url = "https://files.pythonhosted.org/packages/1d/23/c281182eb986b5d31f0a76d2a2c8cd41722d6fb8ed07521e802f9bba52de/pillow-12.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:609e89d9f90b581c8d16358c9087df76024cf058fa693dd3e1e1620823f39670", size = 6462829, upload-time = "2026-01-02T09:11:21.28Z" }, + { url = "https://files.pythonhosted.org/packages/25/ef/7018273e0faac099d7b00982abdcc39142ae6f3bd9ceb06de09779c4a9d6/pillow-12.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:43b4899cfd091a9693a1278c4982f3e50f7fb7cff5153b05174b4afc9593b616", size = 7166756, upload-time = "2026-01-02T09:11:23.559Z" }, + { url = "https://files.pythonhosted.org/packages/8f/c8/993d4b7ab2e341fe02ceef9576afcf5830cdec640be2ac5bee1820d693d4/pillow-12.1.0-cp312-cp312-win32.whl", hash = "sha256:aa0c9cc0b82b14766a99fbe6084409972266e82f459821cd26997a488a7261a7", size = 6328770, upload-time = "2026-01-02T09:11:25.661Z" }, + { url = "https://files.pythonhosted.org/packages/a7/87/90b358775a3f02765d87655237229ba64a997b87efa8ccaca7dd3e36e7a7/pillow-12.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:d70534cea9e7966169ad29a903b99fc507e932069a881d0965a1a84bb57f6c6d", size = 7033406, upload-time = "2026-01-02T09:11:27.474Z" }, + { url = "https://files.pythonhosted.org/packages/5d/cf/881b457eccacac9e5b2ddd97d5071fb6d668307c57cbf4e3b5278e06e536/pillow-12.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:65b80c1ee7e14a87d6a068dd3b0aea268ffcabfe0498d38661b00c5b4b22e74c", size = 2452612, upload-time = "2026-01-02T09:11:29.309Z" }, + { url = "https://files.pythonhosted.org/packages/dd/c7/2530a4aa28248623e9d7f27316b42e27c32ec410f695929696f2e0e4a778/pillow-12.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:7b5dd7cbae20285cdb597b10eb5a2c13aa9de6cde9bb64a3c1317427b1db1ae1", size = 4062543, upload-time = "2026-01-02T09:11:31.566Z" }, + { url = "https://files.pythonhosted.org/packages/8f/1f/40b8eae823dc1519b87d53c30ed9ef085506b05281d313031755c1705f73/pillow-12.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:29a4cef9cb672363926f0470afc516dbf7305a14d8c54f7abbb5c199cd8f8179", size = 4138373, upload-time = "2026-01-02T09:11:33.367Z" }, + { url = "https://files.pythonhosted.org/packages/d4/77/6fa60634cf06e52139fd0e89e5bbf055e8166c691c42fb162818b7fda31d/pillow-12.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:681088909d7e8fa9e31b9799aaa59ba5234c58e5e4f1951b4c4d1082a2e980e0", size = 3601241, upload-time = "2026-01-02T09:11:35.011Z" }, + { url = "https://files.pythonhosted.org/packages/4f/bf/28ab865de622e14b747f0cd7877510848252d950e43002e224fb1c9ababf/pillow-12.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:983976c2ab753166dc66d36af6e8ec15bb511e4a25856e2227e5f7e00a160587", size = 5262410, upload-time = "2026-01-02T09:11:36.682Z" }, + { url = "https://files.pythonhosted.org/packages/1c/34/583420a1b55e715937a85bd48c5c0991598247a1fd2eb5423188e765ea02/pillow-12.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:db44d5c160a90df2d24a24760bbd37607d53da0b34fb546c4c232af7192298ac", size = 4657312, upload-time = "2026-01-02T09:11:38.535Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fd/f5a0896839762885b3376ff04878f86ab2b097c2f9a9cdccf4eda8ba8dc0/pillow-12.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6b7a9d1db5dad90e2991645874f708e87d9a3c370c243c2d7684d28f7e133e6b", size = 6232605, upload-time = "2026-01-02T09:11:40.602Z" }, + { url = "https://files.pythonhosted.org/packages/98/aa/938a09d127ac1e70e6ed467bd03834350b33ef646b31edb7452d5de43792/pillow-12.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6258f3260986990ba2fa8a874f8b6e808cf5abb51a94015ca3dc3c68aa4f30ea", size = 8041617, upload-time = "2026-01-02T09:11:42.721Z" }, + { url = "https://files.pythonhosted.org/packages/17/e8/538b24cb426ac0186e03f80f78bc8dc7246c667f58b540bdd57c71c9f79d/pillow-12.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e115c15e3bc727b1ca3e641a909f77f8ca72a64fff150f666fcc85e57701c26c", size = 6346509, upload-time = "2026-01-02T09:11:44.955Z" }, + { url = "https://files.pythonhosted.org/packages/01/9a/632e58ec89a32738cabfd9ec418f0e9898a2b4719afc581f07c04a05e3c9/pillow-12.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6741e6f3074a35e47c77b23a4e4f2d90db3ed905cb1c5e6e0d49bff2045632bc", size = 7038117, upload-time = "2026-01-02T09:11:46.736Z" }, + { url = "https://files.pythonhosted.org/packages/c7/a2/d40308cf86eada842ca1f3ffa45d0ca0df7e4ab33c83f81e73f5eaed136d/pillow-12.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:935b9d1aed48fcfb3f838caac506f38e29621b44ccc4f8a64d575cb1b2a88644", size = 6460151, upload-time = "2026-01-02T09:11:48.625Z" }, + { url = "https://files.pythonhosted.org/packages/f1/88/f5b058ad6453a085c5266660a1417bdad590199da1b32fb4efcff9d33b05/pillow-12.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5fee4c04aad8932da9f8f710af2c1a15a83582cfb884152a9caa79d4efcdbf9c", size = 7164534, upload-time = "2026-01-02T09:11:50.445Z" }, + { url = "https://files.pythonhosted.org/packages/19/ce/c17334caea1db789163b5d855a5735e47995b0b5dc8745e9a3605d5f24c0/pillow-12.1.0-cp313-cp313-win32.whl", hash = "sha256:a786bf667724d84aa29b5db1c61b7bfdde380202aaca12c3461afd6b71743171", size = 6332551, upload-time = "2026-01-02T09:11:52.234Z" }, + { url = "https://files.pythonhosted.org/packages/e5/07/74a9d941fa45c90a0d9465098fe1ec85de3e2afbdc15cc4766622d516056/pillow-12.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:461f9dfdafa394c59cd6d818bdfdbab4028b83b02caadaff0ffd433faf4c9a7a", size = 7040087, upload-time = "2026-01-02T09:11:54.822Z" }, + { url = "https://files.pythonhosted.org/packages/88/09/c99950c075a0e9053d8e880595926302575bc742b1b47fe1bbcc8d388d50/pillow-12.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:9212d6b86917a2300669511ed094a9406888362e085f2431a7da985a6b124f45", size = 2452470, upload-time = "2026-01-02T09:11:56.522Z" }, + { url = "https://files.pythonhosted.org/packages/b5/ba/970b7d85ba01f348dee4d65412476321d40ee04dcb51cd3735b9dc94eb58/pillow-12.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:00162e9ca6d22b7c3ee8e61faa3c3253cd19b6a37f126cad04f2f88b306f557d", size = 5264816, upload-time = "2026-01-02T09:11:58.227Z" }, + { url = "https://files.pythonhosted.org/packages/10/60/650f2fb55fdba7a510d836202aa52f0baac633e50ab1cf18415d332188fb/pillow-12.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7d6daa89a00b58c37cb1747ec9fb7ac3bc5ffd5949f5888657dfddde6d1312e0", size = 4660472, upload-time = "2026-01-02T09:12:00.798Z" }, + { url = "https://files.pythonhosted.org/packages/2b/c0/5273a99478956a099d533c4f46cbaa19fd69d606624f4334b85e50987a08/pillow-12.1.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e2479c7f02f9d505682dc47df8c0ea1fc5e264c4d1629a5d63fe3e2334b89554", size = 6268974, upload-time = "2026-01-02T09:12:02.572Z" }, + { url = "https://files.pythonhosted.org/packages/b4/26/0bf714bc2e73d5267887d47931d53c4ceeceea6978148ed2ab2a4e6463c4/pillow-12.1.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f188d580bd870cda1e15183790d1cc2fa78f666e76077d103edf048eed9c356e", size = 8073070, upload-time = "2026-01-02T09:12:04.75Z" }, + { url = "https://files.pythonhosted.org/packages/43/cf/1ea826200de111a9d65724c54f927f3111dc5ae297f294b370a670c17786/pillow-12.1.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0fde7ec5538ab5095cc02df38ee99b0443ff0e1c847a045554cf5f9af1f4aa82", size = 6380176, upload-time = "2026-01-02T09:12:06.626Z" }, + { url = "https://files.pythonhosted.org/packages/03/e0/7938dd2b2013373fd85d96e0f38d62b7a5a262af21ac274250c7ca7847c9/pillow-12.1.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0ed07dca4a8464bada6139ab38f5382f83e5f111698caf3191cb8dbf27d908b4", size = 7067061, upload-time = "2026-01-02T09:12:08.624Z" }, + { url = "https://files.pythonhosted.org/packages/86/ad/a2aa97d37272a929a98437a8c0ac37b3cf012f4f8721e1bd5154699b2518/pillow-12.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:f45bd71d1fa5e5749587613037b172e0b3b23159d1c00ef2fc920da6f470e6f0", size = 6491824, upload-time = "2026-01-02T09:12:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/a4/44/80e46611b288d51b115826f136fb3465653c28f491068a72d3da49b54cd4/pillow-12.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:277518bf4fe74aa91489e1b20577473b19ee70fb97c374aa50830b279f25841b", size = 7190911, upload-time = "2026-01-02T09:12:12.772Z" }, + { url = "https://files.pythonhosted.org/packages/86/77/eacc62356b4cf81abe99ff9dbc7402750044aed02cfd6a503f7c6fc11f3e/pillow-12.1.0-cp313-cp313t-win32.whl", hash = "sha256:7315f9137087c4e0ee73a761b163fc9aa3b19f5f606a7fc08d83fd3e4379af65", size = 6336445, upload-time = "2026-01-02T09:12:14.775Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3c/57d81d0b74d218706dafccb87a87ea44262c43eef98eb3b164fd000e0491/pillow-12.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:0ddedfaa8b5f0b4ffbc2fa87b556dc59f6bb4ecb14a53b33f9189713ae8053c0", size = 7045354, upload-time = "2026-01-02T09:12:16.599Z" }, + { url = "https://files.pythonhosted.org/packages/ac/82/8b9b97bba2e3576a340f93b044a3a3a09841170ab4c1eb0d5c93469fd32f/pillow-12.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:80941e6d573197a0c28f394753de529bb436b1ca990ed6e765cf42426abc39f8", size = 2454547, upload-time = "2026-01-02T09:12:18.704Z" }, ] [[package]] @@ -2921,11 +2666,11 @@ wheels = [ [[package]] name = "prometheus-client" -version = "0.23.1" +version = "0.24.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/23/53/3edb5d68ecf6b38fcbcc1ad28391117d2a322d9a1a3eff04bfdb184d8c3b/prometheus_client-0.23.1.tar.gz", hash = "sha256:6ae8f9081eaaaf153a2e959d2e6c4f4fb57b12ef76c8c7980202f1e57b48b2ce", size = 80481, upload-time = "2025-09-18T20:47:25.043Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/58/a794d23feb6b00fc0c72787d7e87d872a6730dd9ed7c7b3e954637d8f280/prometheus_client-0.24.1.tar.gz", hash = "sha256:7e0ced7fbbd40f7b84962d5d2ab6f17ef88a72504dcf7c0b40737b43b2a461f9", size = 85616, upload-time = "2026-01-14T15:26:26.965Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl", hash = "sha256:dd1913e6e76b59cfe44e7a4b83e01afc9873c1bdfd2ed8739f1e76aeca115f99", size = 61145, upload-time = "2025-09-18T20:47:23.875Z" }, + { url = "https://files.pythonhosted.org/packages/74/c3/24a2f845e3917201628ecaba4f18bab4d18a337834c1df2a159ee9d22a42/prometheus_client-0.24.1-py3-none-any.whl", hash = "sha256:150db128af71a5c2482b36e588fc8a6b95e498750da4b17065947c16070f4055", size = 64057, upload-time = "2026-01-14T15:26:24.42Z" }, ] [[package]] @@ -3026,33 +2771,50 @@ wheels = [ ] [[package]] -name = "psycopg2-binary" -version = "2.9.11" +name = "psycopg" +version = "3.2.9" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ac/6c/8767aaa597ba424643dc87348c6f1754dd9f48e80fdc1b9f7ca5c3a7c213/psycopg2-binary-2.9.11.tar.gz", hash = "sha256:b6aed9e096bf63f9e75edf2581aa9a7e7186d97ab5c177aa6c87797cd591236c", size = 379620, upload-time = "2025-10-10T11:14:48.041Z" } +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, + { name = "tzdata", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/27/4a/93a6ab570a8d1a4ad171a1f4256e205ce48d828781312c0bbaff36380ecb/psycopg-3.2.9.tar.gz", hash = "sha256:2fbb46fcd17bc81f993f28c47f1ebea38d66ae97cc2dbc3cad73b37cefbff700", size = 158122, upload-time = "2025-05-13T16:11:15.533Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d8/91/f870a02f51be4a65987b45a7de4c2e1897dd0d01051e2b559a38fa634e3e/psycopg2_binary-2.9.11-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:be9b840ac0525a283a96b556616f5b4820e0526addb8dcf6525a0fa162730be4", size = 3756603, upload-time = "2025-10-10T11:11:52.213Z" }, - { url = "https://files.pythonhosted.org/packages/27/fa/cae40e06849b6c9a95eb5c04d419942f00d9eaac8d81626107461e268821/psycopg2_binary-2.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f090b7ddd13ca842ebfe301cd587a76a4cf0913b1e429eb92c1be5dbeb1a19bc", size = 3864509, upload-time = "2025-10-10T11:11:56.452Z" }, - { url = "https://files.pythonhosted.org/packages/2d/75/364847b879eb630b3ac8293798e380e441a957c53657995053c5ec39a316/psycopg2_binary-2.9.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ab8905b5dcb05bf3fb22e0cf90e10f469563486ffb6a96569e51f897c750a76a", size = 4411159, upload-time = "2025-10-10T11:12:00.49Z" }, - { url = "https://files.pythonhosted.org/packages/6f/a0/567f7ea38b6e1c62aafd58375665a547c00c608a471620c0edc364733e13/psycopg2_binary-2.9.11-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:bf940cd7e7fec19181fdbc29d76911741153d51cab52e5c21165f3262125685e", size = 4468234, upload-time = "2025-10-10T11:12:04.892Z" }, - { url = "https://files.pythonhosted.org/packages/30/da/4e42788fb811bbbfd7b7f045570c062f49e350e1d1f3df056c3fb5763353/psycopg2_binary-2.9.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fa0f693d3c68ae925966f0b14b8edda71696608039f4ed61b1fe9ffa468d16db", size = 4166236, upload-time = "2025-10-10T11:12:11.674Z" }, - { url = "https://files.pythonhosted.org/packages/3c/94/c1777c355bc560992af848d98216148be5f1be001af06e06fc49cbded578/psycopg2_binary-2.9.11-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a1cf393f1cdaf6a9b57c0a719a1068ba1069f022a59b8b1fe44b006745b59757", size = 3983083, upload-time = "2025-10-30T02:55:15.73Z" }, - { url = "https://files.pythonhosted.org/packages/bd/42/c9a21edf0e3daa7825ed04a4a8588686c6c14904344344a039556d78aa58/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ef7a6beb4beaa62f88592ccc65df20328029d721db309cb3250b0aae0fa146c3", size = 3652281, upload-time = "2025-10-10T11:12:17.713Z" }, - { url = "https://files.pythonhosted.org/packages/12/22/dedfbcfa97917982301496b6b5e5e6c5531d1f35dd2b488b08d1ebc52482/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:31b32c457a6025e74d233957cc9736742ac5a6cb196c6b68499f6bb51390bd6a", size = 3298010, upload-time = "2025-10-10T11:12:22.671Z" }, - { url = "https://files.pythonhosted.org/packages/66/ea/d3390e6696276078bd01b2ece417deac954dfdd552d2edc3d03204416c0c/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:edcb3aeb11cb4bf13a2af3c53a15b3d612edeb6409047ea0b5d6a21a9d744b34", size = 3044641, upload-time = "2025-10-30T02:55:19.929Z" }, - { url = "https://files.pythonhosted.org/packages/12/9a/0402ded6cbd321da0c0ba7d34dc12b29b14f5764c2fc10750daa38e825fc/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:62b6d93d7c0b61a1dd6197d208ab613eb7dcfdcca0a49c42ceb082257991de9d", size = 3347940, upload-time = "2025-10-10T11:12:26.529Z" }, - { url = "https://files.pythonhosted.org/packages/b1/d2/99b55e85832ccde77b211738ff3925a5d73ad183c0b37bcbbe5a8ff04978/psycopg2_binary-2.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:b33fabeb1fde21180479b2d4667e994de7bbf0eec22832ba5d9b5e4cf65b6c6d", size = 2714147, upload-time = "2025-10-10T11:12:29.535Z" }, - { url = "https://files.pythonhosted.org/packages/ff/a8/a2709681b3ac11b0b1786def10006b8995125ba268c9a54bea6f5ae8bd3e/psycopg2_binary-2.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b8fb3db325435d34235b044b199e56cdf9ff41223a4b9752e8576465170bb38c", size = 3756572, upload-time = "2025-10-10T11:12:32.873Z" }, - { url = "https://files.pythonhosted.org/packages/62/e1/c2b38d256d0dafd32713e9f31982a5b028f4a3651f446be70785f484f472/psycopg2_binary-2.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:366df99e710a2acd90efed3764bb1e28df6c675d33a7fb40df9b7281694432ee", size = 3864529, upload-time = "2025-10-10T11:12:36.791Z" }, - { url = "https://files.pythonhosted.org/packages/11/32/b2ffe8f3853c181e88f0a157c5fb4e383102238d73c52ac6d93a5c8bffe6/psycopg2_binary-2.9.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8c55b385daa2f92cb64b12ec4536c66954ac53654c7f15a203578da4e78105c0", size = 4411242, upload-time = "2025-10-10T11:12:42.388Z" }, - { url = "https://files.pythonhosted.org/packages/10/04/6ca7477e6160ae258dc96f67c371157776564679aefd247b66f4661501a2/psycopg2_binary-2.9.11-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:c0377174bf1dd416993d16edc15357f6eb17ac998244cca19bc67cdc0e2e5766", size = 4468258, upload-time = "2025-10-10T11:12:48.654Z" }, - { url = "https://files.pythonhosted.org/packages/3c/7e/6a1a38f86412df101435809f225d57c1a021307dd0689f7a5e7fe83588b1/psycopg2_binary-2.9.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5c6ff3335ce08c75afaed19e08699e8aacf95d4a260b495a4a8545244fe2ceb3", size = 4166295, upload-time = "2025-10-10T11:12:52.525Z" }, - { url = "https://files.pythonhosted.org/packages/f2/7d/c07374c501b45f3579a9eb761cbf2604ddef3d96ad48679112c2c5aa9c25/psycopg2_binary-2.9.11-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:84011ba3109e06ac412f95399b704d3d6950e386b7994475b231cf61eec2fc1f", size = 3983133, upload-time = "2025-10-30T02:55:24.329Z" }, - { url = "https://files.pythonhosted.org/packages/82/56/993b7104cb8345ad7d4516538ccf8f0d0ac640b1ebd8c754a7b024e76878/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ba34475ceb08cccbdd98f6b46916917ae6eeb92b5ae111df10b544c3a4621dc4", size = 3652383, upload-time = "2025-10-10T11:12:56.387Z" }, - { url = "https://files.pythonhosted.org/packages/2d/ac/eaeb6029362fd8d454a27374d84c6866c82c33bfc24587b4face5a8e43ef/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b31e90fdd0f968c2de3b26ab014314fe814225b6c324f770952f7d38abf17e3c", size = 3298168, upload-time = "2025-10-10T11:13:00.403Z" }, - { url = "https://files.pythonhosted.org/packages/2b/39/50c3facc66bded9ada5cbc0de867499a703dc6bca6be03070b4e3b65da6c/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:d526864e0f67f74937a8fce859bd56c979f5e2ec57ca7c627f5f1071ef7fee60", size = 3044712, upload-time = "2025-10-30T02:55:27.975Z" }, - { url = "https://files.pythonhosted.org/packages/9c/8e/b7de019a1f562f72ada81081a12823d3c1590bedc48d7d2559410a2763fe/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:04195548662fa544626c8ea0f06561eb6203f1984ba5b4562764fbeb4c3d14b1", size = 3347549, upload-time = "2025-10-10T11:13:03.971Z" }, - { url = "https://files.pythonhosted.org/packages/80/2d/1bb683f64737bbb1f86c82b7359db1eb2be4e2c0c13b947f80efefa7d3e5/psycopg2_binary-2.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:efff12b432179443f54e230fdf60de1f6cc726b6c832db8701227d089310e8aa", size = 2714215, upload-time = "2025-10-10T11:13:07.14Z" }, + { url = "https://files.pythonhosted.org/packages/44/b0/a73c195a56eb6b92e937a5ca58521a5c3346fb233345adc80fd3e2f542e2/psycopg-3.2.9-py3-none-any.whl", hash = "sha256:01a8dadccdaac2123c916208c96e06631641c0566b22005493f09663c7a8d3b6", size = 202705, upload-time = "2025-05-13T16:06:26.584Z" }, +] + +[package.optional-dependencies] +binary = [ + { name = "psycopg-binary", marker = "implementation_name != 'pypy'" }, +] + +[[package]] +name = "psycopg-binary" +version = "3.2.9" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/29/6f/ec9957e37a606cd7564412e03f41f1b3c3637a5be018d0849914cb06e674/psycopg_binary-3.2.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:be7d650a434921a6b1ebe3fff324dbc2364393eb29d7672e638ce3e21076974e", size = 4022205, upload-time = "2025-05-13T16:07:48.195Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ba/497b8bea72b20a862ac95a94386967b745a472d9ddc88bc3f32d5d5f0d43/psycopg_binary-3.2.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6a76b4722a529390683c0304501f238b365a46b1e5fb6b7249dbc0ad6fea51a0", size = 4083795, upload-time = "2025-05-13T16:07:50.917Z" }, + { url = "https://files.pythonhosted.org/packages/42/07/af9503e8e8bdad3911fd88e10e6a29240f9feaa99f57d6fac4a18b16f5a0/psycopg_binary-3.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96a551e4683f1c307cfc3d9a05fec62c00a7264f320c9962a67a543e3ce0d8ff", size = 4655043, upload-time = "2025-05-13T16:07:54.857Z" }, + { url = "https://files.pythonhosted.org/packages/28/ed/aff8c9850df1648cc6a5cc7a381f11ee78d98a6b807edd4a5ae276ad60ad/psycopg_binary-3.2.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61d0a6ceed8f08c75a395bc28cb648a81cf8dee75ba4650093ad1a24a51c8724", size = 4477972, upload-time = "2025-05-13T16:07:57.925Z" }, + { url = "https://files.pythonhosted.org/packages/5c/bd/8e9d1b77ec1a632818fe2f457c3a65af83c68710c4c162d6866947d08cc5/psycopg_binary-3.2.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad280bbd409bf598683dda82232f5215cfc5f2b1bf0854e409b4d0c44a113b1d", size = 4737516, upload-time = "2025-05-13T16:08:01.616Z" }, + { url = "https://files.pythonhosted.org/packages/46/ec/222238f774cd5a0881f3f3b18fb86daceae89cc410f91ef6a9fb4556f236/psycopg_binary-3.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76eddaf7fef1d0994e3d536ad48aa75034663d3a07f6f7e3e601105ae73aeff6", size = 4436160, upload-time = "2025-05-13T16:08:04.278Z" }, + { url = "https://files.pythonhosted.org/packages/37/78/af5af2a1b296eeca54ea7592cd19284739a844974c9747e516707e7b3b39/psycopg_binary-3.2.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:52e239cd66c4158e412318fbe028cd94b0ef21b0707f56dcb4bdc250ee58fd40", size = 3753518, upload-time = "2025-05-13T16:08:07.567Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ac/8a3ed39ea069402e9e6e6a2f79d81a71879708b31cc3454283314994b1ae/psycopg_binary-3.2.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:08bf9d5eabba160dd4f6ad247cf12f229cc19d2458511cab2eb9647f42fa6795", size = 3313598, upload-time = "2025-05-13T16:08:09.999Z" }, + { url = "https://files.pythonhosted.org/packages/da/43/26549af068347c808fbfe5f07d2fa8cef747cfff7c695136172991d2378b/psycopg_binary-3.2.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1b2cf018168cad87580e67bdde38ff5e51511112f1ce6ce9a8336871f465c19a", size = 3407289, upload-time = "2025-05-13T16:08:12.66Z" }, + { url = "https://files.pythonhosted.org/packages/67/55/ea8d227c77df8e8aec880ded398316735add8fda5eb4ff5cc96fac11e964/psycopg_binary-3.2.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:14f64d1ac6942ff089fc7e926440f7a5ced062e2ed0949d7d2d680dc5c00e2d4", size = 3472493, upload-time = "2025-05-13T16:08:15.672Z" }, + { url = "https://files.pythonhosted.org/packages/3c/02/6ff2a5bc53c3cd653d281666728e29121149179c73fddefb1e437024c192/psycopg_binary-3.2.9-cp312-cp312-win_amd64.whl", hash = "sha256:7a838852e5afb6b4126f93eb409516a8c02a49b788f4df8b6469a40c2157fa21", size = 2927400, upload-time = "2025-05-13T16:08:18.652Z" }, + { url = "https://files.pythonhosted.org/packages/28/0b/f61ff4e9f23396aca674ed4d5c9a5b7323738021d5d72d36d8b865b3deaf/psycopg_binary-3.2.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:98bbe35b5ad24a782c7bf267596638d78aa0e87abc7837bdac5b2a2ab954179e", size = 4017127, upload-time = "2025-05-13T16:08:21.391Z" }, + { url = "https://files.pythonhosted.org/packages/bc/00/7e181fb1179fbfc24493738b61efd0453d4b70a0c4b12728e2b82db355fd/psycopg_binary-3.2.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:72691a1615ebb42da8b636c5ca9f2b71f266be9e172f66209a361c175b7842c5", size = 4080322, upload-time = "2025-05-13T16:08:24.049Z" }, + { url = "https://files.pythonhosted.org/packages/58/fd/94fc267c1d1392c4211e54ccb943be96ea4032e761573cf1047951887494/psycopg_binary-3.2.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25ab464bfba8c401f5536d5aa95f0ca1dd8257b5202eede04019b4415f491351", size = 4655097, upload-time = "2025-05-13T16:08:27.376Z" }, + { url = "https://files.pythonhosted.org/packages/41/17/31b3acf43de0b2ba83eac5878ff0dea5a608ca2a5c5dd48067999503a9de/psycopg_binary-3.2.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e8aeefebe752f46e3c4b769e53f1d4ad71208fe1150975ef7662c22cca80fab", size = 4482114, upload-time = "2025-05-13T16:08:30.781Z" }, + { url = "https://files.pythonhosted.org/packages/85/78/b4d75e5fd5a85e17f2beb977abbba3389d11a4536b116205846b0e1cf744/psycopg_binary-3.2.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7e4e4dd177a8665c9ce86bc9caae2ab3aa9360b7ce7ec01827ea1baea9ff748", size = 4737693, upload-time = "2025-05-13T16:08:34.625Z" }, + { url = "https://files.pythonhosted.org/packages/3b/95/7325a8550e3388b00b5e54f4ced5e7346b531eb4573bf054c3dbbfdc14fe/psycopg_binary-3.2.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fc2915949e5c1ea27a851f7a472a7da7d0a40d679f0a31e42f1022f3c562e87", size = 4437423, upload-time = "2025-05-13T16:08:37.444Z" }, + { url = "https://files.pythonhosted.org/packages/1a/db/cef77d08e59910d483df4ee6da8af51c03bb597f500f1fe818f0f3b925d3/psycopg_binary-3.2.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a1fa38a4687b14f517f049477178093c39c2a10fdcced21116f47c017516498f", size = 3758667, upload-time = "2025-05-13T16:08:40.116Z" }, + { url = "https://files.pythonhosted.org/packages/95/3e/252fcbffb47189aa84d723b54682e1bb6d05c8875fa50ce1ada914ae6e28/psycopg_binary-3.2.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5be8292d07a3ab828dc95b5ee6b69ca0a5b2e579a577b39671f4f5b47116dfd2", size = 3320576, upload-time = "2025-05-13T16:08:43.243Z" }, + { url = "https://files.pythonhosted.org/packages/1c/cd/9b5583936515d085a1bec32b45289ceb53b80d9ce1cea0fef4c782dc41a7/psycopg_binary-3.2.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:778588ca9897b6c6bab39b0d3034efff4c5438f5e3bd52fda3914175498202f9", size = 3411439, upload-time = "2025-05-13T16:08:47.321Z" }, + { url = "https://files.pythonhosted.org/packages/45/6b/6f1164ea1634c87956cdb6db759e0b8c5827f989ee3cdff0f5c70e8331f2/psycopg_binary-3.2.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f0d5b3af045a187aedbd7ed5fc513bd933a97aaff78e61c3745b330792c4345b", size = 3477477, upload-time = "2025-05-13T16:08:51.166Z" }, + { url = "https://files.pythonhosted.org/packages/7b/1d/bf54cfec79377929da600c16114f0da77a5f1670f45e0c3af9fcd36879bc/psycopg_binary-3.2.9-cp313-cp313-win_amd64.whl", hash = "sha256:2290bc146a1b6a9730350f695e8b670e1d1feb8446597bed0bbe7c3c30e0abcb", size = 2928009, upload-time = "2025-05-13T16:08:53.67Z" }, ] [[package]] @@ -3075,11 +2837,11 @@ wheels = [ [[package]] name = "pycparser" -version = "2.23" +version = "3.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload-time = "2025-09-09T13:23:47.91Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/e3/59cd50310fc9b59512193629e1984c1f95e5c8ae6e5d8c69532ccc65a7fe/pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934", size = 118140, upload-time = "2025-09-09T13:23:46.651Z" }, + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, ] [[package]] @@ -3149,12 +2911,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, ] -[[package]] -name = "pygraphviz" -version = "1.14" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/66/ca/823d5c74a73d6b8b08e1f5aea12468ef334f0732c65cbb18df2a7f285c87/pygraphviz-1.14.tar.gz", hash = "sha256:c10df02377f4e39b00ae17c862f4ee7e5767317f1c6b2dfd04cea6acc7fc2bea", size = 106003, upload-time = "2024-09-29T18:31:12.471Z" } - [[package]] name = "pyjwt" version = "2.10.1" @@ -3164,19 +2920,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/61/ad/689f02752eeec26aed679477e80e632ef1b682313be70793d798c1d5fc8f/PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb", size = 22997, upload-time = "2024-11-28T03:43:27.893Z" }, ] -[[package]] -name = "pymdown-extensions" -version = "10.19.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markdown" }, - { name = "pyyaml" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/72/2d/9f30cee56d4d6d222430d401e85b0a6a1ae229819362f5786943d1a8c03b/pymdown_extensions-10.19.1.tar.gz", hash = "sha256:4969c691009a389fb1f9712dd8e7bd70dcc418d15a0faf70acb5117d022f7de8", size = 847839, upload-time = "2025-12-14T17:25:24.42Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fb/35/b763e8fbcd51968329b9adc52d188fc97859f85f2ee15fe9f379987d99c5/pymdown_extensions-10.19.1-py3-none-any.whl", hash = "sha256:e8698a66055b1dc0dca2a7f2c9d0ea6f5faa7834a9c432e3535ab96c0c4e509b", size = 266693, upload-time = "2025-12-14T17:25:22.999Z" }, -] - [[package]] name = "pynacl" version = "1.6.2" @@ -3500,50 +3243,234 @@ wheels = [ [[package]] name = "ruff" -version = "0.14.10" +version = "0.14.14" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/57/08/52232a877978dd8f9cf2aeddce3e611b40a63287dfca29b6b8da791f5e8d/ruff-0.14.10.tar.gz", hash = "sha256:9a2e830f075d1a42cd28420d7809ace390832a490ed0966fe373ba288e77aaf4", size = 5859763, upload-time = "2025-12-18T19:28:57.98Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2e/06/f71e3a86b2df0dfa2d2f72195941cd09b44f87711cb7fa5193732cb9a5fc/ruff-0.14.14.tar.gz", hash = "sha256:2d0f819c9a90205f3a867dbbd0be083bee9912e170fd7d9704cc8ae45824896b", size = 4515732, upload-time = "2026-01-22T22:30:17.527Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/60/01/933704d69f3f05ee16ef11406b78881733c186fe14b6a46b05cfcaf6d3b2/ruff-0.14.10-py3-none-linux_armv6l.whl", hash = "sha256:7a3ce585f2ade3e1f29ec1b92df13e3da262178df8c8bdf876f48fa0e8316c49", size = 13527080, upload-time = "2025-12-18T19:29:25.642Z" }, - { url = "https://files.pythonhosted.org/packages/df/58/a0349197a7dfa603ffb7f5b0470391efa79ddc327c1e29c4851e85b09cc5/ruff-0.14.10-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:674f9be9372907f7257c51f1d4fc902cb7cf014b9980152b802794317941f08f", size = 13797320, upload-time = "2025-12-18T19:29:02.571Z" }, - { url = "https://files.pythonhosted.org/packages/7b/82/36be59f00a6082e38c23536df4e71cdbc6af8d7c707eade97fcad5c98235/ruff-0.14.10-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d85713d522348837ef9df8efca33ccb8bd6fcfc86a2cde3ccb4bc9d28a18003d", size = 12918434, upload-time = "2025-12-18T19:28:51.202Z" }, - { url = "https://files.pythonhosted.org/packages/a6/00/45c62a7f7e34da92a25804f813ebe05c88aa9e0c25e5cb5a7d23dd7450e3/ruff-0.14.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6987ebe0501ae4f4308d7d24e2d0fe3d7a98430f5adfd0f1fead050a740a3a77", size = 13371961, upload-time = "2025-12-18T19:29:04.991Z" }, - { url = "https://files.pythonhosted.org/packages/40/31/a5906d60f0405f7e57045a70f2d57084a93ca7425f22e1d66904769d1628/ruff-0.14.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:16a01dfb7b9e4eee556fbfd5392806b1b8550c9b4a9f6acd3dbe6812b193c70a", size = 13275629, upload-time = "2025-12-18T19:29:21.381Z" }, - { url = "https://files.pythonhosted.org/packages/3e/60/61c0087df21894cf9d928dc04bcd4fb10e8b2e8dca7b1a276ba2155b2002/ruff-0.14.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7165d31a925b7a294465fa81be8c12a0e9b60fb02bf177e79067c867e71f8b1f", size = 14029234, upload-time = "2025-12-18T19:29:00.132Z" }, - { url = "https://files.pythonhosted.org/packages/44/84/77d911bee3b92348b6e5dab5a0c898d87084ea03ac5dc708f46d88407def/ruff-0.14.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c561695675b972effb0c0a45db233f2c816ff3da8dcfbe7dfc7eed625f218935", size = 15449890, upload-time = "2025-12-18T19:28:53.573Z" }, - { url = "https://files.pythonhosted.org/packages/e9/36/480206eaefa24a7ec321582dda580443a8f0671fdbf6b1c80e9c3e93a16a/ruff-0.14.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4bb98fcbbc61725968893682fd4df8966a34611239c9fd07a1f6a07e7103d08e", size = 15123172, upload-time = "2025-12-18T19:29:23.453Z" }, - { url = "https://files.pythonhosted.org/packages/5c/38/68e414156015ba80cef5473d57919d27dfb62ec804b96180bafdeaf0e090/ruff-0.14.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f24b47993a9d8cb858429e97bdf8544c78029f09b520af615c1d261bf827001d", size = 14460260, upload-time = "2025-12-18T19:29:27.808Z" }, - { url = "https://files.pythonhosted.org/packages/b3/19/9e050c0dca8aba824d67cc0db69fb459c28d8cd3f6855b1405b3f29cc91d/ruff-0.14.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59aabd2e2c4fd614d2862e7939c34a532c04f1084476d6833dddef4afab87e9f", size = 14229978, upload-time = "2025-12-18T19:29:11.32Z" }, - { url = "https://files.pythonhosted.org/packages/51/eb/e8dd1dd6e05b9e695aa9dd420f4577debdd0f87a5ff2fedda33c09e9be8c/ruff-0.14.10-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:213db2b2e44be8625002dbea33bb9c60c66ea2c07c084a00d55732689d697a7f", size = 14338036, upload-time = "2025-12-18T19:29:09.184Z" }, - { url = "https://files.pythonhosted.org/packages/6a/12/f3e3a505db7c19303b70af370d137795fcfec136d670d5de5391e295c134/ruff-0.14.10-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b914c40ab64865a17a9a5b67911d14df72346a634527240039eb3bd650e5979d", size = 13264051, upload-time = "2025-12-18T19:29:13.431Z" }, - { url = "https://files.pythonhosted.org/packages/08/64/8c3a47eaccfef8ac20e0484e68e0772013eb85802f8a9f7603ca751eb166/ruff-0.14.10-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:1484983559f026788e3a5c07c81ef7d1e97c1c78ed03041a18f75df104c45405", size = 13283998, upload-time = "2025-12-18T19:29:06.994Z" }, - { url = "https://files.pythonhosted.org/packages/12/84/534a5506f4074e5cc0529e5cd96cfc01bb480e460c7edf5af70d2bcae55e/ruff-0.14.10-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c70427132db492d25f982fffc8d6c7535cc2fd2c83fc8888f05caaa248521e60", size = 13601891, upload-time = "2025-12-18T19:28:55.811Z" }, - { url = "https://files.pythonhosted.org/packages/0d/1e/14c916087d8598917dbad9b2921d340f7884824ad6e9c55de948a93b106d/ruff-0.14.10-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5bcf45b681e9f1ee6445d317ce1fa9d6cba9a6049542d1c3d5b5958986be8830", size = 14336660, upload-time = "2025-12-18T19:29:16.531Z" }, - { url = "https://files.pythonhosted.org/packages/f2/1c/d7b67ab43f30013b47c12b42d1acd354c195351a3f7a1d67f59e54227ede/ruff-0.14.10-py3-none-win32.whl", hash = "sha256:104c49fc7ab73f3f3a758039adea978869a918f31b73280db175b43a2d9b51d6", size = 13196187, upload-time = "2025-12-18T19:29:19.006Z" }, - { url = "https://files.pythonhosted.org/packages/fb/9c/896c862e13886fae2af961bef3e6312db9ebc6adc2b156fe95e615dee8c1/ruff-0.14.10-py3-none-win_amd64.whl", hash = "sha256:466297bd73638c6bdf06485683e812db1c00c7ac96d4ddd0294a338c62fdc154", size = 14661283, upload-time = "2025-12-18T19:29:30.16Z" }, - { url = "https://files.pythonhosted.org/packages/74/31/b0e29d572670dca3674eeee78e418f20bdf97fa8aa9ea71380885e175ca0/ruff-0.14.10-py3-none-win_arm64.whl", hash = "sha256:e51d046cf6dda98a4633b8a8a771451107413b0f07183b2bef03f075599e44e6", size = 13729839, upload-time = "2025-12-18T19:28:48.636Z" }, + { url = "https://files.pythonhosted.org/packages/d2/89/20a12e97bc6b9f9f68343952da08a8099c57237aef953a56b82711d55edd/ruff-0.14.14-py3-none-linux_armv6l.whl", hash = "sha256:7cfe36b56e8489dee8fbc777c61959f60ec0f1f11817e8f2415f429552846aed", size = 10467650, upload-time = "2026-01-22T22:30:08.578Z" }, + { url = "https://files.pythonhosted.org/packages/a3/b1/c5de3fd2d5a831fcae21beda5e3589c0ba67eec8202e992388e4b17a6040/ruff-0.14.14-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6006a0082336e7920b9573ef8a7f52eec837add1265cc74e04ea8a4368cd704c", size = 10883245, upload-time = "2026-01-22T22:30:04.155Z" }, + { url = "https://files.pythonhosted.org/packages/b8/7c/3c1db59a10e7490f8f6f8559d1db8636cbb13dccebf18686f4e3c9d7c772/ruff-0.14.14-py3-none-macosx_11_0_arm64.whl", hash = "sha256:026c1d25996818f0bf498636686199d9bd0d9d6341c9c2c3b62e2a0198b758de", size = 10231273, upload-time = "2026-01-22T22:30:34.642Z" }, + { url = "https://files.pythonhosted.org/packages/a1/6e/5e0e0d9674be0f8581d1f5e0f0a04761203affce3232c1a1189d0e3b4dad/ruff-0.14.14-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f666445819d31210b71e0a6d1c01e24447a20b85458eea25a25fe8142210ae0e", size = 10585753, upload-time = "2026-01-22T22:30:31.781Z" }, + { url = "https://files.pythonhosted.org/packages/23/09/754ab09f46ff1884d422dc26d59ba18b4e5d355be147721bb2518aa2a014/ruff-0.14.14-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3c0f18b922c6d2ff9a5e6c3ee16259adc513ca775bcf82c67ebab7cbd9da5bc8", size = 10286052, upload-time = "2026-01-22T22:30:24.827Z" }, + { url = "https://files.pythonhosted.org/packages/c8/cc/e71f88dd2a12afb5f50733851729d6b571a7c3a35bfdb16c3035132675a0/ruff-0.14.14-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1629e67489c2dea43e8658c3dba659edbfd87361624b4040d1df04c9740ae906", size = 11043637, upload-time = "2026-01-22T22:30:13.239Z" }, + { url = "https://files.pythonhosted.org/packages/67/b2/397245026352494497dac935d7f00f1468c03a23a0c5db6ad8fc49ca3fb2/ruff-0.14.14-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:27493a2131ea0f899057d49d303e4292b2cae2bb57253c1ed1f256fbcd1da480", size = 12194761, upload-time = "2026-01-22T22:30:22.542Z" }, + { url = "https://files.pythonhosted.org/packages/5b/06/06ef271459f778323112c51b7587ce85230785cd64e91772034ddb88f200/ruff-0.14.14-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01ff589aab3f5b539e35db38425da31a57521efd1e4ad1ae08fc34dbe30bd7df", size = 12005701, upload-time = "2026-01-22T22:30:20.499Z" }, + { url = "https://files.pythonhosted.org/packages/41/d6/99364514541cf811ccc5ac44362f88df66373e9fec1b9d1c4cc830593fe7/ruff-0.14.14-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1cc12d74eef0f29f51775f5b755913eb523546b88e2d733e1d701fe65144e89b", size = 11282455, upload-time = "2026-01-22T22:29:59.679Z" }, + { url = "https://files.pythonhosted.org/packages/ca/71/37daa46f89475f8582b7762ecd2722492df26421714a33e72ccc9a84d7a5/ruff-0.14.14-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb8481604b7a9e75eff53772496201690ce2687067e038b3cc31aaf16aa0b974", size = 11215882, upload-time = "2026-01-22T22:29:57.032Z" }, + { url = "https://files.pythonhosted.org/packages/2c/10/a31f86169ec91c0705e618443ee74ede0bdd94da0a57b28e72db68b2dbac/ruff-0.14.14-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:14649acb1cf7b5d2d283ebd2f58d56b75836ed8c6f329664fa91cdea19e76e66", size = 11180549, upload-time = "2026-01-22T22:30:27.175Z" }, + { url = "https://files.pythonhosted.org/packages/fd/1e/c723f20536b5163adf79bdd10c5f093414293cdf567eed9bdb7b83940f3f/ruff-0.14.14-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:e8058d2145566510790eab4e2fad186002e288dec5e0d343a92fe7b0bc1b3e13", size = 10543416, upload-time = "2026-01-22T22:30:01.964Z" }, + { url = "https://files.pythonhosted.org/packages/3e/34/8a84cea7e42c2d94ba5bde1d7a4fae164d6318f13f933d92da6d7c2041ff/ruff-0.14.14-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:e651e977a79e4c758eb807f0481d673a67ffe53cfa92209781dfa3a996cf8412", size = 10285491, upload-time = "2026-01-22T22:30:29.51Z" }, + { url = "https://files.pythonhosted.org/packages/55/ef/b7c5ea0be82518906c978e365e56a77f8de7678c8bb6651ccfbdc178c29f/ruff-0.14.14-py3-none-musllinux_1_2_i686.whl", hash = "sha256:cc8b22da8d9d6fdd844a68ae937e2a0adf9b16514e9a97cc60355e2d4b219fc3", size = 10733525, upload-time = "2026-01-22T22:30:06.499Z" }, + { url = "https://files.pythonhosted.org/packages/6a/5b/aaf1dfbcc53a2811f6cc0a1759de24e4b03e02ba8762daabd9b6bd8c59e3/ruff-0.14.14-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:16bc890fb4cc9781bb05beb5ab4cd51be9e7cb376bf1dd3580512b24eb3fda2b", size = 11315626, upload-time = "2026-01-22T22:30:36.848Z" }, + { url = "https://files.pythonhosted.org/packages/2c/aa/9f89c719c467dfaf8ad799b9bae0df494513fb21d31a6059cb5870e57e74/ruff-0.14.14-py3-none-win32.whl", hash = "sha256:b530c191970b143375b6a68e6f743800b2b786bbcf03a7965b06c4bf04568167", size = 10502442, upload-time = "2026-01-22T22:30:38.93Z" }, + { url = "https://files.pythonhosted.org/packages/87/44/90fa543014c45560cae1fffc63ea059fb3575ee6e1cb654562197e5d16fb/ruff-0.14.14-py3-none-win_amd64.whl", hash = "sha256:3dde1435e6b6fe5b66506c1dff67a421d0b7f6488d466f651c07f4cab3bf20fd", size = 11630486, upload-time = "2026-01-22T22:30:10.852Z" }, + { url = "https://files.pythonhosted.org/packages/9e/6a/40fee331a52339926a92e17ae748827270b288a35ef4a15c9c8f2ec54715/ruff-0.14.14-py3-none-win_arm64.whl", hash = "sha256:56e6981a98b13a32236a72a8da421d7839221fa308b223b9283312312e5ac76c", size = 10920448, upload-time = "2026-01-22T22:30:15.417Z" }, ] +[[package]] +name = "schon" +version = "2026.1" +source = { virtual = "." } +dependencies = [ + { name = "aiogram" }, + { name = "aiosmtpd" }, + { name = "channels" }, + { name = "channels-redis" }, + { name = "click" }, + { name = "colorlog" }, + { name = "coverage" }, + { name = "cryptography" }, + { name = "django" }, + { name = "django-cacheops" }, + { name = "django-constance" }, + { name = "django-cors-headers" }, + { name = "django-dbbackup" }, + { name = "django-elasticsearch-dsl" }, + { name = "django-extensions" }, + { name = "django-filter" }, + { name = "django-health-check" }, + { name = "django-import-export", extra = ["all"] }, + { name = "django-json-widget" }, + { name = "django-md-field" }, + { name = "django-model-utils" }, + { name = "django-modeltranslation" }, + { name = "django-mptt" }, + { name = "django-prometheus" }, + { name = "django-ratelimit" }, + { name = "django-redis" }, + { name = "django-storages" }, + { name = "django-unfold" }, + { name = "django-widget-tweaks" }, + { name = "djangoql" }, + { name = "djangorestframework" }, + { name = "djangorestframework-recursive" }, + { name = "djangorestframework-simplejwt", extra = ["crypto"] }, + { name = "djangorestframework-xml" }, + { name = "djangorestframework-yaml" }, + { name = "docutils" }, + { name = "drf-orjson-renderer" }, + { name = "drf-spectacular", extra = ["sidecar"] }, + { name = "drf-spectacular-websocket" }, + { name = "elasticsearch-dsl" }, + { name = "filelock" }, + { name = "filetype" }, + { name = "graphene-django" }, + { name = "graphene-file-upload" }, + { name = "httpx" }, + { name = "paramiko" }, + { name = "pillow" }, + { name = "pip" }, + { name = "polib" }, + { name = "psutil" }, + { name = "psycopg", extra = ["binary"] }, + { name = "pyjwt" }, + { name = "pytest" }, + { name = "pytest-django" }, + { name = "python-slugify" }, + { name = "redis" }, + { name = "requests" }, + { name = "sentry-sdk", extra = ["celery", "django", "opentelemetry"] }, + { name = "six" }, + { name = "swapper" }, + { name = "uvicorn" }, + { name = "websockets" }, + { name = "whitenoise" }, + { name = "zeep" }, +] + +[package.optional-dependencies] +jupyter = [ + { name = "jupyter" }, +] +linting = [ + { name = "celery-types" }, + { name = "django-stubs" }, + { name = "djangorestframework-stubs" }, + { name = "ruff" }, + { name = "ty" }, + { name = "types-docutils" }, + { name = "types-paramiko" }, + { name = "types-pillow" }, + { name = "types-psutil" }, + { name = "types-redis" }, + { name = "types-requests" }, + { name = "types-six" }, +] +openai = [ + { name = "openai" }, +] +worker = [ + { name = "celery" }, + { name = "django-celery-beat" }, + { name = "django-celery-results" }, +] + +[package.metadata] +requires-dist = [ + { name = "aiogram", specifier = "==3.24.0" }, + { name = "aiosmtpd", specifier = "==1.4.6" }, + { name = "celery", marker = "extra == 'worker'", specifier = "==5.6.2" }, + { name = "celery-types", marker = "extra == 'linting'", specifier = "==0.24.0" }, + { name = "channels", specifier = "==4.3.2" }, + { name = "channels-redis", specifier = "==4.3.0" }, + { name = "click", specifier = "==8.3.1" }, + { name = "colorlog", specifier = "==6.10.1" }, + { name = "coverage", specifier = "==7.13.2" }, + { name = "cryptography", specifier = "==46.0.3" }, + { name = "django", specifier = "==5.2.9" }, + { name = "django-cacheops", specifier = "==7.2" }, + { name = "django-celery-beat", marker = "extra == 'worker'", specifier = "==2.8.1" }, + { name = "django-celery-results", marker = "extra == 'worker'", specifier = "==2.6.0" }, + { name = "django-constance", specifier = "==4.3.4" }, + { name = "django-cors-headers", specifier = "==4.9.0" }, + { name = "django-dbbackup", specifier = "==5.1.2" }, + { name = "django-elasticsearch-dsl", specifier = "==8.2" }, + { name = "django-extensions", specifier = "==4.1" }, + { name = "django-filter", specifier = "==25.2" }, + { name = "django-health-check", specifier = "==3.20.8" }, + { name = "django-import-export", extras = ["all"], specifier = "==4.4.0" }, + { name = "django-json-widget", specifier = "==2.1.1" }, + { name = "django-md-field", specifier = "==0.1.0" }, + { name = "django-model-utils", specifier = "==5.0.0" }, + { name = "django-modeltranslation", specifier = "==0.19.19" }, + { name = "django-mptt", specifier = "==0.18.0" }, + { name = "django-prometheus", specifier = "==2.4.1" }, + { name = "django-ratelimit", specifier = "==4.1.0" }, + { name = "django-redis", specifier = "==6.0.0" }, + { name = "django-storages", specifier = "==1.14.6" }, + { name = "django-stubs", marker = "extra == 'linting'", specifier = "==5.2.9" }, + { name = "django-unfold", specifier = "==0.76.0" }, + { name = "django-widget-tweaks", specifier = "==1.5.1" }, + { name = "djangoql", specifier = "==0.18.1" }, + { name = "djangorestframework", specifier = "==3.16.1" }, + { name = "djangorestframework-recursive", specifier = "==0.1.2" }, + { name = "djangorestframework-simplejwt", extras = ["crypto"], specifier = "==5.5.1" }, + { name = "djangorestframework-stubs", marker = "extra == 'linting'", specifier = "==3.16.7" }, + { name = "djangorestframework-xml", specifier = "==2.0.0" }, + { name = "djangorestframework-yaml", specifier = "==2.0.0" }, + { name = "docutils", specifier = "==0.22.4" }, + { name = "drf-orjson-renderer", specifier = "==1.8.0" }, + { name = "drf-spectacular", extras = ["sidecar"], specifier = "==0.29.0" }, + { name = "drf-spectacular-websocket", specifier = "==1.3.1" }, + { name = "elasticsearch-dsl", specifier = "==8.18.0" }, + { name = "filelock", specifier = "==3.20.3" }, + { name = "filetype", specifier = "==1.2.0" }, + { name = "graphene-django", specifier = "==3.2.3" }, + { name = "graphene-file-upload", specifier = "==1.3.0" }, + { name = "httpx", specifier = "==0.28.1" }, + { name = "jupyter", marker = "extra == 'jupyter'", specifier = "==1.1.1" }, + { name = "openai", marker = "extra == 'openai'", specifier = "==2.15.0" }, + { name = "paramiko", specifier = "==4.0.0" }, + { name = "pillow", specifier = "==12.1.0" }, + { name = "pip", specifier = "==25.3" }, + { name = "polib", specifier = "==1.2.0" }, + { name = "psutil", specifier = "==7.2.1" }, + { name = "psycopg", extras = ["binary"], specifier = "==3.2.9" }, + { name = "pyjwt", specifier = "==2.10.1" }, + { name = "pytest", specifier = "==9.0.2" }, + { name = "pytest-django", specifier = "==4.11.1" }, + { name = "python-slugify", specifier = "==8.0.4" }, + { name = "redis", specifier = "==7.1.0" }, + { name = "requests", specifier = "==2.32.5" }, + { name = "ruff", marker = "extra == 'linting'", specifier = "==0.14.14" }, + { name = "sentry-sdk", extras = ["django", "celery", "opentelemetry"], specifier = "==2.50.0" }, + { name = "six", specifier = "==1.17.0" }, + { name = "swapper", specifier = "==1.4.0" }, + { name = "ty", marker = "extra == 'linting'", specifier = "==0.0.13" }, + { name = "types-docutils", marker = "extra == 'linting'", specifier = "==0.22.3.20251115" }, + { name = "types-paramiko", marker = "extra == 'linting'", specifier = "==4.0.0.20250822" }, + { name = "types-pillow", marker = "extra == 'linting'", specifier = "==10.2.0.20240822" }, + { name = "types-psutil", marker = "extra == 'linting'", specifier = "==7.2.1.20260116" }, + { name = "types-redis", marker = "extra == 'linting'", specifier = "==4.6.0.20241004" }, + { name = "types-requests", marker = "extra == 'linting'", specifier = "==2.32.4.20260107" }, + { name = "types-six", marker = "extra == 'linting'", specifier = "==1.17.0.20251009" }, + { name = "uvicorn", specifier = "==0.40.0" }, + { name = "websockets", specifier = "==16.0" }, + { name = "whitenoise", specifier = "==6.11.0" }, + { name = "zeep", specifier = "==4.3.2" }, +] +provides-extras = ["worker", "linting", "openai", "jupyter"] + [[package]] name = "send2trash" -version = "2.0.0" +version = "2.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/62/6e/421803dec0c0dfbf5a27e66491ebe6643a461e4f90422f00ea4c68ae24aa/send2trash-2.0.0.tar.gz", hash = "sha256:1761421da3f9930bfe51ed7c45343948573383ad4c27e3acebc91be324e7770d", size = 17206, upload-time = "2025-12-31T04:12:48.664Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c5/f0/184b4b5f8d00f2a92cf96eec8967a3d550b52cf94362dad1100df9e48d57/send2trash-2.1.0.tar.gz", hash = "sha256:1c72b39f09457db3c05ce1d19158c2cbef4c32b8bedd02c155e49282b7ea7459", size = 17255, upload-time = "2026-01-14T06:27:36.056Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1b/5a/f2f2e5eda25579f754acd83399c522ee03d6acbe001dfe53c8a1ec928b44/send2trash-2.0.0-py3-none-any.whl", hash = "sha256:e70d5ce41dbb890882cc78bc25d137478330b39a391e756fadf82e34da4d85b8", size = 17642, upload-time = "2025-12-31T04:12:45.336Z" }, + { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, ] [[package]] name = "sentry-sdk" -version = "2.48.0" +version = "2.50.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/40/f0/0e9dc590513d5e742d7799e2038df3a05167cba084c6ca4f3cdd75b55164/sentry_sdk-2.48.0.tar.gz", hash = "sha256:5213190977ff7fdff8a58b722fb807f8d5524a80488626ebeda1b5676c0c1473", size = 384828, upload-time = "2025-12-16T14:55:41.722Z" } +sdist = { url = "https://files.pythonhosted.org/packages/15/8a/3c4f53d32c21012e9870913544e56bfa9e931aede080779a0f177513f534/sentry_sdk-2.50.0.tar.gz", hash = "sha256:873437a989ee1b8b25579847bae8384515bf18cfed231b06c591b735c1781fe3", size = 401233, upload-time = "2026-01-20T12:53:16.244Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4d/19/8d77f9992e5cbfcaa9133c3bf63b4fbbb051248802e1e803fed5c552fbb2/sentry_sdk-2.48.0-py2.py3-none-any.whl", hash = "sha256:6b12ac256769d41825d9b7518444e57fa35b5642df4c7c5e322af4d2c8721172", size = 414555, upload-time = "2025-12-16T14:55:40.152Z" }, + { url = "https://files.pythonhosted.org/packages/4e/5b/cbc2bb9569f03c8e15d928357e7e6179e5cfab45544a3bbac8aec4caf9be/sentry_sdk-2.50.0-py2.py3-none-any.whl", hash = "sha256:0ef0ed7168657ceb5a0be081f4102d92042a125462d1d1a29277992e344e749e", size = 424961, upload-time = "2026-01-20T12:53:14.826Z" }, ] [package.optional-dependencies] @@ -3559,11 +3486,11 @@ opentelemetry = [ [[package]] name = "setuptools" -version = "80.9.0" +version = "80.10.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/18/5d/3bf57dcd21979b887f014ea83c24ae194cfcd12b9e0fda66b957c69d1fca/setuptools-80.9.0.tar.gz", hash = "sha256:f36b47402ecde768dbfafc46e8e4207b4360c654f1f3bb84475f0a28628fb19c", size = 1319958, upload-time = "2025-05-27T00:56:51.443Z" } +sdist = { url = "https://files.pythonhosted.org/packages/76/95/faf61eb8363f26aa7e1d762267a8d602a1b26d4f3a1e758e92cb3cb8b054/setuptools-80.10.2.tar.gz", hash = "sha256:8b0e9d10c784bf7d262c4e5ec5d4ec94127ce206e8738f29a437945fbc219b70", size = 1200343, upload-time = "2026-01-25T22:38:17.252Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl", hash = "sha256:062d34222ad13e0cc312a4c02d73f059e86a4acbfbdea8f8f76b28c99f306922", size = 1201486, upload-time = "2025-05-27T00:56:49.664Z" }, + { url = "https://files.pythonhosted.org/packages/94/b8/f1f62a5e3c0ad2ff1d189590bfa4c46b4f3b6e49cef6f26c6ee4e575394d/setuptools-80.10.2-py3-none-any.whl", hash = "sha256:95b30ddfb717250edb492926c92b5221f7ef3fbcc2b07579bcd4a27da21d0173", size = 1064234, upload-time = "2026-01-25T22:38:15.216Z" }, ] [[package]] @@ -3586,11 +3513,11 @@ wheels = [ [[package]] name = "soupsieve" -version = "2.8.1" +version = "2.8.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/89/23/adf3796d740536d63a6fbda113d07e60c734b6ed5d3058d1e47fc0495e47/soupsieve-2.8.1.tar.gz", hash = "sha256:4cf733bc50fa805f5df4b8ef4740fc0e0fa6218cf3006269afd3f9d6d80fd350", size = 117856, upload-time = "2025-12-18T13:50:34.655Z" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/48/f3/b67d6ea49ca9154453b6d70b34ea22f3996b9fa55da105a79d8732227adc/soupsieve-2.8.1-py3-none-any.whl", hash = "sha256:a11fe2a6f3d76ab3cf2de04eb339c1be5b506a8a47f2ceb6d139803177f85434", size = 36710, upload-time = "2025-12-18T13:50:33.267Z" }, + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, ] [[package]] @@ -3731,27 +3658,26 @@ wheels = [ [[package]] name = "ty" -version = "0.0.7" +version = "0.0.13" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b3/43/8be3ec2e2ce6119cff9ee3a207fae0cb4f2b4f8ed6534175130a32be24a7/ty-0.0.7.tar.gz", hash = "sha256:90e53b20b86c418ee41a8385f17da44cc7f916f96f9eee87593423ce8292ca72", size = 4826677, upload-time = "2025-12-24T21:28:49.136Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/dc/b607f00916f5a7c52860b84a66dc17bc6988e8445e96b1d6e175a3837397/ty-0.0.13.tar.gz", hash = "sha256:7a1d135a400ca076407ea30012d1f75419634160ed3b9cad96607bf2956b23b3", size = 4999183, upload-time = "2026-01-21T13:21:16.133Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6e/56/fafa123acf955089306372add312f16e97aba61f7c4daf74e2bb9c350d23/ty-0.0.7-py3-none-linux_armv6l.whl", hash = "sha256:b30105bd9a0b064497111c50c206d5b6a032f29bcf39f09a12085c3009d72784", size = 9862360, upload-time = "2025-12-24T21:28:36.762Z" }, - { url = "https://files.pythonhosted.org/packages/71/f4/9c30ff498d9a60e24f16d26c0cf93cd03a119913ffa720a77149f02df06e/ty-0.0.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b4df20889115f3d5611a9d9cdedc222e3fd82b5fe87bb0a9f7246e53a23becc7", size = 9712866, upload-time = "2025-12-24T21:28:25.926Z" }, - { url = "https://files.pythonhosted.org/packages/43/84/e06a4a6e4011890027ffee41efbf261b1335103d09009d625ace7f1a60eb/ty-0.0.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f699589d8511e1e17c5a7edfc5f4a4e80f2a6d4a3932a0e9e3422fd32d731472", size = 9221692, upload-time = "2025-12-24T21:28:29.649Z" }, - { url = "https://files.pythonhosted.org/packages/7a/e9/ebb4192d3627730125d40ee403a17dc91bab59d69c3eff286453b3218d01/ty-0.0.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3eaec2d8aa153ee4bcc43b17a384d0f9e66177c8c8127be3358b6b8348b9e3b", size = 9710340, upload-time = "2025-12-24T21:28:55.148Z" }, - { url = "https://files.pythonhosted.org/packages/8f/4a/ec144458a9cfb324d5cb471483094e62e74d73179343dff262a5cca1a1e1/ty-0.0.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:177d160295e6a56bdf0b61f6120bc4502fff301d4d10855ba711c109aa7f37fb", size = 9670317, upload-time = "2025-12-24T21:28:43.096Z" }, - { url = "https://files.pythonhosted.org/packages/b6/94/fe7106fd5e2ac06b81fba7b785a6216774618edc3fda9e17f58efe3cede6/ty-0.0.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30518b95ab5cc83615794cca765a5fb86df39a0d9c3dadc0ab2d787ab7830008", size = 10096517, upload-time = "2025-12-24T21:28:23.667Z" }, - { url = "https://files.pythonhosted.org/packages/45/d9/db96ccfd663c96bdd4bb63db72899198c01445012f939477a5318a563f14/ty-0.0.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:7867b3f75c2d9602cc6fb3b6d462580b707c2d112d4b27037142b0d01f8bfd03", size = 10996406, upload-time = "2025-12-24T21:28:39.134Z" }, - { url = "https://files.pythonhosted.org/packages/94/da/103915c08c3e6a14f95959614646fcdc9a240cd9a039fadbdcd086c819ee/ty-0.0.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:878d45858e209b7904753fbc5155f4cb75dadc20a26bbb77614bfef31580f9ae", size = 10712829, upload-time = "2025-12-24T21:28:27.745Z" }, - { url = "https://files.pythonhosted.org/packages/47/c0/d9be417bc8e459e13e9698978579eec9868f91f4c5d6ef663249967fec8b/ty-0.0.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:651820b193901825afce40ae68f6a51cd64dbfa4b81a45db90061401261f25e4", size = 10486541, upload-time = "2025-12-24T21:28:45.17Z" }, - { url = "https://files.pythonhosted.org/packages/ad/09/d1858c66620d8ae566e021ad0d7168914b1568841f8fe9e439116ce6b440/ty-0.0.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f56a5a0c1c045863b1b70c358a392b3f73b8528c5c571d409f19dd465525e116", size = 10255312, upload-time = "2025-12-24T21:28:53.17Z" }, - { url = "https://files.pythonhosted.org/packages/b6/0a/78f75089db491fd5fcc13d2845a0b2771b7f7d377450c64c6616e9c227bc/ty-0.0.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:748218fbc1f7b7f1b9d14e77d4f3d7fec72af794417e26b0185bdb94153afe1c", size = 9696201, upload-time = "2025-12-24T21:28:57.345Z" }, - { url = "https://files.pythonhosted.org/packages/01/9e/b26e94832fd563fef6f77a4487affc77a027b0e53106422c66aafb37fa01/ty-0.0.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:1ff80f3985a52a7358b9069b4a8d223e92cf312544a934a062d6d3a4fb6876b3", size = 9688907, upload-time = "2025-12-24T21:28:59.485Z" }, - { url = "https://files.pythonhosted.org/packages/5a/8f/cc48601fb92c964cf6c34277e0d947076146b7de47aa11b5dbae45e01ce7/ty-0.0.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a808910ce672ba4446699f4c021283208f58f988bcfc3bdbdfc6e005819d9ee0", size = 9829982, upload-time = "2025-12-24T21:28:34.429Z" }, - { url = "https://files.pythonhosted.org/packages/b5/af/7fa9c2bfa25865968bded637f7e71f1a712f4fbede88f487b6a9101ab936/ty-0.0.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:2718fea5f314eda01703fb406ec89b1fc8710b3fc6a09bbd6f7a4f3502ddc889", size = 10361037, upload-time = "2025-12-24T21:28:47.027Z" }, - { url = "https://files.pythonhosted.org/packages/1c/5b/1a6ff1495975cd1c02aa8d03bc5c9d8006eaeb8bf354446f88d70f0518fd/ty-0.0.7-py3-none-win32.whl", hash = "sha256:ae89bb8dc50deb66f34eab3113aa61ac5d7f85ecf16279e5918548085a89021c", size = 9295092, upload-time = "2025-12-24T21:28:51.041Z" }, - { url = "https://files.pythonhosted.org/packages/ff/f6/47e9364635d048002354f84d2d0d6dfc9eb166dc67850739f88e1fec4fc5/ty-0.0.7-py3-none-win_amd64.whl", hash = "sha256:25bd20e3d4d0f07b422f9b42711ba24d28116031273bd23dbda66cec14df1c06", size = 10162816, upload-time = "2025-12-24T21:28:41.006Z" }, - { url = "https://files.pythonhosted.org/packages/7f/f4/c4fc28410c4493982b7481fb23f62bacb02fd2912ebec3b9bc7de18bebb8/ty-0.0.7-py3-none-win_arm64.whl", hash = "sha256:c87d27484dba9fca0053b6a9eee47eecc760aab2bbb8e6eab3d7f81531d1ad0c", size = 9653112, upload-time = "2025-12-24T21:28:31.562Z" }, + { url = "https://files.pythonhosted.org/packages/1a/df/3632f1918f4c0a33184f107efc5d436ab6da147fd3d3b94b3af6461efbf4/ty-0.0.13-py3-none-linux_armv6l.whl", hash = "sha256:1b2b8e02697c3a94c722957d712a0615bcc317c9b9497be116ef746615d892f2", size = 9993501, upload-time = "2026-01-21T13:21:26.628Z" }, + { url = "https://files.pythonhosted.org/packages/92/87/6a473ced5ac280c6ce5b1627c71a8a695c64481b99aabc798718376a441e/ty-0.0.13-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:f15cdb8e233e2b5adfce673bb21f4c5e8eaf3334842f7eea3c70ac6fda8c1de5", size = 9860986, upload-time = "2026-01-21T13:21:24.425Z" }, + { url = "https://files.pythonhosted.org/packages/5d/9b/d89ae375cf0a7cd9360e1164ce017f8c753759be63b6a11ed4c944abe8c6/ty-0.0.13-py3-none-macosx_11_0_arm64.whl", hash = "sha256:0819e89ac9f0d8af7a062837ce197f0461fee2fc14fd07e2c368780d3a397b73", size = 9350748, upload-time = "2026-01-21T13:21:28.502Z" }, + { url = "https://files.pythonhosted.org/packages/a8/a6/9ad58518056fab344b20c0bb2c1911936ebe195318e8acc3bc45ac1c6b6b/ty-0.0.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1de79f481084b7cc7a202ba0d7a75e10970d10ffa4f025b23f2e6b7324b74886", size = 9849884, upload-time = "2026-01-21T13:21:21.886Z" }, + { url = "https://files.pythonhosted.org/packages/b1/c3/8add69095fa179f523d9e9afcc15a00818af0a37f2b237a9b59bc0046c34/ty-0.0.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4fb2154cff7c6e95d46bfaba283c60642616f20d73e5f96d0c89c269f3e1bcec", size = 9822975, upload-time = "2026-01-21T13:21:14.292Z" }, + { url = "https://files.pythonhosted.org/packages/a4/05/4c0927c68a0a6d43fb02f3f0b6c19c64e3461dc8ed6c404dde0efb8058f7/ty-0.0.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00be58d89337c27968a20d58ca553458608c5b634170e2bec82824c2e4cf4d96", size = 10294045, upload-time = "2026-01-21T13:21:30.505Z" }, + { url = "https://files.pythonhosted.org/packages/b4/86/6dc190838aba967557fe0bfd494c595d00b5081315a98aaf60c0e632aaeb/ty-0.0.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:72435eade1fa58c6218abb4340f43a6c3ff856ae2dc5722a247d3a6dd32e9737", size = 10916460, upload-time = "2026-01-21T13:21:07.788Z" }, + { url = "https://files.pythonhosted.org/packages/04/40/9ead96b7c122e1109dfcd11671184c3506996bf6a649306ec427e81d9544/ty-0.0.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:77a548742ee8f621d718159e7027c3b555051d096a49bb580249a6c5fc86c271", size = 10597154, upload-time = "2026-01-21T13:21:18.064Z" }, + { url = "https://files.pythonhosted.org/packages/aa/7d/e832a2c081d2be845dc6972d0c7998914d168ccbc0b9c86794419ab7376e/ty-0.0.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da067c57c289b7cf914669704b552b6207c2cc7f50da4118c3e12388642e6b3f", size = 10410710, upload-time = "2026-01-21T13:21:12.388Z" }, + { url = "https://files.pythonhosted.org/packages/31/e3/898be3a96237a32f05c4c29b43594dc3b46e0eedfe8243058e46153b324f/ty-0.0.13-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:d1b50a01fffa140417fca5a24b658fbe0734074a095d5b6f0552484724474343", size = 9826299, upload-time = "2026-01-21T13:21:00.845Z" }, + { url = "https://files.pythonhosted.org/packages/bb/eb/db2d852ce0ed742505ff18ee10d7d252f3acfd6fc60eca7e9c7a0288a6d8/ty-0.0.13-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:0f33c46f52e5e9378378eca0d8059f026f3c8073ace02f7f2e8d079ddfe5207e", size = 9831610, upload-time = "2026-01-21T13:21:05.842Z" }, + { url = "https://files.pythonhosted.org/packages/9e/61/149f59c8abaddcbcbb0bd13b89c7741ae1c637823c5cf92ed2c644fcadef/ty-0.0.13-py3-none-musllinux_1_2_i686.whl", hash = "sha256:168eda24d9a0b202cf3758c2962cc295878842042b7eca9ed2965259f59ce9f2", size = 9978885, upload-time = "2026-01-21T13:21:10.306Z" }, + { url = "https://files.pythonhosted.org/packages/a0/cd/026d4e4af60a80918a8d73d2c42b8262dd43ab2fa7b28d9743004cb88d57/ty-0.0.13-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:d4917678b95dc8cb399cc459fab568ba8d5f0f33b7a94bf840d9733043c43f29", size = 10506453, upload-time = "2026-01-21T13:20:56.633Z" }, + { url = "https://files.pythonhosted.org/packages/63/06/8932833a4eca2df49c997a29afb26721612de8078ae79074c8fe87e17516/ty-0.0.13-py3-none-win32.whl", hash = "sha256:c1f2ec40daa405508b053e5b8e440fbae5fdb85c69c9ab0ee078f8bc00eeec3d", size = 9433482, upload-time = "2026-01-21T13:20:58.717Z" }, + { url = "https://files.pythonhosted.org/packages/aa/fd/e8d972d1a69df25c2cecb20ea50e49ad5f27a06f55f1f5f399a563e71645/ty-0.0.13-py3-none-win_amd64.whl", hash = "sha256:8b7b1ab9f187affbceff89d51076038363b14113be29bda2ddfa17116de1d476", size = 10319156, upload-time = "2026-01-21T13:21:03.266Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c2/05fdd64ac003a560d4fbd1faa7d9a31d75df8f901675e5bed1ee2ceeff87/ty-0.0.13-py3-none-win_arm64.whl", hash = "sha256:1c9630333497c77bb9bcabba42971b96ee1f36c601dd3dcac66b4134f9fa38f0", size = 9808316, upload-time = "2026-01-21T13:20:54.053Z" }, ] [[package]] @@ -3798,11 +3724,11 @@ wheels = [ [[package]] name = "types-psutil" -version = "7.2.0.20251228" +version = "7.2.1.20260116" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/46/b1/4a1b95bf267c32abffc7feadb8160a7d8639e2185f7ff2125e217556e8e2/types_psutil-7.2.0.20251228.tar.gz", hash = "sha256:dde992ac5b22512724a82ed21a43b03971592dff6cd271e2bd42a8750b30929b", size = 25400, upload-time = "2025-12-28T03:28:20.162Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/a2/45fcde3f2a8b734a30903c14ecb719a3e95a6e1ae88e3d83f4e70640b768/types_psutil-7.2.1.20260116.tar.gz", hash = "sha256:4661be5d5d7acd5d8afb02a92d05160a6cbb2ce74723245b51f7ba7dfdb9f981", size = 26121, upload-time = "2026-01-16T03:21:38.544Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e2/cb/ffb612d5f744da7861bce043b25aa567fd0cd8e726f465a09be1826dd76a/types_psutil-7.2.0.20251228-py3-none-any.whl", hash = "sha256:fbef94469c5067449ce3330acfe3f525b91f2762f8351a84266ac9b745a3290d", size = 32426, upload-time = "2025-12-28T03:28:18.963Z" }, + { url = "https://files.pythonhosted.org/packages/8f/ad/0d2989c97204133e924fe594b042f229a51c42c2fef262d7f8bbb8b1d140/types_psutil-7.2.1.20260116-py3-none-any.whl", hash = "sha256:f516d2a71b28a4fd290f065cb30d7e7141ee605899aa592d8d4b80e45c9849be", size = 32822, upload-time = "2026-01-16T03:21:37.656Z" }, ] [[package]] @@ -3842,23 +3768,23 @@ wheels = [ [[package]] name = "types-requests" -version = "2.32.4.20250913" +version = "2.32.4.20260107" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/36/27/489922f4505975b11de2b5ad07b4fe1dca0bca9be81a703f26c5f3acfce5/types_requests-2.32.4.20250913.tar.gz", hash = "sha256:abd6d4f9ce3a9383f269775a9835a4c24e5cd6b9f647d64f88aa4613c33def5d", size = 23113, upload-time = "2025-09-13T02:40:02.309Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/f3/a0663907082280664d745929205a89d41dffb29e89a50f753af7d57d0a96/types_requests-2.32.4.20260107.tar.gz", hash = "sha256:018a11ac158f801bfa84857ddec1650750e393df8a004a8a9ae2a9bec6fcb24f", size = 23165, upload-time = "2026-01-07T03:20:54.091Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/20/9a227ea57c1285986c4cf78400d0a91615d25b24e257fd9e2969606bdfae/types_requests-2.32.4.20250913-py3-none-any.whl", hash = "sha256:78c9c1fffebbe0fa487a418e0fa5252017e9c60d1a2da394077f1780f655d7e1", size = 20658, upload-time = "2025-09-13T02:40:01.115Z" }, + { url = "https://files.pythonhosted.org/packages/1c/12/709ea261f2bf91ef0a26a9eed20f2623227a8ed85610c1e54c5805692ecb/types_requests-2.32.4.20260107-py3-none-any.whl", hash = "sha256:b703fe72f8ce5b31ef031264fe9395cac8f46a04661a79f7ed31a80fb308730d", size = 20676, upload-time = "2026-01-07T03:20:52.929Z" }, ] [[package]] name = "types-setuptools" -version = "80.9.0.20251223" +version = "80.10.0.20260124" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/00/07/d1b605230730990de20477150191d6dccf6aecc037da94c9960a5d563bc8/types_setuptools-80.9.0.20251223.tar.gz", hash = "sha256:d3411059ae2f5f03985217d86ac6084efea2c9e9cacd5f0869ef950f308169b2", size = 42420, upload-time = "2025-12-23T03:18:26.752Z" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/7e/116539b9610585e34771611e33c88a4c706491fa3565500f5a63139f8731/types_setuptools-80.10.0.20260124.tar.gz", hash = "sha256:1b86d9f0368858663276a0cbe5fe5a9722caf94b5acde8aba0399a6e90680f20", size = 43299, upload-time = "2026-01-24T03:18:39.527Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/78/5c/b8877da94012dbc6643e4eeca22bca9b99b295be05d161f8a403ae9387c0/types_setuptools-80.9.0.20251223-py3-none-any.whl", hash = "sha256:1b36db79d724c2287d83dc052cf887b47c0da6a2fff044378be0b019545f56e6", size = 64318, upload-time = "2025-12-23T03:18:25.868Z" }, + { url = "https://files.pythonhosted.org/packages/2b/7f/016dc5cc718ec6ccaa84fb73ed409ef1c261793fd5e637cdfaa18beb40a9/types_setuptools-80.10.0.20260124-py3-none-any.whl", hash = "sha256:efed7e044f01adb9c2806c7a8e1b6aa3656b8e382379b53d5f26ee3db24d4c01", size = 64333, upload-time = "2026-01-24T03:18:38.344Z" }, ] [[package]] @@ -3932,11 +3858,11 @@ wheels = [ [[package]] name = "urllib3" -version = "2.6.2" +version = "2.6.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1e/24/a2a2ed9addd907787d7aa0355ba36a6cadf1768b934c652ea78acbd59dcd/urllib3-2.6.2.tar.gz", hash = "sha256:016f9c98bb7e98085cb2b4b17b87d2c702975664e4f060c6532e64d1c1a5e797", size = 432930, upload-time = "2025-12-11T15:56:40.252Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6d/b9/4095b668ea3678bf6a0af005527f39de12fb026516fb3df17495a733b7f8/urllib3-2.6.2-py3-none-any.whl", hash = "sha256:ec21cddfe7724fc7cb4ba4bea7aa8e2ef36f607a4bab81aa6ce42a13dc3f03dd", size = 131182, upload-time = "2025-12-11T15:56:38.584Z" }, + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, ] [[package]] @@ -3963,11 +3889,11 @@ wheels = [ [[package]] name = "wcwidth" -version = "0.2.14" +version = "0.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/24/30/6b0809f4510673dc723187aeaf24c7f5459922d01e2f794277a3dfb90345/wcwidth-0.2.14.tar.gz", hash = "sha256:4d478375d31bc5395a3c55c40ccdf3354688364cd61c4f6adacaa9215d0b3605", size = 102293, upload-time = "2025-09-22T16:29:53.023Z" } +sdist = { url = "https://files.pythonhosted.org/packages/64/6e/62daec357285b927e82263a81f3b4c1790215bc77c42530ce4a69d501a43/wcwidth-0.5.0.tar.gz", hash = "sha256:f89c103c949a693bf563377b2153082bf58e309919dfb7f27b04d862a0089333", size = 246585, upload-time = "2026-01-27T01:31:44.942Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/b5/123f13c975e9f27ab9c0770f514345bd406d0e8d3b7a0723af9d43f710af/wcwidth-0.2.14-py2.py3-none-any.whl", hash = "sha256:a7bb560c8aee30f9957e5f9895805edd20602f2d7f720186dfd906e82b4982e1", size = 37286, upload-time = "2025-09-22T16:29:51.641Z" }, + { url = "https://files.pythonhosted.org/packages/f2/3e/45583b67c2ff08ad5a582d316fcb2f11d6cf0a50c7707ac09d212d25bc98/wcwidth-0.5.0-py3-none-any.whl", hash = "sha256:1efe1361b83b0ff7877b81ba57c8562c99cf812158b778988ce17ec061095695", size = 93772, upload-time = "2026-01-27T01:31:43.432Z" }, ] [[package]] @@ -3999,33 +3925,29 @@ wheels = [ [[package]] name = "websockets" -version = "15.0.1" +version = "16.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/21/e6/26d09fab466b7ca9c7737474c52be4f76a40301b08362eb2dbc19dcc16c1/websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee", size = 177016, upload-time = "2025-03-05T20:03:41.606Z" } +sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/51/6b/4545a0d843594f5d0771e86463606a3988b5a09ca5123136f8a76580dd63/websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3", size = 175437, upload-time = "2025-03-05T20:02:16.706Z" }, - { url = "https://files.pythonhosted.org/packages/f4/71/809a0f5f6a06522af902e0f2ea2757f71ead94610010cf570ab5c98e99ed/websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665", size = 173096, upload-time = "2025-03-05T20:02:18.832Z" }, - { url = "https://files.pythonhosted.org/packages/3d/69/1a681dd6f02180916f116894181eab8b2e25b31e484c5d0eae637ec01f7c/websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2", size = 173332, upload-time = "2025-03-05T20:02:20.187Z" }, - { url = "https://files.pythonhosted.org/packages/a6/02/0073b3952f5bce97eafbb35757f8d0d54812b6174ed8dd952aa08429bcc3/websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215", size = 183152, upload-time = "2025-03-05T20:02:22.286Z" }, - { url = "https://files.pythonhosted.org/packages/74/45/c205c8480eafd114b428284840da0b1be9ffd0e4f87338dc95dc6ff961a1/websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5", size = 182096, upload-time = "2025-03-05T20:02:24.368Z" }, - { url = "https://files.pythonhosted.org/packages/14/8f/aa61f528fba38578ec553c145857a181384c72b98156f858ca5c8e82d9d3/websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65", size = 182523, upload-time = "2025-03-05T20:02:25.669Z" }, - { url = "https://files.pythonhosted.org/packages/ec/6d/0267396610add5bc0d0d3e77f546d4cd287200804fe02323797de77dbce9/websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe", size = 182790, upload-time = "2025-03-05T20:02:26.99Z" }, - { url = "https://files.pythonhosted.org/packages/02/05/c68c5adbf679cf610ae2f74a9b871ae84564462955d991178f95a1ddb7dd/websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4", size = 182165, upload-time = "2025-03-05T20:02:30.291Z" }, - { url = "https://files.pythonhosted.org/packages/29/93/bb672df7b2f5faac89761cb5fa34f5cec45a4026c383a4b5761c6cea5c16/websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597", size = 182160, upload-time = "2025-03-05T20:02:31.634Z" }, - { url = "https://files.pythonhosted.org/packages/ff/83/de1f7709376dc3ca9b7eeb4b9a07b4526b14876b6d372a4dc62312bebee0/websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9", size = 176395, upload-time = "2025-03-05T20:02:33.017Z" }, - { url = "https://files.pythonhosted.org/packages/7d/71/abf2ebc3bbfa40f391ce1428c7168fb20582d0ff57019b69ea20fa698043/websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7", size = 176841, upload-time = "2025-03-05T20:02:34.498Z" }, - { url = "https://files.pythonhosted.org/packages/cb/9f/51f0cf64471a9d2b4d0fc6c534f323b664e7095640c34562f5182e5a7195/websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931", size = 175440, upload-time = "2025-03-05T20:02:36.695Z" }, - { url = "https://files.pythonhosted.org/packages/8a/05/aa116ec9943c718905997412c5989f7ed671bc0188ee2ba89520e8765d7b/websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675", size = 173098, upload-time = "2025-03-05T20:02:37.985Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0b/33cef55ff24f2d92924923c99926dcce78e7bd922d649467f0eda8368923/websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151", size = 173329, upload-time = "2025-03-05T20:02:39.298Z" }, - { url = "https://files.pythonhosted.org/packages/31/1d/063b25dcc01faa8fada1469bdf769de3768b7044eac9d41f734fd7b6ad6d/websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22", size = 183111, upload-time = "2025-03-05T20:02:40.595Z" }, - { url = "https://files.pythonhosted.org/packages/93/53/9a87ee494a51bf63e4ec9241c1ccc4f7c2f45fff85d5bde2ff74fcb68b9e/websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f", size = 182054, upload-time = "2025-03-05T20:02:41.926Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8", size = 182496, upload-time = "2025-03-05T20:02:43.304Z" }, - { url = "https://files.pythonhosted.org/packages/98/41/e7038944ed0abf34c45aa4635ba28136f06052e08fc2168520bb8b25149f/websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375", size = 182829, upload-time = "2025-03-05T20:02:48.812Z" }, - { url = "https://files.pythonhosted.org/packages/e0/17/de15b6158680c7623c6ef0db361da965ab25d813ae54fcfeae2e5b9ef910/websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d", size = 182217, upload-time = "2025-03-05T20:02:50.14Z" }, - { url = "https://files.pythonhosted.org/packages/33/2b/1f168cb6041853eef0362fb9554c3824367c5560cbdaad89ac40f8c2edfc/websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4", size = 182195, upload-time = "2025-03-05T20:02:51.561Z" }, - { url = "https://files.pythonhosted.org/packages/86/eb/20b6cdf273913d0ad05a6a14aed4b9a85591c18a987a3d47f20fa13dcc47/websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa", size = 176393, upload-time = "2025-03-05T20:02:53.814Z" }, - { url = "https://files.pythonhosted.org/packages/1b/6c/c65773d6cab416a64d191d6ee8a8b1c68a09970ea6909d16965d26bfed1e/websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561", size = 176837, upload-time = "2025-03-05T20:02:55.237Z" }, - { url = "https://files.pythonhosted.org/packages/fa/a8/5b41e0da817d64113292ab1f8247140aac61cbf6cfd085d6a0fa77f4984f/websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f", size = 169743, upload-time = "2025-03-05T20:03:39.41Z" }, + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, + { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, ] [[package]]